From c975ef34416c0f42120d603db9a5858793c8d9d8 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 21:47:31 -0800 Subject: [PATCH 01/87] Split analysis into matrix jobs --- .github/workflows/analysis.yml | 74 ++++++++++++++++++++++++++-------- conftest.py | 29 +++++++++---- 2 files changed, 79 insertions(+), 24 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index d429c31..c6dd984 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -7,22 +7,71 @@ on: - 'analysis/**' jobs: - build: + read_algorithms: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Read algorithms + id: read_algorithms + run: | + algorithms=$(cat tests/IVIMmodels/unit_tests/algorithms.json) + echo "::set-output name=algorithms::$algorithms" + build: runs-on: ubuntu-latest + needs: read_algorithms continue-on-error: false strategy: fail-fast: false + matrix: + algorithm: ${{ fromJson(needs.read_algorithms.outputs.algorithms).algorithms }} + SNR: [10 30 50 100 200] steps: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.11" + uses: actions/setup-python@v4 + with: + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt + - name: Generate fitting data + run: | + pip install pytest + python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration.csv + - name: Upload raw data + uses: actions/upload-artifact@v3 + with: + name: RawData/raw_data_${{ matrix.algorithm }}_${{ matrix.SNR }} + path: | + test_output.csv + test_duration.csv + merge: + runs-on: ubuntu-latest + needs: build + steps: + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + path: artifacts + - name: Merge fitting results + run: | + cat artifacts/raw_data_*/test_output.csv > test_output.csv + - name: Merge timing results + run: | + cat artifacts/raw_data_*/test_duration.csv > test_duration.csv + - name: Upload merged artifacts + uses: actions/upload-artifacts@v3 + with: + name: Raw Data + path: | + test_output.csv + test_duration.csv + analyze: + runs-on: ubuntu-latest + needs: merge + steps: - name: Set up R uses: r-lib/actions/setup-r@v2 with: @@ -36,23 +85,16 @@ jobs: any::tidyverse any::data.table any::ggplot2 - - name: Generate fitting data - run: | - pip install pytest - python -m pytest -m slow --saveFileName test_output.csv --SNR 10 30 50 100 200 --fitCount 300 --saveDurationFileName test_duration.csv + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: Raw Data - name: Generate figures run: Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv - - name: Upload raw data - uses: actions/upload-artifact@v3 - with: - name: Raw data - path: | - test_output.csv - test_duration.csv - name: Upload figures uses: actions/upload-artifact@v3 with: - name: Fit figures + name: Fit Figures path: | D.pdf f.pdf diff --git a/conftest.py b/conftest.py index a29d409..086585c 100644 --- a/conftest.py +++ b/conftest.py @@ -67,6 +67,20 @@ def pytest_addoption(parser): type=str, help="Saved duration results file name", ) + parser.addoption( + "--selectAlgorithm", + default=[""], + nargs="+", + type=str, + help="Drop all algorithms except for these from the list" + ) + parser.addoption( + "--dropAlgorithm", + default=[""], + nargs="+", + type=str, + help="Drop this algorithm from the list" + ) @pytest.fixture(scope="session") @@ -115,7 +129,6 @@ def save_duration_file(request): def rtol(request): return request.config.getoption("--rtol") - @pytest.fixture(scope="session") def atol(request): return request.config.getoption("--atol") @@ -137,23 +150,23 @@ def pytest_generate_tests(metafunc): if "SNR" in metafunc.fixturenames: metafunc.parametrize("SNR", metafunc.config.getoption("SNR")) if "ivim_algorithm" in metafunc.fixturenames: - algorithms = algorithm_list(metafunc.config.getoption("algorithmFile")) + algorithms = algorithm_list(metafunc.config.getoption("algorithmFile"), metafunc.config.getoption("selectAlgorithm"), metafunc.config.getoption("dropAlgorithm")) metafunc.parametrize("ivim_algorithm", algorithms) - if "algorithm_file" in metafunc.fixturenames: - metafunc.parametrize("algorithm_file", metafunc.config.getoption("algorithmFile")) if "ivim_data" in metafunc.fixturenames: data = data_list(metafunc.config.getoption("dataFile")) metafunc.parametrize("ivim_data", data) - if "data_file" in metafunc.fixturenames: - metafunc.parametrize("data_file", metafunc.config.getoption("dataFile")) -def algorithm_list(filename): +def algorithm_list(filename, selected, dropped): current_folder = pathlib.Path.cwd() algorithm_path = current_folder / filename with algorithm_path.open() as f: algorithm_information = json.load(f) - return algorithm_information["algorithms"] + algorithms = set(algorithm_information["algorithms"]) + algorithms = algorithms - set(dropped) + if len(selected) > 0 and selected[0]: + algorithms = algorithms & set(selected) + return list(algorithms) def data_list(filename): current_folder = pathlib.Path.cwd() From 24e10b0a1bc813eb807c599bb6ecb71f6c2b3f91 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 21:49:54 -0800 Subject: [PATCH 02/87] Fix SNR list --- .github/workflows/analysis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index c6dd984..d6705e9 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -25,7 +25,7 @@ jobs: fail-fast: false matrix: algorithm: ${{ fromJson(needs.read_algorithms.outputs.algorithms).algorithms }} - SNR: [10 30 50 100 200] + SNR: [10, 30, 50, 100, 200] steps: - uses: actions/checkout@v3 - name: Set up Python @@ -47,6 +47,7 @@ jobs: path: | test_output.csv test_duration.csv + merge: runs-on: ubuntu-latest needs: build @@ -68,6 +69,7 @@ jobs: path: | test_output.csv test_duration.csv + analyze: runs-on: ubuntu-latest needs: merge From b78942d66cd1084da4d0769c5a3714d5014e5b5e Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 21:52:27 -0800 Subject: [PATCH 03/87] Fix indentation --- .github/workflows/analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index d6705e9..7926972 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -29,9 +29,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.11" + uses: actions/setup-python@v4 + with: + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade pip From 8b2b643d3def744b0dc3dc8a160c263be862b6ca Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:01:57 -0800 Subject: [PATCH 04/87] Try to move to GITHUB_STATE --- .github/workflows/analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 7926972..fbd662b 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -15,7 +15,7 @@ jobs: id: read_algorithms run: | algorithms=$(cat tests/IVIMmodels/unit_tests/algorithms.json) - echo "::set-output name=algorithms::$algorithms" + echo "algorithms=$algorithms" >> $GITHUB_STATE build: runs-on: ubuntu-latest From 37bdbe4b791f79e21e9927623c69c18ebd03081a Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:07:30 -0800 Subject: [PATCH 05/87] Reformat json read --- .github/workflows/analysis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index fbd662b..3ac35c7 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -14,8 +14,9 @@ jobs: - name: Read algorithms id: read_algorithms run: | - algorithms=$(cat tests/IVIMmodels/unit_tests/algorithms.json) - echo "algorithms=$algorithms" >> $GITHUB_STATE + echo "algorithms<> $GITHUB_OUTPUT + cat tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT + echo "EOF" >> $GITHUB_OUTPUT build: runs-on: ubuntu-latest From 31fa8575d5dddb3f2d70d9f2e1bcafa69cab38d2 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:17:06 -0800 Subject: [PATCH 06/87] Try adding outputs --- .github/workflows/analysis.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 3ac35c7..2fe7ea9 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -7,25 +7,29 @@ on: - 'analysis/**' jobs: - read_algorithms: + algorithms: runs-on: ubuntu-latest + outputs: # here we use the outputs from steps, and set outputs for the job `configure` + config: ${{ steps.algorithms.outputs.config }} steps: - uses: actions/checkout@v3 - name: Read algorithms - id: read_algorithms + id: algorithms run: | echo "algorithms<> $GITHUB_OUTPUT - cat tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT + cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT + - name: Log algorithms + run: echo "${{fromJson(steps.algorithms.outputs.config)}}" build: runs-on: ubuntu-latest - needs: read_algorithms + needs: algorithms continue-on-error: false strategy: fail-fast: false matrix: - algorithm: ${{ fromJson(needs.read_algorithms.outputs.algorithms).algorithms }} + algorithm: ${{fromJson(needs.algorithms.outputs.algorithms).algorithms}} SNR: [10, 30, 50, 100, 200] steps: - uses: actions/checkout@v3 From 50aa90454570e2b004e90e3ee2d9c93611c6f0fe Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:19:28 -0800 Subject: [PATCH 07/87] Fix output naming --- .github/workflows/analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 2fe7ea9..e5e54be 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -10,7 +10,7 @@ jobs: algorithms: runs-on: ubuntu-latest outputs: # here we use the outputs from steps, and set outputs for the job `configure` - config: ${{ steps.algorithms.outputs.config }} + config: ${{ steps.algorithms.outputs.algorithms }} steps: - uses: actions/checkout@v3 - name: Read algorithms @@ -20,7 +20,7 @@ jobs: cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT - name: Log algorithms - run: echo "${{fromJson(steps.algorithms.outputs.config)}}" + run: echo "${{fromJson(steps.algorithms.outputs.algorithms)}}" build: runs-on: ubuntu-latest From f78217b8809eb762c5f4dd7748e20458cf25c7bc Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:37:50 -0800 Subject: [PATCH 08/87] Some more output debugging --- .github/workflows/analysis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index e5e54be..bfb366c 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -20,7 +20,9 @@ jobs: cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT - name: Log algorithms - run: echo "${{fromJson(steps.algorithms.outputs.algorithms)}}" + run: echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}" + - name: Log algorithms file + run: cat ./tests/IVIMmodels/unit_tests/algorithms.json build: runs-on: ubuntu-latest From a93cfd691fbacf9afe613630c7ae68d0853bb8c9 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:45:31 -0800 Subject: [PATCH 09/87] More debugging --- .github/workflows/analysis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index bfb366c..3a52c38 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -16,11 +16,13 @@ jobs: - name: Read algorithms id: algorithms run: | - echo "algorithms<> $GITHUB_OUTPUT + echo 'algorithms<> $GITHUB_OUTPUT cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT - echo "EOF" >> $GITHUB_OUTPUT + echo 'EOF' >> $GITHUB_OUTPUT - name: Log algorithms - run: echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}" + run: | + echo "${{fromJson(steps.algorithms.outputs.algorithms)}}" + echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}" - name: Log algorithms file run: cat ./tests/IVIMmodels/unit_tests/algorithms.json From 539b6cefa38144f66b0cbef6663f232392147b87 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:53:20 -0800 Subject: [PATCH 10/87] Try other debugging --- .github/workflows/analysis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 3a52c38..94b87d1 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -23,6 +23,8 @@ jobs: run: | echo "${{fromJson(steps.algorithms.outputs.algorithms)}}" echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}" + echo "${{fromJson(steps.algorithms.outputs.algorithms.algorithms)}}" + echo "${{fromJson(steps.algorithms.outputs.algorithms.algorithms).algorithms}}" - name: Log algorithms file run: cat ./tests/IVIMmodels/unit_tests/algorithms.json From 152d52d59d08ad7e6fd96517bc495a873146d70c Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 22:55:59 -0800 Subject: [PATCH 11/87] Maybe a fix --- .github/workflows/analysis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 94b87d1..b51a30d 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -10,7 +10,7 @@ jobs: algorithms: runs-on: ubuntu-latest outputs: # here we use the outputs from steps, and set outputs for the job `configure` - config: ${{ steps.algorithms.outputs.algorithms }} + algorithms: ${{ steps.algorithms.outputs.algorithms }} steps: - uses: actions/checkout@v3 - name: Read algorithms @@ -23,8 +23,6 @@ jobs: run: | echo "${{fromJson(steps.algorithms.outputs.algorithms)}}" echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}" - echo "${{fromJson(steps.algorithms.outputs.algorithms.algorithms)}}" - echo "${{fromJson(steps.algorithms.outputs.algorithms.algorithms).algorithms}}" - name: Log algorithms file run: cat ./tests/IVIMmodels/unit_tests/algorithms.json From fb44655a4089edfce47b538f5b7143cc7a0579d2 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 11 Dec 2023 23:02:17 -0800 Subject: [PATCH 12/87] Fix artifact path --- .github/workflows/analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index b51a30d..28b4fe3 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -52,7 +52,7 @@ jobs: - name: Upload raw data uses: actions/upload-artifact@v3 with: - name: RawData/raw_data_${{ matrix.algorithm }}_${{ matrix.SNR }} + name: raw_data_${{ matrix.algorithm }}_${{ matrix.SNR }} path: | test_output.csv test_duration.csv From 6677460a6832ba6bde2ae974f3cbb74c33fe05db Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Dec 2023 05:51:10 -0800 Subject: [PATCH 13/87] Add caching and fix name --- .github/workflows/analysis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 28b4fe3..85adb19 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -41,6 +41,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.11" + cache: 'pip' - name: Install dependencies run: | python -m pip install --upgrade pip @@ -72,7 +73,7 @@ jobs: run: | cat artifacts/raw_data_*/test_duration.csv > test_duration.csv - name: Upload merged artifacts - uses: actions/upload-artifacts@v3 + uses: actions/upload-artifact@v3 with: name: Raw Data path: | From ce33fadb2ca02c8a841660156551efeda87f88b3 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Dec 2023 09:01:49 -0800 Subject: [PATCH 14/87] Cache python venv, clean artifacts, fix analysis --- .github/workflows/analysis.yml | 46 +++++++++++++++++++++++++++------- 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 85adb19..c1d6b46 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -13,6 +13,26 @@ jobs: algorithms: ${{ steps.algorithms.outputs.algorithms }} steps: - uses: actions/checkout@v3 + - name: Set up Python + id: setup_python + uses: actions/setup-python@v4 + with: + python-version: "3.11" + cache: 'pip' + - name: Cache virtualenv + uses: actions/cache@v3 + with: + key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} + path: .venv + - name: Install dependencies + run: | + python -m venv .venv + source .venv/bin/activate + python -m pip install --upgrade pip + python -m pip install -r requirements.txt + python -m pip install pytest + echo "$VIRTUAL_ENV/bin" >> $GITHUB_PATH + echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV - name: Read algorithms id: algorithms run: | @@ -42,21 +62,28 @@ jobs: with: python-version: "3.11" cache: 'pip' + - name: Cache virtualenv + uses: actions/cache@v3 + with: + key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} + path: .venv - name: Install dependencies run: | + python -m venv .venv + source .venv/bin/activate python -m pip install --upgrade pip - pip install -r requirements.txt + python -m pip install -r requirements.txt + python -m pip install pytest - name: Generate fitting data run: | - pip install pytest - python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration.csv + python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv - name: Upload raw data uses: actions/upload-artifact@v3 with: - name: raw_data_${{ matrix.algorithm }}_${{ matrix.SNR }} + name: WorkingData path: | - test_output.csv - test_duration.csv + test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv + test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv merge: runs-on: ubuntu-latest @@ -68,14 +95,14 @@ jobs: path: artifacts - name: Merge fitting results run: | - cat artifacts/raw_data_*/test_output.csv > test_output.csv + cat artifacts/WorkingData/test_output_*.csv > test_output.csv - name: Merge timing results run: | - cat artifacts/raw_data_*/test_duration.csv > test_duration.csv + cat artifacts/WorkingData/test_duration_*.csv > test_duration.csv - name: Upload merged artifacts uses: actions/upload-artifact@v3 with: - name: Raw Data + name: Combined Data path: | test_output.csv test_duration.csv @@ -84,6 +111,7 @@ jobs: runs-on: ubuntu-latest needs: merge steps: + - uses: actions/checkout@v3 - name: Set up R uses: r-lib/actions/setup-r@v2 with: From 56aa4c1ef957c6c41232c4c9117ee17f666754ed Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Dec 2023 11:54:26 -0800 Subject: [PATCH 15/87] Fix caching and analysis --- .github/workflows/analysis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index c1d6b46..a55281e 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -28,7 +28,6 @@ jobs: run: | python -m venv .venv source .venv/bin/activate - python -m pip install --upgrade pip python -m pip install -r requirements.txt python -m pip install pytest echo "$VIRTUAL_ENV/bin" >> $GITHUB_PATH @@ -71,11 +70,11 @@ jobs: run: | python -m venv .venv source .venv/bin/activate - python -m pip install --upgrade pip python -m pip install -r requirements.txt python -m pip install pytest - name: Generate fitting data run: | + source .venv/bin/activate python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv - name: Upload raw data uses: actions/upload-artifact@v3 From 55e85badd8fee19c554c1935134ec530c1829ea2 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Dec 2023 13:26:58 -0800 Subject: [PATCH 16/87] Remove caching, fix analysis --- .github/workflows/analysis.yml | 35 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index a55281e..fc371c9 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -19,19 +19,17 @@ jobs: with: python-version: "3.11" cache: 'pip' - - name: Cache virtualenv - uses: actions/cache@v3 - with: - key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} - path: .venv + # - name: Cache virtualenv + # uses: actions/cache@v3 + # with: + # key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} + # path: .venv - name: Install dependencies run: | python -m venv .venv source .venv/bin/activate python -m pip install -r requirements.txt python -m pip install pytest - echo "$VIRTUAL_ENV/bin" >> $GITHUB_PATH - echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV - name: Read algorithms id: algorithms run: | @@ -61,11 +59,11 @@ jobs: with: python-version: "3.11" cache: 'pip' - - name: Cache virtualenv - uses: actions/cache@v3 - with: - key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} - path: .venv + # - name: Cache virtualenv + # uses: actions/cache@v3 + # with: + # key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} + # path: .venv - name: Install dependencies run: | python -m venv .venv @@ -79,7 +77,8 @@ jobs: - name: Upload raw data uses: actions/upload-artifact@v3 with: - name: WorkingData + name: Working_Data + retention-days: 1 path: | test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv @@ -94,14 +93,14 @@ jobs: path: artifacts - name: Merge fitting results run: | - cat artifacts/WorkingData/test_output_*.csv > test_output.csv + cat artifacts/Working_Data/test_output_*.csv > test_output.csv - name: Merge timing results run: | - cat artifacts/WorkingData/test_duration_*.csv > test_duration.csv + cat artifacts/Working_Data/test_duration_*.csv > test_duration.csv - name: Upload merged artifacts uses: actions/upload-artifact@v3 with: - name: Combined Data + name: Data path: | test_output.csv test_duration.csv @@ -127,13 +126,13 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v3 with: - name: Raw Data + name: Data - name: Generate figures run: Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv - name: Upload figures uses: actions/upload-artifact@v3 with: - name: Fit Figures + name: Figures path: | D.pdf f.pdf From 698b0b56cd5b87eb3c7122fd71fade1449607809 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Dec 2023 16:19:03 -0800 Subject: [PATCH 17/87] Fix the file merging --- .github/workflows/analysis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index fc371c9..fcce16e 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -93,10 +93,12 @@ jobs: path: artifacts - name: Merge fitting results run: | - cat artifacts/Working_Data/test_output_*.csv > test_output.csv + head -n 1 $(ls artifacts/Working_Data/test_output_*.csv | head -n 1) > test_output.csv + tail -q -n +2 test_output_*.csv > test_output.csv - name: Merge timing results run: | - cat artifacts/Working_Data/test_duration_*.csv > test_duration.csv + head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv + tail -q -n +2 test_duration_*.csv > test_duration.csv - name: Upload merged artifacts uses: actions/upload-artifact@v3 with: From 85ee082c55d0cbd586e59a7104eedd37f09c8551 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 12 Dec 2023 16:45:30 -0800 Subject: [PATCH 18/87] Fix merging --- .github/workflows/analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index fcce16e..ae8e482 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -94,11 +94,11 @@ jobs: - name: Merge fitting results run: | head -n 1 $(ls artifacts/Working_Data/test_output_*.csv | head -n 1) > test_output.csv - tail -q -n +2 test_output_*.csv > test_output.csv + tail -q -n +2 artifacts/Working_Data/test_output_*.csv >> test_output.csv - name: Merge timing results run: | head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv - tail -q -n +2 test_duration_*.csv > test_duration.csv + tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv - name: Upload merged artifacts uses: actions/upload-artifact@v3 with: From a5c5f9b18e20cf8ab72dec86b88f5b7cf4a1664e Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Thu, 21 Dec 2023 22:41:04 -0800 Subject: [PATCH 19/87] Testing comparison --- .github/workflows/analysis.yml | 23 + .github/workflows/unit_test.yml | 1 + tests/IVIMmodels/unit_tests/compare.r | 210 +++ .../unit_tests/reference_output.csv | 1321 +++++++++++++++++ 4 files changed, 1555 insertions(+) create mode 100644 tests/IVIMmodels/unit_tests/compare.r create mode 100644 tests/IVIMmodels/unit_tests/reference_output.csv diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index ae8e482..01a1260 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -145,3 +145,26 @@ jobs: durations.pdf curve_plot.pdf fitted_curves.pdf + + compare: + runs-on: ubuntu-latest + needs: merge + steps: + - uses: actions/checkout@v3 + - name: Set up R + uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + - name: Install R dependencies + uses: r-lib/actions/setup-r-dependencies@v2 + with: + packages: | + any::tidyverse + any::stats + any::assertr + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: Data + - name: Test against previous results + run: Rscript --vanilla tests/IVIMmodels/unit_tests/compare.r test_output.csv test_reference.csv reference_output.csv test_results.csv diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 00cf4bd..95b9b9d 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -23,6 +23,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + cache: 'pip' # You can test your matrix by printing the current Python version - name: Display Python version run: python -c "import sys; print(sys.version)" diff --git a/tests/IVIMmodels/unit_tests/compare.r b/tests/IVIMmodels/unit_tests/compare.r new file mode 100644 index 0000000..6a7de50 --- /dev/null +++ b/tests/IVIMmodels/unit_tests/compare.r @@ -0,0 +1,210 @@ +#!/usr/bin/env Rscript + +#Run like this: +#Rscript --vanilla tests/IVIMmodels/unit_tests/compare.r test_output.csv test_reference.csv reference_output.csv test_results.csv + +args = commandArgs(trailingOnly=TRUE) +# Define file paths +test_file <- "test_output.csv" +test_reference_file <- "test_reference.csv" +reference_file <- "" #"reference_output.csv" +test_result_file <- "test_results.csv" + + +if (length(args)>=1) { + test_file = args[1] +} +if (length(args)>=2) { + test_reference_file = args[2] +} +if (length(args)>=3) { + reference_file = args[3] +} +if (length(args)>=4) { + test_result_file = args[4] +} + + +# Load required libraries +library(tidyverse) +library(stats) +# library(testit) +library(assertr) + +alpha <- 0.45 # be sensitive to changes + +# Define desired columns to keep +keep_columns_reference <- c("Algorithm", "Region", "SNR", "f", "Dp", "D", "f_mu", "Dp_mu", "D_mu", "f_alpha", "Dp_alpha", "D_alpha", "f_std", "Dp_std", "D_std", "f_df", "Dp_df", "D_df") +keep_columns_test <- c("Algorithm", "Region", "SNR", "index", "f", "Dp", "D", "f_fitted", "Dp_fitted", "D_fitted") + +test <- read_csv(test_file) %>% + select(keep_columns_test) %>% + # Convert Algorithm and Region to factors + mutate(Algorithm = as.factor(Algorithm), Region = as.factor(Region)) + +# Group data by relevant factors +grouped_data <- test %>% + group_by(Algorithm, Region, SNR, f, Dp, D) + +# Combine data for easier comparison +# combined_data <- inner_join(reference, test, join_by(Algorithm, Region, SNR, f, Dp, D, index)) + +# Perform t-test for each value +summary_data <- grouped_data %>% + summarize( + # Calculate group means + f_mu = mean(f_fitted), + Dp_mu = mean(Dp_fitted), + D_mu = mean(D_fitted), + + # Also insert alpha values here + f_alpha = alpha, + Dp_alpha = alpha, + D_alpha = alpha, + + # Calculate group standard deviations + f_std = sd(f_fitted), + Dp_std = sd(Dp_fitted), + D_std = sd(D_fitted), + + # Degrees of freedom + f_df = length(f_fitted) - 1, + Dp_df = length(Dp_fitted) - 1, + D_df = length(D_fitted) - 1, + + # Calculate group equivalence + # f_fitted_equal = all(all.equal(f_fitted.x, f_fitted.y)), + # Dp_fitted_equal = all(all.equal(Dp_fitted.x, Dp_fitted.y)), + # D_fitted_equal = all(all.equal(D_fitted.x, D_fitted.y)), + + # Perform paired t-test for each value + # f_fitted_p = t.test(f_fitted.x, f_fitted.y, paired = TRUE)$p.value, + # Dp_fitted_p = t.test(Dp_fitted.x, Dp_fitted.y, paired = TRUE)$p.value, + # D_fitted_p = t.test(D_fitted.x, D_fitted.y, paired = TRUE)$p.value + ) + +# If no reference file, just report the test results and fail +write.csv(summary_data, test_reference_file, row.names=TRUE) + +# Exit at this point if we don't have a reference file +if (nchar(reference_file) == 0) { + stop("No reference file defined, stopping without testing.") +} + + +# Read data from CSV files and select only relevant columns +reference <- read_csv(reference_file) %>% + select(keep_columns_reference) %>% + # Convert Algorithm and Region to factors + mutate(Algorithm = as.factor(Algorithm), Region = as.factor(Region)) + +reference_combined <- inner_join(summary_data, reference, join_by(Algorithm, Region, SNR)) %>% + group_by(Algorithm, Region, SNR) + +# Run tests +test_results <- reference_combined %>% + summarize( + # f-tests + f_ftest_lower = pf(f_std.x^2 / f_std.y^2, f_df.x, f_df.y, lower.tail=TRUE), + f_ftest_upper = pf(f_std.x^2 / f_std.y^2, f_df.x, f_df.y, lower.tail=FALSE), + Dp_ftest_lower = pf(Dp_std.x^2 / Dp_std.y^2, Dp_df.x, Dp_df.y, lower.tail=TRUE), + Dp_ftest_upper = pf(Dp_std.x^2 / Dp_std.y^2, Dp_df.x, Dp_df.y, lower.tail=FALSE), + D_ftest_lower = pf(D_std.x^2 / D_std.y^2, D_df.x, D_df.y, lower.tail=TRUE), + D_ftest_upper = pf(D_std.x^2 / D_std.y^2, D_df.x, D_df.y, lower.tail=FALSE), + + # t-tests + f_ttest_lower = pt((f_mu.x - f_mu.y) / (f_std.x / sqrt(f_df.x + 1)), df=f_df.y, lower.tail=TRUE), + f_ttest_upper = pt((f_mu.x - f_mu.y) / (f_std.x / sqrt(f_df.x + 1)), df=f_df.y, lower.tail=FALSE), + Dp_ttest_lower = pt((Dp_mu.x - Dp_mu.y) / (Dp_std.x / sqrt(Dp_df.x + 1)), df=Dp_df.y, lower.tail=TRUE), + Dp_ttest_upper = pt((Dp_mu.x - Dp_mu.y) / (Dp_std.x / sqrt(Dp_df.x + 1)), df=Dp_df.y, lower.tail=FALSE), + D_ttest_lower = pt((D_mu.x - D_mu.y) / (D_std.x / sqrt(D_df.x + 1)), df=D_df.y, lower.tail=TRUE), + D_ttest_upper = pt((D_mu.x - D_mu.y) / (D_std.x / sqrt(D_df.x + 1)), df=D_df.y, lower.tail=FALSE), + ) + + +test_results <- test_results %>% + mutate( + f_ftest_lower_null = f_ftest_lower >= alpha, + f_ftest_upper_null = f_ftest_upper >= alpha, + Dp_ftest_lower_null = Dp_ftest_lower >= alpha, + Dp_ftest_upper_null = Dp_ftest_upper >= alpha, + D_ftest_lower_null = D_ftest_lower >= alpha, + D_ftest_upper_null = D_ftest_upper >= alpha, + + f_ttest_lower_null = f_ttest_lower >= alpha, + f_ttest_upper_null = f_ttest_upper >= alpha, + Dp_ttest_lower_null = Dp_ttest_lower >= alpha, + Dp_ttest_upper_null = Dp_ttest_upper >= alpha, + D_ttest_lower_null = D_ttest_lower >= alpha, + D_ttest_upper_null = D_ttest_upper >= alpha, + ) + + + # Write the t-test file +write.csv(test_results, test_result_file, row.names=TRUE) + +# Fail if we had failures +test_results %>% verify(f_ftest_lower_null) +test_results %>% verify(f_ftest_upper_null) +test_results %>% verify(Dp_ftest_lower_null) +test_results %>% verify(Dp_ftest_upper_null) +test_results %>% verify(D_ftest_lower_null) +test_results %>% verify(D_ftest_upper_null) +test_results %>% verify(f_ttest_lower_null) +test_results %>% verify(f_ttest_upper_null) +test_results %>% verify(Dp_ttest_lower_null) +test_results %>% verify(Dp_ttest_upper_null) +test_results %>% verify(D_ttest_lower_null) +test_results %>% verify(D_ttest_upper_null) + + + + + + +# # Combine data for easier comparison +# reference_combined <- inner_join(grouped_data, reference, join_by(Algorithm, Region, SNR)) %>% +# group_by(Algorithm, Region, SNR) + +# # Run t-tests +# t_tests <- reference_combined %>% +# summarize( +# # Perform paired t-test for each value +# f_fitted_p = t.test(f_fitted, mu = f_mu[1])$p.value, +# Dp_fitted_p = t.test(Dp_fitted, mu = Dp_mu[1])$p.value, +# D_fitted_p = t.test(D_fitted, mu = D_mu[1])$p.value +# ) + +# # Extract p-values and assess significance, true is accept the null, false is reject +# t_tests <- t_tests %>% +# mutate( +# f_fitted_null = f_fitted_p >= alpha, +# Dp_fitted_null = Dp_fitted_p >= alpha, +# D_fitted_null = D_fitted_p >= alpha +# ) + +# # Write the t-test file +# write.csv(t_tests, test_result_file, row.names=TRUE) + +# # Fail if we had failures +# t_tests %>% verify(f_fitted_null) +# t_tests %>% verify(Dp_fitted_null) +# t_tests %>% verify(D_fitted_null) + + +# # Fail if we had failures (fallback) +# # failed_tests <- t_tests[!t_tests$f_fitted_null,] +# # print(failed_tests) +# # testit::assert(nrow(failed_tests) == 0) +# # failed_tests <- t_tests[!t_tests$Dp_fitted_null,] +# # print(failed_tests) +# # testit::assert(nrow(failed_tests) == 0) +# # failed_tests <- t_tests[!t_tests$D_fitted_null,] +# # print(failed_tests) +# # testit::assert(nrow(failed_tests) == 0) + +# # TODO: +# # Could +# # Could plot somehow? +# # Need to melt this data somehow to plot +# # grouped_plots <- grouped_data %>% do(plots=ggplot(data=.) + geom_boxplot(aes(f_fitted.x, f_fitted.y))) diff --git a/tests/IVIMmodels/unit_tests/reference_output.csv b/tests/IVIMmodels/unit_tests/reference_output.csv new file mode 100644 index 0000000..e227676 --- /dev/null +++ b/tests/IVIMmodels/unit_tests/reference_output.csv @@ -0,0 +1,1321 @@ +"","Algorithm","Region","SNR","f","Dp","D","f_mu","Dp_mu","D_mu","f_alpha","Dp_alpha","D_alpha","f_std","Dp_std","D_std","f_df","Dp_df","D_df" +"1","ETP_SRI_LinearFitting","Artery",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 +"2","ETP_SRI_LinearFitting","Artery",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 +"3","ETP_SRI_LinearFitting","Artery",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 +"4","ETP_SRI_LinearFitting","Artery",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 +"5","ETP_SRI_LinearFitting","Artery",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"6","ETP_SRI_LinearFitting","asc lower intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.05,0.05,0.05,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 +"7","ETP_SRI_LinearFitting","asc lower intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.05,0.05,0.05,1.76780563288555,0.0425455021045266,0.00106933510259241,299,299,299 +"8","ETP_SRI_LinearFitting","asc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094785,0.000565757923733332,299,299,299 +"9","ETP_SRI_LinearFitting","asc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.05,0.05,0.05,0.0657882130636678,0.0129318475024161,0.000272558015550553,299,299,299 +"10","ETP_SRI_LinearFitting","asc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.05,0.05,0.05,0.0318472093243258,0.00994517539003604,0.000135584729312215,299,299,299 +"11","ETP_SRI_LinearFitting","Blood RA",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 +"12","ETP_SRI_LinearFitting","Blood RA",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 +"13","ETP_SRI_LinearFitting","Blood RA",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 +"14","ETP_SRI_LinearFitting","Blood RA",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 +"15","ETP_SRI_LinearFitting","Blood RA",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"16","ETP_SRI_LinearFitting","Blood RV",10,1,0.1,0.003,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 +"17","ETP_SRI_LinearFitting","Blood RV",30,1,0.1,0.003,0.593621105303909,0.0382494989565618,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335538,0.00202899165966831,299,299,299 +"18","ETP_SRI_LinearFitting","Blood RV",50,1,0.1,0.003,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 +"19","ETP_SRI_LinearFitting","Blood RV",100,1,0.1,0.003,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 +"20","ETP_SRI_LinearFitting","Blood RV",200,1,0.1,0.003,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"21","ETP_SRI_LinearFitting","desc lower intestine",10,0.69,0.029,0.00131,-1.78046847362474,0.016522289744801,0.0016441792429181,0.05,0.05,0.05,15.8239651221778,0.0700506422948962,0.00211653751766345,299,299,299 +"22","ETP_SRI_LinearFitting","desc lower intestine",30,0.69,0.029,0.00131,0.475373627248901,0.022456787601217,0.00136414593549871,0.05,0.05,0.05,1.76780563288553,0.0425455021045259,0.00106933510259241,299,299,299 +"23","ETP_SRI_LinearFitting","desc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094785,0.000565757923733331,299,299,299 +"24","ETP_SRI_LinearFitting","desc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.018072945218478,0.00128589506813888,0.05,0.05,0.05,0.0657882130636677,0.012931847502416,0.000272558015550553,299,299,299 +"25","ETP_SRI_LinearFitting","desc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447003,0.001295710009054,0.05,0.05,0.05,0.0318472093243258,0.00994517539003595,0.000135584729312215,299,299,299 +"26","ETP_SRI_LinearFitting","esophagus",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.05,0.05,0.05,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 +"27","ETP_SRI_LinearFitting","esophagus",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.05,0.05,0.05,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 +"28","ETP_SRI_LinearFitting","esophagus",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.05,0.05,0.05,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 +"29","ETP_SRI_LinearFitting","esophagus",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.05,0.05,0.05,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 +"30","ETP_SRI_LinearFitting","esophagus",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.05,0.05,0.05,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 +"31","ETP_SRI_LinearFitting","esophagus cont",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.05,0.05,0.05,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 +"32","ETP_SRI_LinearFitting","esophagus cont",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.05,0.05,0.05,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 +"33","ETP_SRI_LinearFitting","esophagus cont",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.05,0.05,0.05,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 +"34","ETP_SRI_LinearFitting","esophagus cont",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.05,0.05,0.05,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 +"35","ETP_SRI_LinearFitting","esophagus cont",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.05,0.05,0.05,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 +"36","ETP_SRI_LinearFitting","Left kidney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.05,0.05,0.05,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 +"37","ETP_SRI_LinearFitting","Left kidney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.05,0.05,0.05,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 +"38","ETP_SRI_LinearFitting","Left kidney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.05,0.05,0.05,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 +"39","ETP_SRI_LinearFitting","Left kidney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.05,0.05,0.05,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 +"40","ETP_SRI_LinearFitting","Left kidney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.05,0.05,0.05,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 +"41","ETP_SRI_LinearFitting","left kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.05,0.05,0.05,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 +"42","ETP_SRI_LinearFitting","left kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.05,0.05,0.05,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 +"43","ETP_SRI_LinearFitting","left kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.05,0.05,0.05,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 +"44","ETP_SRI_LinearFitting","left kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.05,0.05,0.05,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 +"45","ETP_SRI_LinearFitting","left kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.05,0.05,0.05,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 +"46","ETP_SRI_LinearFitting","Liver",10,0.11,0.1,0.0015,-3.67105854933764,0.0103322924138449,0.00161495986282209,0.05,0.05,0.05,50.5725151160169,0.100845172822066,0.00140857424525187,299,299,299 +"47","ETP_SRI_LinearFitting","Liver",30,0.11,0.1,0.0015,0.0969318407879205,0.0145642929149208,0.00147246699637093,0.05,0.05,0.05,0.269776485804268,0.0971893509566391,0.000377588902171262,299,299,299 +"48","ETP_SRI_LinearFitting","Liver",50,0.11,0.1,0.0015,0.112644420990274,0.0988492551721873,0.0014787002760584,0.05,0.05,0.05,0.150827871968332,0.380693459960368,0.000223664227770201,299,299,299 +"49","ETP_SRI_LinearFitting","Liver",100,0.11,0.1,0.0015,0.114915102854363,0.0889095920483081,0.00148764168516119,0.05,0.05,0.05,0.0738473058377525,0.328370788509957,0.000111502995637712,299,299,299 +"50","ETP_SRI_LinearFitting","Liver",200,0.11,0.1,0.0015,0.113341186733021,0.0725340532416588,0.00149339727236951,0.05,0.05,0.05,0.0368404978098108,0.138234643262059,5.57744401860227e-05,299,299,299 +"51","ETP_SRI_LinearFitting","Myocardium LV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.05,0.05,0.05,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 +"52","ETP_SRI_LinearFitting","Myocardium LV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.05,0.05,0.05,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 +"53","ETP_SRI_LinearFitting","Myocardium LV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.05,0.05,0.05,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 +"54","ETP_SRI_LinearFitting","Myocardium LV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.05,0.05,0.05,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 +"55","ETP_SRI_LinearFitting","Myocardium LV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.05,0.05,0.05,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 +"56","ETP_SRI_LinearFitting","myocardium ra",10,0.07,0.07,0.0015,-1.65951665423363,0.0177238771115808,0.00160957265059348,0.05,0.05,0.05,13.1554017697515,0.183131672721427,0.00136088593186554,299,299,299 +"57","ETP_SRI_LinearFitting","myocardium ra",30,0.07,0.07,0.0015,0.0589564569081104,0.0296093937203642,0.00147279822346654,0.05,0.05,0.05,0.266937871380083,0.242638673913433,0.000360646166742376,299,299,299 +"58","ETP_SRI_LinearFitting","myocardium ra",50,0.07,0.07,0.0015,0.0732759014900858,0.0328371698735262,0.00147933187029512,0.05,0.05,0.05,0.1504150174967,0.216423076996624,0.000213945675661325,299,299,299 +"59","ETP_SRI_LinearFitting","myocardium ra",100,0.07,0.07,0.0015,0.075067261558205,0.0677774461043471,0.00148810347075861,0.05,0.05,0.05,0.0738177865239001,0.269492649198698,0.000106705818256413,299,299,299 +"60","ETP_SRI_LinearFitting","myocardium ra",200,0.07,0.07,0.0015,0.0733792311780607,0.0623676153801111,0.00149366381082312,0.05,0.05,0.05,0.0368411946796926,0.237445081999106,5.33779360572001e-05,299,299,299 +"61","ETP_SRI_LinearFitting","myocardium RV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.05,0.05,0.05,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 +"62","ETP_SRI_LinearFitting","myocardium RV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.05,0.05,0.05,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 +"63","ETP_SRI_LinearFitting","myocardium RV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.05,0.05,0.05,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 +"64","ETP_SRI_LinearFitting","myocardium RV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.05,0.05,0.05,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 +"65","ETP_SRI_LinearFitting","myocardium RV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.05,0.05,0.05,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 +"66","ETP_SRI_LinearFitting","pancreas",10,0.15,0.01,0.00129999999999999,-0.650527215028878,0.00373368564161748,0.00138866565214997,0.05,0.05,0.05,4.93667394171624,0.00722474221217601,0.00119248691671331,299,299,299 +"67","ETP_SRI_LinearFitting","pancreas",30,0.15,0.01,0.00129999999999999,0.141181390443557,0.0571022180430843,0.00127631910355573,0.05,0.05,0.05,0.223328699407368,0.30235917617171,0.000329779178430446,299,299,299 +"68","ETP_SRI_LinearFitting","pancreas",50,0.15,0.01,0.00129999999999999,0.1510036083282,0.0152944083015561,0.00128385681159516,0.05,0.05,0.05,0.127982122939212,0.126325868230149,0.000196269231755713,299,299,299 +"69","ETP_SRI_LinearFitting","pancreas",100,0.15,0.01,0.00129999999999999,0.151847983395745,0.0131626451974964,0.00129232113375324,0.05,0.05,0.05,0.0631293755739931,0.0377927362687652,9.79894642257458e-05,299,299,299 +"70","ETP_SRI_LinearFitting","pancreas",200,0.15,0.01,0.00129999999999999,0.150332194355078,0.0109445926132955,0.00129741584499017,0.05,0.05,0.05,0.0315327839698718,0.00587272237819955,4.90247818549865e-05,299,299,299 +"71","ETP_SRI_LinearFitting","pericardium",10,0.07,0.00999999999999999,0.003,-1.71069455396435,0.00413806480279475,0.00222002363044559,0.05,0.05,0.05,11.3461458015308,0.00796330900457343,0.00214350424805972,299,299,299 +"72","ETP_SRI_LinearFitting","pericardium",30,0.07,0.00999999999999999,0.003,-2.91527744837181,0.00507173294709184,0.00321986504376209,0.05,0.05,0.05,18.8162955606326,0.0031589206110522,0.00176542899681745,299,299,299 +"73","ETP_SRI_LinearFitting","pericardium",50,0.07,0.00999999999999999,0.003,-0.725107480466489,0.0146143161821091,0.00308436166182826,0.05,0.05,0.05,5.02892397652847,0.139670661799305,0.0011228429935268,299,299,299 +"74","ETP_SRI_LinearFitting","pericardium",100,0.07,0.00999999999999999,0.003,0.0395072922651046,0.00739762781595787,0.00298132773142143,0.05,0.05,0.05,0.337660314112399,0.026548244280092,0.000442399989892903,299,299,299 +"75","ETP_SRI_LinearFitting","pericardium",200,0.07,0.00999999999999999,0.003,0.0717940918714239,0.0314985196375023,0.00298144117966044,0.05,0.05,0.05,0.139726244311711,0.210455939290863,0.000213771886702303,299,299,299 +"76","ETP_SRI_LinearFitting","right kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.05,0.05,0.05,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 +"77","ETP_SRI_LinearFitting","right kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.05,0.05,0.05,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 +"78","ETP_SRI_LinearFitting","right kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.05,0.05,0.05,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 +"79","ETP_SRI_LinearFitting","right kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.05,0.05,0.05,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 +"80","ETP_SRI_LinearFitting","right kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.05,0.05,0.05,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 +"81","ETP_SRI_LinearFitting","Right kydney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.05,0.05,0.05,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 +"82","ETP_SRI_LinearFitting","Right kydney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.05,0.05,0.05,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 +"83","ETP_SRI_LinearFitting","Right kydney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.05,0.05,0.05,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 +"84","ETP_SRI_LinearFitting","Right kydney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.05,0.05,0.05,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 +"85","ETP_SRI_LinearFitting","Right kydney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.05,0.05,0.05,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 +"86","ETP_SRI_LinearFitting","small intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.05,0.05,0.05,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 +"87","ETP_SRI_LinearFitting","small intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.05,0.05,0.05,1.76780563288555,0.0425455021045267,0.00106933510259241,299,299,299 +"88","ETP_SRI_LinearFitting","small intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094786,0.000565757923733332,299,299,299 +"89","ETP_SRI_LinearFitting","small intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.05,0.05,0.05,0.0657882130636678,0.0129318475024162,0.000272558015550553,299,299,299 +"90","ETP_SRI_LinearFitting","small intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.05,0.05,0.05,0.0318472093243258,0.00994517539003606,0.000135584729312215,299,299,299 +"91","ETP_SRI_LinearFitting","spleen",10,0.2,0.03,0.00129999999999999,-3.3740132522231,0.00553618298512768,0.00143433710820903,0.05,0.05,0.05,32.2937373001832,0.0199199575648861,0.00143622539626405,299,299,299 +"92","ETP_SRI_LinearFitting","spleen",30,0.2,0.03,0.00129999999999999,0.191616803068673,0.0524339373886503,0.00127246317690968,0.05,0.05,0.05,0.225231222917192,0.241188205504064,0.000351229948037188,299,299,299 +"93","ETP_SRI_LinearFitting","spleen",50,0.2,0.03,0.00129999999999999,0.202791755119256,0.039825290894353,0.0012798791928558,0.05,0.05,0.05,0.128062905075638,0.160615566355117,0.000208715871266267,299,299,299 +"94","ETP_SRI_LinearFitting","spleen",100,0.2,0.03,0.00129999999999999,0.204134185690545,0.0296901197338264,0.00128864343929708,0.05,0.05,0.05,0.063013883604555,0.059005431253839,0.000104155540475188,299,299,299 +"95","ETP_SRI_LinearFitting","spleen",200,0.2,0.03,0.00129999999999999,0.202743964725328,0.0217979487010552,0.0012939998603653,0.05,0.05,0.05,0.0314614070504959,0.0204643988878911,5.21071683813949e-05,299,299,299 +"96","ETP_SRI_LinearFitting","st wall",10,0.3,0.012,0.0015,-1.64610469307265,0.00469872580015407,0.0016722712729154,0.05,0.05,0.05,15.8055997491259,0.0116896306708749,0.00158171276921857,299,299,299 +"97","ETP_SRI_LinearFitting","st wall",30,0.3,0.012,0.0015,0.270890694864435,0.0145946544452255,0.00147533983907024,0.05,0.05,0.05,0.296176769896366,0.0644575311240057,0.000487785371238241,299,299,299 +"98","ETP_SRI_LinearFitting","st wall",50,0.3,0.012,0.0015,0.29676404903463,0.0206118664406517,0.00147812190285612,0.05,0.05,0.05,0.154483980727086,0.138058215589313,0.000285387872646462,299,299,299 +"99","ETP_SRI_LinearFitting","st wall",100,0.3,0.012,0.0015,0.302162253072998,0.0127072898874613,0.00148765340763967,0.05,0.05,0.05,0.0742535435648724,0.00999336152068087,0.000141764252457752,299,299,299 +"100","ETP_SRI_LinearFitting","st wall",200,0.3,0.012,0.0015,0.301306786736074,0.0115839512910052,0.00149453131653136,0.05,0.05,0.05,0.0369195438104536,0.0039251958924262,7.08740730226027e-05,299,299,299 +"101","ETP_SRI_LinearFitting","trans lower intestine",10,0.69,0.029,0.00130999999999999,-1.78046847362465,0.0165222897448011,0.0016441792429181,0.05,0.05,0.05,15.8239651221768,0.0700506422948976,0.00211653751766344,299,299,299 +"102","ETP_SRI_LinearFitting","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.475373627248902,0.0224567876012169,0.00136414593549871,0.05,0.05,0.05,1.7678056328855,0.042545502104526,0.00106933510259241,299,299,299 +"103","ETP_SRI_LinearFitting","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094783,0.000565757923733331,299,299,299 +"104","ETP_SRI_LinearFitting","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689682968828103,0.018072945218478,0.00128589506813888,0.05,0.05,0.05,0.0657882130636677,0.0129318475024159,0.000272558015550553,299,299,299 +"105","ETP_SRI_LinearFitting","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.6916765650872,0.0183295045447003,0.001295710009054,0.05,0.05,0.05,0.0318472093243257,0.00994517539003592,0.000135584729312215,299,299,299 +"106","ETP_SRI_LinearFitting","Vein",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 +"107","ETP_SRI_LinearFitting","Vein",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335514,0.00202899165966831,299,299,299 +"108","ETP_SRI_LinearFitting","Vein",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 +"109","ETP_SRI_LinearFitting","Vein",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 +"110","ETP_SRI_LinearFitting","Vein",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"111","IAR_LU_biexp","Artery",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.05,0.05,0.05,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 +"112","IAR_LU_biexp","Artery",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.05,0.05,0.05,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 +"113","IAR_LU_biexp","Artery",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.05,0.05,0.05,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 +"114","IAR_LU_biexp","Artery",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.05,0.05,0.05,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 +"115","IAR_LU_biexp","Artery",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.05,0.05,0.05,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 +"116","IAR_LU_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.697212667896394,0.0325023737565882,0.00113782850824108,0.05,0.05,0.05,0.0969149603369071,0.0150873113090282,0.00075651551093642,299,299,299 +"117","IAR_LU_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690042687609969,0.0293408736715589,0.00129733848997831,0.05,0.05,0.05,0.0360947595237916,0.00363625975881636,0.000283880194097926,299,299,299 +"118","IAR_LU_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.690035517241786,0.0291115984791372,0.00130238538452424,0.05,0.05,0.05,0.0214722239467864,0.00211805849668056,0.000167872936460034,299,299,299 +"119","IAR_LU_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.69001659059687,0.0290241717802667,0.00130617192275866,0.05,0.05,0.05,0.0106870876911403,0.00104662367079566,8.33919719679096e-05,299,299,299 +"120","IAR_LU_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.690006715696218,0.0290045215204471,0.001308087187188,0.05,0.05,0.05,0.00533599564952396,0.000521521540722386,4.16245932209183e-05,299,299,299 +"121","IAR_LU_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.05,0.05,0.05,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 +"122","IAR_LU_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.05,0.05,0.05,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 +"123","IAR_LU_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.05,0.05,0.05,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 +"124","IAR_LU_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.05,0.05,0.05,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 +"125","IAR_LU_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.05,0.05,0.05,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 +"126","IAR_LU_biexp","Blood RV",10,1,0.1,0.003,0.92647069528709,0.0982613762257002,0.000127034347081598,0.05,0.05,0.05,0.0215210674974187,0.0049615271733654,0.000371973812375611,299,299,299 +"127","IAR_LU_biexp","Blood RV",30,1,0.1,0.003,0.977495351986575,0.0994484053261729,8.6776830208335e-05,0.05,0.05,0.05,0.00692461752875168,0.00165005168400417,0.00029552015946517,299,299,299 +"128","IAR_LU_biexp","Blood RV",50,1,0.1,0.003,0.986847787847024,0.0996578523977876,7.50360360821851e-05,0.05,0.05,0.05,0.00411089364523165,0.00101750527880633,0.000278518469327793,299,299,299 +"129","IAR_LU_biexp","Blood RV",100,1,0.1,0.003,0.993665235855317,0.0998164880990098,5.78826114675235e-05,0.05,0.05,0.05,0.0020037885125151,0.000529926879857713,0.000263826199490928,299,299,299 +"130","IAR_LU_biexp","Blood RV",200,1,0.1,0.003,0.996952138241195,0.09990235409644,4.82142679154876e-05,0.05,0.05,0.05,0.000991618405480444,0.000274814551227168,0.000256559602777668,299,299,299 +"131","IAR_LU_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.697212667300357,0.0325023737719409,0.00113782851118961,0.05,0.05,0.05,0.0969149608678149,0.0150873112968303,0.00075651551240572,299,299,299 +"132","IAR_LU_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690042687627665,0.0293408736706232,0.00129733848988675,0.05,0.05,0.05,0.0360947594628279,0.00363625975619238,0.00028388019375974,299,299,299 +"133","IAR_LU_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.690035515572817,0.0291115986604859,0.00130238539842299,0.05,0.05,0.05,0.0214722257649461,0.002118058553172,0.000167872962249228,299,299,299 +"134","IAR_LU_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.690016590562107,0.0290241717827196,0.00130617192299434,0.05,0.05,0.05,0.0106870876869911,0.00104662367148246,8.33919720257604e-05,299,299,299 +"135","IAR_LU_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.690006715693301,0.0290045215206338,0.00130808718720708,0.05,0.05,0.05,0.00533599565206864,0.000521521540571046,4.1624593218652e-05,299,299,299 +"136","IAR_LU_biexp","esophagus",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.05,0.05,0.05,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 +"137","IAR_LU_biexp","esophagus",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.05,0.05,0.05,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 +"138","IAR_LU_biexp","esophagus",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.05,0.05,0.05,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 +"139","IAR_LU_biexp","esophagus",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.05,0.05,0.05,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 +"140","IAR_LU_biexp","esophagus",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.05,0.05,0.05,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 +"141","IAR_LU_biexp","esophagus cont",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.05,0.05,0.05,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 +"142","IAR_LU_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.05,0.05,0.05,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 +"143","IAR_LU_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.05,0.05,0.05,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 +"144","IAR_LU_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.05,0.05,0.05,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 +"145","IAR_LU_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.05,0.05,0.05,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 +"146","IAR_LU_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.05,0.05,0.05,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 +"147","IAR_LU_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.05,0.05,0.05,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 +"148","IAR_LU_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.05,0.05,0.05,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 +"149","IAR_LU_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.05,0.05,0.05,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 +"150","IAR_LU_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.05,0.05,0.05,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 +"151","IAR_LU_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.05,0.05,0.05,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 +"152","IAR_LU_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.05,0.05,0.05,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 +"153","IAR_LU_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.05,0.05,0.05,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 +"154","IAR_LU_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.05,0.05,0.05,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 +"155","IAR_LU_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.05,0.05,0.05,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 +"156","IAR_LU_biexp","Liver",10,0.11,0.1,0.0015,0.17150503347828,0.0585894869688638,0.00133082929506349,0.05,0.05,0.05,0.136516097304139,0.040090038616655,0.000354915450632941,299,299,299 +"157","IAR_LU_biexp","Liver",30,0.11,0.1,0.0015,0.116524922609641,0.0797461322710395,0.00147039590886351,0.05,0.05,0.05,0.0333445716851057,0.0273586641563357,9.54315771325179e-05,299,299,299 +"158","IAR_LU_biexp","Liver",50,0.11,0.1,0.0015,0.111213985993271,0.0871710843301268,0.00148797791711182,0.05,0.05,0.05,0.0154006163091042,0.0181177747169451,4.76546785250623e-05,299,299,299 +"159","IAR_LU_biexp","Liver",100,0.11,0.1,0.0015,0.110305056949762,0.0927872237401196,0.00149443585404214,0.05,0.05,0.05,0.00760367346398485,0.010636984816954,2.3490644652322e-05,299,299,299 +"160","IAR_LU_biexp","Liver",200,0.11,0.1,0.0015,0.110083101922637,0.0961088632553183,0.00149729667035132,0.05,0.05,0.05,0.00377409246386361,0.00589352197554721,1.16519052488367e-05,299,299,299 +"161","IAR_LU_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.05,0.05,0.05,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 +"162","IAR_LU_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.05,0.05,0.05,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 +"163","IAR_LU_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.05,0.05,0.05,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 +"164","IAR_LU_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.05,0.05,0.05,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 +"165","IAR_LU_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.05,0.05,0.05,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 +"166","IAR_LU_biexp","myocardium ra",10,0.07,0.07,0.0015,0.14434529830722,0.0496160441966283,0.00132998441282674,0.05,0.05,0.05,0.140855149533486,0.0404605423176663,0.000341449090754878,299,299,299 +"167","IAR_LU_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884934019340212,0.0605990186959302,0.00145501083368677,0.05,0.05,0.05,0.0492325838484117,0.0351976192418362,0.000113777290620505,299,299,299 +"168","IAR_LU_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0758647169781666,0.06791650050496,0.00148333041539624,0.05,0.05,0.05,0.0230456661351546,0.0291001629249576,5.93738477118657e-05,299,299,299 +"169","IAR_LU_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0708749125967571,0.0711936438005044,0.00149642377167344,0.05,0.05,0.05,0.00816500710666416,0.0192721206922887,2.43863373496943e-05,299,299,299 +"170","IAR_LU_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070182595378895,0.0711717683305259,0.00149896894166523,0.05,0.05,0.05,0.00403298414730219,0.0119620121584671,1.22446271475917e-05,299,299,299 +"171","IAR_LU_biexp","myocardium RV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.05,0.05,0.05,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 +"172","IAR_LU_biexp","myocardium RV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.05,0.05,0.05,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 +"173","IAR_LU_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.05,0.05,0.05,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 +"174","IAR_LU_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.05,0.05,0.05,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 +"175","IAR_LU_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.05,0.05,0.05,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 +"176","IAR_LU_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.194101487815807,0.0312758838743002,0.00120526646626578,0.05,0.05,0.05,0.163835605660646,0.0351134171828845,0.000389002224095764,299,299,299 +"177","IAR_LU_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.18057781110752,0.0172903815631494,0.00125161129207905,0.05,0.05,0.05,0.0946201475796243,0.0207613933514163,0.000184226392073428,299,299,299 +"178","IAR_LU_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.172218377812807,0.0122015061567802,0.00126461919523248,0.05,0.05,0.05,0.0680057817004279,0.0102895468472958,0.000126280292095513,299,299,299 +"179","IAR_LU_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156814390417323,0.010276360650811,0.00128831420397952,0.05,0.05,0.05,0.0330925441819963,0.00280594101449204,6.19579959599574e-05,299,299,299 +"180","IAR_LU_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151550794401852,0.0100513328503536,0.00129688092235998,0.05,0.05,0.05,0.0150249218350546,0.00127661999397567,2.91039408170828e-05,299,299,299 +"181","IAR_LU_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.285492213115468,0.0190670326981962,0.00226157462609275,0.05,0.05,0.05,0.295897833443307,0.0281974740030665,0.000970921790568731,299,299,299 +"182","IAR_LU_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171300202118549,0.0176658968150002,0.00279755619927794,0.05,0.05,0.05,0.192343219823375,0.0249759051303956,0.000428028390979465,299,299,299 +"183","IAR_LU_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.150556932149508,0.0186673286620893,0.00287029554388432,0.05,0.05,0.05,0.153716456740351,0.024823540168741,0.000300739466996796,299,299,299 +"184","IAR_LU_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.137271520897935,0.0160473990749268,0.00290927547149749,0.05,0.05,0.05,0.117893566693985,0.0195152724982985,0.000196241930893257,299,299,299 +"185","IAR_LU_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.102312394147559,0.0125930930414983,0.00295777596823617,0.05,0.05,0.05,0.0785041069510577,0.0109051130123374,0.000124246519340491,299,299,299 +"186","IAR_LU_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.05,0.05,0.05,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 +"187","IAR_LU_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.05,0.05,0.05,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 +"188","IAR_LU_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.05,0.05,0.05,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 +"189","IAR_LU_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.05,0.05,0.05,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 +"190","IAR_LU_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.05,0.05,0.05,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 +"191","IAR_LU_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.05,0.05,0.05,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 +"192","IAR_LU_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.05,0.05,0.05,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 +"193","IAR_LU_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.05,0.05,0.05,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 +"194","IAR_LU_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.05,0.05,0.05,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 +"195","IAR_LU_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.05,0.05,0.05,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 +"196","IAR_LU_biexp","small intestine",10,0.69,0.029,0.00131,0.697212667324408,0.0325023737670926,0.00113782851099832,0.05,0.05,0.05,0.0969149608580876,0.0150873112899437,0.000756515511829932,299,299,299 +"197","IAR_LU_biexp","small intestine",30,0.69,0.029,0.00131,0.690042687647921,0.0293408736692245,0.0012973384897293,0.05,0.05,0.05,0.0360947594630489,0.00363625975813661,0.000283880193523868,299,299,299 +"198","IAR_LU_biexp","small intestine",50,0.69,0.029,0.00131,0.690035515564786,0.0291115986613112,0.00130238539849337,0.05,0.05,0.05,0.0214722257688065,0.00211805855379368,0.000167872962555997,299,299,299 +"199","IAR_LU_biexp","small intestine",100,0.69,0.029,0.00131,0.690016590577353,0.0290241717816333,0.00130617192289034,0.05,0.05,0.05,0.0106870876894146,0.00104662367040614,8.33919719690564e-05,299,299,299 +"200","IAR_LU_biexp","small intestine",200,0.69,0.029,0.00131,0.690006715703415,0.0290045215198542,0.00130808718713812,0.05,0.05,0.05,0.00533599564919373,0.000521521540682779,4.16245931960093e-05,299,299,299 +"201","IAR_LU_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.258238381169185,0.0415855486936915,0.001156583030263,0.05,0.05,0.05,0.138972935730348,0.033199359136067,0.000392002777022699,299,299,299 +"202","IAR_LU_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206967214328514,0.0338919578464336,0.00128156423965599,0.05,0.05,0.05,0.0387633481889241,0.0175409201633337,0.000113885202343254,299,299,299 +"203","IAR_LU_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202249286598062,0.0312833908166694,0.00129256952434829,0.05,0.05,0.05,0.0221581511313069,0.00879736911181636,6.60123263011774e-05,299,299,299 +"204","IAR_LU_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200487080304842,0.0302504275785877,0.0012973937314337,0.05,0.05,0.05,0.0107457183685509,0.00383295563309727,3.20648907780344e-05,299,299,299 +"205","IAR_LU_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.20009205584711,0.030052736227119,0.00129897493246634,0.05,0.05,0.05,0.00531656690976873,0.00186528647470474,1.58727384991494e-05,299,299,299 +"206","IAR_LU_biexp","st wall",10,0.3,0.012,0.0015,0.361045681611347,0.0252956083225308,0.00131717399629326,0.05,0.05,0.05,0.20326722786523,0.0285647281439496,0.000612145460756818,299,299,299 +"207","IAR_LU_biexp","st wall",30,0.3,0.012,0.0015,0.323962428710257,0.0134193933845625,0.00143886841292422,0.05,0.05,0.05,0.0982083290063556,0.00798933272515384,0.000260082486221727,299,299,299 +"208","IAR_LU_biexp","st wall",50,0.3,0.012,0.0015,0.307361980831941,0.012384744394028,0.00147968648747327,0.05,0.05,0.05,0.0543906266860356,0.00311905673053413,0.000143561177270617,299,299,299 +"209","IAR_LU_biexp","st wall",100,0.3,0.012,0.0015,0.301677558443888,0.0120878361093821,0.00149434290424516,0.05,0.05,0.05,0.0263384511959087,0.0014322760683357,6.96636660243356e-05,299,299,299 +"210","IAR_LU_biexp","st wall",200,0.3,0.012,0.0015,0.300399087873271,0.0120193042665729,0.0014981386774852,0.05,0.05,0.05,0.0130979678723596,0.000698591450954127,3.46398328200195e-05,299,299,299 +"211","IAR_LU_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.697212667722101,0.0325023737662354,0.0011378285095022,0.05,0.05,0.05,0.0969149605281008,0.0150873112941006,0.00075651551328862,299,299,299 +"212","IAR_LU_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.69004268765537,0.0293408736684314,0.00129733848966368,0.05,0.05,0.05,0.0360947595155316,0.00363625976077757,0.000283880194085563,299,299,299 +"213","IAR_LU_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.690035515530053,0.0291115986633909,0.00130238539872579,0.05,0.05,0.05,0.0214722257310754,0.00211805855231437,0.00016787296220424,299,299,299 +"214","IAR_LU_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.690016590592847,0.0290241717807258,0.00130617192278856,0.05,0.05,0.05,0.0106870876903053,0.00104662367103972,8.33919719260138e-05,299,299,299 +"215","IAR_LU_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.690006715695885,0.0290045215203316,0.00130808718718679,0.05,0.05,0.05,0.00533599564581372,0.000521521540492688,4.16245931726914e-05,299,299,299 +"216","IAR_LU_biexp","Vein",10,1,0.1,0.00299999999999999,0.926470695260705,0.0982613762253741,0.000127034347223934,0.05,0.05,0.05,0.0215210674937771,0.00496152716857027,0.000371973810625793,299,299,299 +"217","IAR_LU_biexp","Vein",30,1,0.1,0.00299999999999999,0.977495351988701,0.0994484053257689,8.67768297506284e-05,0.05,0.05,0.05,0.00692461752649988,0.00165005168479494,0.000295520156728701,299,299,299 +"218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.05,0.05,0.05,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 +"219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.05,0.05,0.05,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 +"220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.05,0.05,0.05,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 +"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933585497630734,0.0981574637022146,9.69406898291101e-05,0.05,0.05,0.05,0.0215367890806767,0.00483736920084973,0.000275993218688137,299,299,299 +"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660989935616,0.09892538068859,0.000105437917432832,0.05,0.05,0.05,0.00717848555815703,0.00255244861895363,0.000389451720196529,299,299,299 +"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987498292249604,0.0993297948005376,0.000129153520967711,0.05,0.05,0.05,0.00422940688351617,0.00160204634532573,0.000484317874679621,299,299,299 +"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993800721064657,0.0996297879797104,0.00065420398455906,0.05,0.05,0.05,0.00223485357796604,0.000852587823156189,0.000795654484174987,299,299,299 +"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996838931326603,0.0998120234434894,0.000929915100500146,0.05,0.05,0.05,0.00121939515034729,0.000433140335431692,0.000927151212504707,299,299,299 +"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.70118302735804,0.0376631816755619,0.00123552777447261,0.05,0.05,0.05,0.083800073393047,0.0142303382036424,0.00069987927068995,299,299,299 +"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689290201472111,0.0305667965245306,0.00132573557528108,0.05,0.05,0.05,0.0343112861107501,0.00387422243041273,0.000274365267777591,299,299,299 +"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689070661016898,0.0296133292823638,0.00131661904617102,0.05,0.05,0.05,0.0211036646185242,0.00231401133197021,0.0001656407183691,299,299,299 +"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689235660743524,0.029167441395601,0.00131239336623538,0.05,0.05,0.05,0.0106212837453345,0.0011846364212203,8.31546841668358e-05,299,299,299 +"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689605411677327,0.0290613542977066,0.00131096046346112,0.05,0.05,0.05,0.0053047890375494,0.00059643388657717,4.15768305642699e-05,299,299,299 +"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933571673906352,0.0981799962816648,9.69425147886995e-05,0.05,0.05,0.05,0.0215317621644235,0.00482883970088294,0.000274227459135603,299,299,299 +"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978664750442118,0.0989241474263079,0.000105459538818055,0.05,0.05,0.05,0.00717458041858446,0.00256031714155621,0.000391569928720496,299,299,299 +"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987513435646139,0.0993179395078281,0.000133318715467788,0.05,0.05,0.05,0.004260591582303,0.00163067367550637,0.000506176346665106,299,299,299 +"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993779059530937,0.0996317405784665,0.000656411734244829,0.05,0.05,0.05,0.00223379403702236,0.000861993056453572,0.000794135815507235,299,299,299 +"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996844778623803,0.0998034706987736,0.000950962794224168,0.05,0.05,0.05,0.00123141962885952,0.000438547712579806,0.000907622146565708,299,299,299 +"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933567035160943,0.0981804000612912,9.72358009655355e-05,0.05,0.05,0.05,0.0215322487384184,0.00482732054754276,0.000276298754251513,299,299,299 +"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662585458701,0.0989275435014284,0.000105269073550906,0.05,0.05,0.05,0.00717623785341058,0.00255739983142373,0.000390634737387853,299,299,299 +"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987518051546122,0.0993263314438898,0.000138935424465376,0.05,0.05,0.05,0.0042889324277417,0.00159807301810923,0.000530085175043958,299,299,299 +"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993800120720217,0.0996308888078363,0.000668329516844987,0.05,0.05,0.05,0.00225541087319911,0.000846891999037567,0.000826258792976595,299,299,299 +"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996847421670637,0.0998045328409555,0.000864913218319493,0.05,0.05,0.05,0.00121889233676043,0.000451966909610354,0.000878525200280662,299,299,299 +"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.70121041701841,0.0376593650236406,0.00123528058664086,0.05,0.05,0.05,0.0838036997765366,0.0142238700835626,0.000699364346933705,299,299,299 +"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689288149030223,0.0305675922099419,0.00132580305344227,0.05,0.05,0.05,0.0342914648115165,0.00387497402129783,0.000274452663613485,299,299,299 +"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067878962496,0.0296136379222481,0.00131660398462184,0.05,0.05,0.05,0.0211182395127554,0.00231582938186994,0.000165690641494043,299,299,299 +"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689242117678549,0.0291665005973849,0.00131234225636359,0.05,0.05,0.05,0.0106116326097694,0.00118434299165919,8.32281354387567e-05,299,299,299 +"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689582683156737,0.029063777535345,0.00131111431833381,0.05,0.05,0.05,0.0053032064935523,0.0005946748005775,4.15793061176523e-05,299,299,299 +"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.401162145085842,0.0445055628772153,0.00153973562036614,0.05,0.05,0.05,0.102560345837135,0.025884854056261,0.000432756638002491,299,299,299 +"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337533779047726,0.0333150694221572,0.0016483392294891,0.05,0.05,0.05,0.0404716928827937,0.0096734243145236,0.000155138538668039,299,299,299 +"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327801319839287,0.0312784835259254,0.00165934570033412,0.05,0.05,0.05,0.0251894020334782,0.00504247724050779,9.37998848782849e-05,299,299,299 +"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.321627368855783,0.0303637053064357,0.00166700903132637,0.05,0.05,0.05,0.0130056647244023,0.00246450105925069,4.73130928640306e-05,299,299,299 +"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.319960908208232,0.0301265137579372,0.0016695890944156,0.05,0.05,0.05,0.00666677601793114,0.00123942743436455,2.37339112795748e-05,299,299,299 +"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400889682428286,0.0445226753139279,0.00154156783293044,0.05,0.05,0.05,0.1021859015598,0.0258539259722867,0.000435332444587206,299,299,299 +"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337499868040702,0.0333271220929418,0.00164847626448462,0.05,0.05,0.05,0.0404619601433055,0.00968540822537649,0.000155032220764248,299,299,299 +"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327741720611451,0.0312943052711291,0.00165947680528061,0.05,0.05,0.05,0.0252188578971051,0.00506703151509424,9.3959149379938e-05,299,299,299 +"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321575920235398,0.0303764016154378,0.00166718997527805,0.05,0.05,0.05,0.0130103093338018,0.00245778871593873,4.71990619240319e-05,299,299,299 +"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319991093848812,0.0301194325931127,0.00166949510753206,0.05,0.05,0.05,0.00666201174666317,0.00123834858180601,2.35984887416209e-05,299,299,299 +"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.251345368028037,0.0471020192793795,0.00187448619145168,0.05,0.05,0.05,0.152953898200326,0.0326779401179953,0.000510080044555109,299,299,299 +"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.151979124306745,0.0339941368124393,0.00204284390075736,0.05,0.05,0.05,0.0760883203629435,0.0273468927146377,0.000194312207301133,299,299,299 +"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125804871960354,0.0288752056381118,0.00208022109781104,0.05,0.05,0.05,0.0480640263401514,0.0220489446417168,0.000120438531413508,299,299,299 +"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109168357520658,0.021077360490286,0.00210050604102789,0.05,0.05,0.05,0.020268427580592,0.00856516862516735,5.53556562603283e-05,299,299,299 +"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.102581896039993,0.0195425340297463,0.00210914244284839,0.05,0.05,0.05,0.00994676692830774,0.00301367716344368,2.73179763288563e-05,299,299,299 +"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.292034630066685,0.0461642767173421,0.00186211580652248,0.05,0.05,0.05,0.155532304872419,0.0327544711206179,0.000547848012495798,299,299,299 +"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194835611675974,0.0298474230438033,0.00204403383065649,0.05,0.05,0.05,0.071093392228958,0.021799987179614,0.000204182527731966,299,299,299 +"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174228360388138,0.0242446116007389,0.00207257722194447,0.05,0.05,0.05,0.0415766102985543,0.0129380338395601,0.00012163276516502,299,299,299 +"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163237475571564,0.0203163311409967,0.0020842579040657,0.05,0.05,0.05,0.021011224436512,0.00392656966496356,6.09849419959358e-05,299,299,299 +"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158888459956295,0.0194416172008109,0.00208916433547989,0.05,0.05,0.05,0.0111078223660085,0.00196332099136461,3.15976297706685e-05,299,299,299 +"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.241195762595272,0.0641654476797552,0.00132912841758645,0.05,0.05,0.05,0.100694310558914,0.034250612128544,0.000295056725307876,299,299,299 +"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.141213557486457,0.0800305754522179,0.00145767605779149,0.05,0.05,0.05,0.0329335303013413,0.0263107454662648,8.88655476807034e-05,299,299,299 +"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.123094957014719,0.086999016424148,0.00148129387342066,0.05,0.05,0.05,0.0184556585214603,0.0178505327252305,4.84946585640519e-05,299,299,299 +"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113750268164224,0.092524082839646,0.00149249113528396,0.05,0.05,0.05,0.00970299447281858,0.0104613450599458,2.39324552481813e-05,299,299,299 +"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111149886019375,0.0957900537062345,0.00149660173854397,0.05,0.05,0.05,0.00522986852432767,0.00580876732017651,1.19355661833082e-05,299,299,299 +"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.291461531322172,0.0633741097816199,0.00207354825447423,0.05,0.05,0.05,0.127600864533294,0.0334257397322378,0.000514837747046843,299,299,299 +"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.178238818785873,0.0764159231355582,0.00234502570486846,0.05,0.05,0.05,0.0371825276847334,0.0243272747907427,0.00015354388168928,299,299,299 +"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160907614688624,0.0792853722958595,0.00237823230591232,0.05,0.05,0.05,0.020775702876769,0.0182771610044057,8.79510748991933e-05,299,299,299 +"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152018373563651,0.080628062270499,0.00239454604085722,0.05,0.05,0.05,0.0108771228682302,0.0119667335585884,4.43924701040362e-05,299,299,299 +"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150216575152172,0.0804395133575349,0.00239853625134527,0.05,0.05,0.05,0.00576529382927084,0.00694792112961558,2.25712941323861e-05,299,299,299 +"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217381435048705,0.0546014978951041,0.00133088376673827,0.05,0.05,0.05,0.107017812623059,0.0335043866652647,0.000296877652470363,299,299,299 +"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114067574717232,0.0609859850983968,0.00144665125100077,0.05,0.05,0.05,0.040808187912398,0.032104126460489,9.69849544457694e-05,299,299,299 +"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906501902532086,0.0664025572584136,0.00147526301118425,0.05,0.05,0.05,0.0229951286523781,0.0267473691720359,5.62977724302272e-05,299,299,299 +"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763081428195683,0.0703118234726863,0.00149223142494865,0.05,0.05,0.05,0.0109726396869631,0.020399941603336,2.72838648901952e-05,299,299,299 +"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.071197609947188,0.0709483192362304,0.00149817892060369,0.05,0.05,0.05,0.00549944888013432,0.0123968597996033,1.32752542158846e-05,299,299,299 +"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29034384218522,0.0631565417130999,0.00207916770385992,0.05,0.05,0.05,0.123193211880161,0.0335419868913901,0.00050252681313231,299,299,299 +"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178483930265191,0.0761830881036707,0.00234426105130915,0.05,0.05,0.05,0.0370034531892405,0.0244995141549738,0.000155052331078036,299,299,299 +"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160935831707148,0.0792434645616752,0.00237814940348313,0.05,0.05,0.05,0.0208119159221461,0.0182715470271146,8.79195049404153e-05,299,299,299 +"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152022054741608,0.0806192212779407,0.00239452642464703,0.05,0.05,0.05,0.010880877106502,0.0119712696029772,4.44099048947006e-05,299,299,299 +"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150196054953055,0.0804758477530009,0.00239861246359178,0.05,0.05,0.05,0.00572396348327311,0.00690924160541797,2.25640313183623e-05,299,299,299 +"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.252480196718275,0.0423213607154336,0.00122835902753387,0.05,0.05,0.05,0.126759367660771,0.0327891272800392,0.000344745148402653,299,299,299 +"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.183152520004523,0.0218703820043612,0.00127836575968715,0.05,0.05,0.05,0.07100908070794,0.0220963397688661,0.000149830367434906,299,299,299 +"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.169795980996767,0.0144030537809855,0.00128504026387104,0.05,0.05,0.05,0.0500632934935272,0.010753154335306,0.000100029207943016,299,299,299 +"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156711247817425,0.0112693382442459,0.00129575862349329,0.05,0.05,0.05,0.0276298760172054,0.00281386635287716,5.38181034733964e-05,299,299,299 +"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.15139151543602,0.0104465644766224,0.00129981134725908,0.05,0.05,0.05,0.0141410992428257,0.00130669366586536,2.73645527773312e-05,299,299,299 +"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.258557302116673,0.0471068183766245,0.00248795354082907,0.05,0.05,0.05,0.214903019387256,0.0335108284463382,0.000830837548622187,299,299,299 +"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149947238884494,0.0369237576863555,0.00284503426782666,0.05,0.05,0.05,0.158441858976689,0.0308300483328315,0.000396002702984654,299,299,299 +"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.135294847815434,0.033060056044939,0.00289036310428597,0.05,0.05,0.05,0.137727373817596,0.0318023911087452,0.000292282925067628,299,299,299 +"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.119582921561624,0.0214668179301497,0.00292933959225631,0.05,0.05,0.05,0.106494154346753,0.024864290678986,0.000191538945495075,299,299,299 +"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.099798111596372,0.0129121085990291,0.00295806829448178,0.05,0.05,0.05,0.0714399883167558,0.0110337223010556,0.000118667153504406,299,299,299 +"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.287388355383774,0.0469902319963522,0.00187490018629999,0.05,0.05,0.05,0.154088232789638,0.0329410506782948,0.000549301864899822,299,299,299 +"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.195385185050857,0.0296426715198867,0.00204264547676058,0.05,0.05,0.05,0.0710807370008768,0.0216856823207644,0.000203683831577709,299,299,299 +"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174199345441661,0.0242833870888731,0.00207271362044409,0.05,0.05,0.05,0.0415297178041584,0.0130378957170457,0.000121525990133047,299,299,299 +"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.16322378487011,0.0203158738622392,0.00208430588735338,0.05,0.05,0.05,0.0210395757766329,0.00390471776823452,6.10505727328916e-05,299,299,299 +"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.158956493716092,0.0194256360560522,0.00208899256403884,0.05,0.05,0.05,0.0110422971628799,0.00194188127958325,3.143674418703e-05,299,299,299 +"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.250888349377501,0.047371402503128,0.00187563708748533,0.05,0.05,0.05,0.152600474882445,0.0328844724314825,0.000509346692708395,299,299,299 +"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.152394367209131,0.0338342248346544,0.00204176413384406,0.05,0.05,0.05,0.0764602929313741,0.0272060156548532,0.000194417101017135,299,299,299 +"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125722135798649,0.0288418930961371,0.0020804584013185,0.05,0.05,0.05,0.0479410958871771,0.0220987721430783,0.000120008394455241,299,299,299 +"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109258251275707,0.0210888336917277,0.00210026858404315,0.05,0.05,0.05,0.0201156566267654,0.00906552529536794,5.50101111382358e-05,299,299,299 +"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102591351586734,0.0195194895691545,0.00210907783683613,0.05,0.05,0.05,0.00987423791154675,0.00290633315778491,2.7162782176962e-05,299,299,299 +"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.70124597364803,0.0376533105953691,0.00123494285233341,0.05,0.05,0.05,0.0838087978062131,0.0142208975805004,0.000699569449570715,299,299,299 +"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689282253115157,0.0305679523100053,0.00132582316322848,0.05,0.05,0.05,0.0343120345436398,0.00387381933178381,0.00027450547448457,299,299,299 +"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.68906469857433,0.0296141472076942,0.00131664675620403,0.05,0.05,0.05,0.0211046380877389,0.00231503393557544,0.000165568410739778,299,299,299 +"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.68924085602956,0.0291669551369491,0.00131236475667989,0.05,0.05,0.05,0.0105927212140132,0.00118428973997089,8.3045479875224e-05,299,299,299 +"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689565537709723,0.0290654313733382,0.0013112133119879,0.05,0.05,0.05,0.00531859703199066,0.000596168051142135,4.16063300595293e-05,299,299,299 +"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307436964249606,0.0471147431266192,0.00118111536858665,0.05,0.05,0.05,0.098990290559619,0.0294482193867283,0.000309747511167521,299,299,299 +"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226765952590624,0.0357456817306802,0.00127416861134441,0.05,0.05,0.05,0.0383385028996501,0.016673429738904,0.000105848615028202,299,299,299 +"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212801364020476,0.0322180846808898,0.00128732689359819,0.05,0.05,0.05,0.0239509316879067,0.0084327504818117,6.46025391332036e-05,299,299,299 +"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203932320208378,0.0305855147224839,0.00129559110062648,0.05,0.05,0.05,0.0124191546473542,0.0037771319097318,3.24315411757936e-05,299,299,299 +"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200647029280049,0.0301533754553601,0.00129883859364399,0.05,0.05,0.05,0.00647583593229502,0.00186411529597863,1.61780183580482e-05,299,299,299 +"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.367945971800834,0.0328815526819765,0.00143496680356406,0.05,0.05,0.05,0.147807528160444,0.0271944876304298,0.000506058016005683,299,299,299 +"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308728622428152,0.0166049294148683,0.00151111540242445,0.05,0.05,0.05,0.0726131741081698,0.00799405429834245,0.000207407062733315,299,299,299 +"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300780288119176,0.014131458204432,0.00151398163146763,0.05,0.05,0.05,0.0459531907848284,0.00347826912804306,0.000127428964246567,299,299,299 +"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.298614414637721,0.012747355157105,0.00150815078953302,0.05,0.05,0.05,0.0246455782113685,0.00158666234294896,6.63066197676949e-05,299,299,299 +"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.298468883538829,0.0122526359779165,0.00150439887916596,0.05,0.05,0.05,0.0128034071597564,0.000749712394527436,3.38808912392544e-05,299,299,299 +"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701172083400864,0.0376643357575222,0.00123532137019413,0.05,0.05,0.05,0.0838276039141287,0.0142371051192414,0.000699686485528014,299,299,299 +"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689289919253675,0.0305669926411663,0.00132574692556997,0.05,0.05,0.05,0.0343103726533026,0.00387581532982116,0.000274565889058043,299,299,299 +"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689070277589592,0.0296137274039448,0.00131661534704228,0.05,0.05,0.05,0.0211246269825046,0.00231627718399693,0.000165674801922877,299,299,299 +"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689264336679984,0.0291644911550967,0.00131220932256824,0.05,0.05,0.05,0.010606116585825,0.00118604809079964,8.30668062716465e-05,299,299,299 +"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689571592771227,0.0290647333356073,0.00131116843784505,0.05,0.05,0.05,0.0053135389758377,0.000595353063699454,4.15613118970307e-05,299,299,299 +"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933576727246349,0.0981723265635994,9.66882045583501e-05,0.05,0.05,0.05,0.0215261330353534,0.00483080027386807,0.000272806867150693,299,299,299 +"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978665787179333,0.0989287066979681,0.000104687384161528,0.05,0.05,0.05,0.00716855585860775,0.00255167420900226,0.000389304738699339,299,299,299 +"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987513702439684,0.0993313292297562,0.000145994132929744,0.05,0.05,0.05,0.00427270029177551,0.00159250339354599,0.000547272959729863,299,299,299 +"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993791753258781,0.0996306908158616,0.000663418600173348,0.05,0.05,0.05,0.00225111184021476,0.000852347078997076,0.000790401910570023,299,299,299 +"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996846827426244,0.0998133018950463,0.000912980664087539,0.05,0.05,0.05,0.0012367044424741,0.000412864233254358,0.000874297327878154,299,299,299 +"331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.05,0.05,0.05,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 +"332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.05,0.05,0.05,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 +"333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.05,0.05,0.05,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 +"334","IAR_LU_modified_topopro","Artery",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.05,0.05,0.05,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 +"335","IAR_LU_modified_topopro","Artery",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.05,0.05,0.05,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 +"336","IAR_LU_modified_topopro","asc lower intestine",10,0.69,0.029,0.00131,0.693578780504134,0.0415355532662142,0.00128103308321534,0.05,0.05,0.05,0.0970509533929983,0.0236823442169324,0.000819226976703706,299,299,299 +"337","IAR_LU_modified_topopro","asc lower intestine",30,0.69,0.029,0.00131,0.687810582166082,0.0307536147510959,0.0013382900074825,0.05,0.05,0.05,0.0353144143147495,0.00435917556566684,0.000286310629098516,299,299,299 +"338","IAR_LU_modified_topopro","asc lower intestine",50,0.69,0.029,0.00131,0.688721295105845,0.0296257289906534,0.00131893797782168,0.05,0.05,0.05,0.0212465084180936,0.00249048940612626,0.000169271398329773,299,299,299 +"339","IAR_LU_modified_topopro","asc lower intestine",100,0.69,0.029,0.00131,0.689845828253077,0.0290894790629384,0.001307501525805,0.05,0.05,0.05,0.0107195144339221,0.00127256025225725,8.483351662592e-05,299,299,299 +"340","IAR_LU_modified_topopro","asc lower intestine",200,0.69,0.029,0.00131,0.689825939977317,0.0290142120213539,0.00130847683836763,0.05,0.05,0.05,0.00555750265488881,0.000601294931615333,4.25435274843115e-05,299,299,299 +"341","IAR_LU_modified_topopro","Blood RA",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.05,0.05,0.05,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 +"342","IAR_LU_modified_topopro","Blood RA",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.05,0.05,0.05,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 +"343","IAR_LU_modified_topopro","Blood RA",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.05,0.05,0.05,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 +"344","IAR_LU_modified_topopro","Blood RA",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.05,0.05,0.05,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 +"345","IAR_LU_modified_topopro","Blood RA",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.05,0.05,0.05,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 +"346","IAR_LU_modified_topopro","Blood RV",10,1,0.1,0.003,0.920296650622447,0.125293033588126,0.000183447331029076,0.05,0.05,0.05,0.0226806331224816,0.0244333472528567,0.000584106662250704,299,299,299 +"347","IAR_LU_modified_topopro","Blood RV",30,1,0.1,0.003,0.974303991283049,0.106099273671618,0.000177399100029965,0.05,0.05,0.05,0.00748957829912673,0.00829547736585587,0.000678897095895847,299,299,299 +"348","IAR_LU_modified_topopro","Blood RV",50,1,0.1,0.003,0.984941578599012,0.103360682474306,0.000155910408472978,0.05,0.05,0.05,0.00447576585770208,0.00495498740401099,0.000644237899348858,299,299,299 +"349","IAR_LU_modified_topopro","Blood RV",100,1,0.1,0.003,0.992841726733044,0.101349324599851,0.000128756832432632,0.05,0.05,0.05,0.00221528951841681,0.00248392277283552,0.000596162471686369,299,299,299 +"350","IAR_LU_modified_topopro","Blood RV",200,1,0.1,0.003,0.996733416462042,0.100300501347642,0.000119817129447202,0.05,0.05,0.05,0.00117145369846812,0.00100883159979159,0.000632414305364842,299,299,299 +"351","IAR_LU_modified_topopro","desc lower intestine",10,0.69,0.029,0.00131,0.69353255335075,0.0415612047930334,0.00128569612698868,0.05,0.05,0.05,0.0970827204927868,0.0237638891843294,0.000822921583808708,299,299,299 +"352","IAR_LU_modified_topopro","desc lower intestine",30,0.69,0.029,0.00131,0.687529033131503,0.0307864248323058,0.00133992030563751,0.05,0.05,0.05,0.035340761383201,0.00434360018542071,0.00028557595909565,299,299,299 +"353","IAR_LU_modified_topopro","desc lower intestine",50,0.69,0.029,0.00131,0.688938060964252,0.0296002490456439,0.00131726956556521,0.05,0.05,0.05,0.0212284246706342,0.00247366753913384,0.000167933611102375,299,299,299 +"354","IAR_LU_modified_topopro","desc lower intestine",100,0.69,0.029,0.00131,0.689803781014276,0.0290940234426647,0.00130741787888986,0.05,0.05,0.05,0.0110120008034572,0.00127088911766303,8.45797308420218e-05,299,299,299 +"355","IAR_LU_modified_topopro","desc lower intestine",200,0.69,0.029,0.00131,0.689784230390506,0.0290189623695888,0.00130868523568613,0.05,0.05,0.05,0.00553639486233176,0.000608258415769342,4.23025595359244e-05,299,299,299 +"356","IAR_LU_modified_topopro","esophagus",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.05,0.05,0.05,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 +"357","IAR_LU_modified_topopro","esophagus",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.05,0.05,0.05,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 +"358","IAR_LU_modified_topopro","esophagus",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.05,0.05,0.05,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 +"359","IAR_LU_modified_topopro","esophagus",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.05,0.05,0.05,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 +"360","IAR_LU_modified_topopro","esophagus",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.05,0.05,0.05,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 +"361","IAR_LU_modified_topopro","esophagus cont",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.05,0.05,0.05,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 +"362","IAR_LU_modified_topopro","esophagus cont",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.05,0.05,0.05,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 +"363","IAR_LU_modified_topopro","esophagus cont",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.05,0.05,0.05,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 +"364","IAR_LU_modified_topopro","esophagus cont",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.05,0.05,0.05,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 +"365","IAR_LU_modified_topopro","esophagus cont",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.05,0.05,0.05,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 +"366","IAR_LU_modified_topopro","Left kidney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.05,0.05,0.05,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 +"367","IAR_LU_modified_topopro","Left kidney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.05,0.05,0.05,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 +"368","IAR_LU_modified_topopro","Left kidney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.05,0.05,0.05,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 +"369","IAR_LU_modified_topopro","Left kidney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.05,0.05,0.05,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 +"370","IAR_LU_modified_topopro","Left kidney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.05,0.05,0.05,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 +"371","IAR_LU_modified_topopro","left kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.05,0.05,0.05,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 +"372","IAR_LU_modified_topopro","left kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.05,0.05,0.05,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 +"373","IAR_LU_modified_topopro","left kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.05,0.05,0.05,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 +"374","IAR_LU_modified_topopro","left kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.05,0.05,0.05,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 +"375","IAR_LU_modified_topopro","left kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.05,0.05,0.05,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 +"376","IAR_LU_modified_topopro","Liver",10,0.11,0.1,0.0015,0.255827144238669,0.0957949328224053,0.00130092643991093,0.05,0.05,0.05,0.133644073612816,0.0684386590799032,0.000379476628758943,299,299,299 +"377","IAR_LU_modified_topopro","Liver",30,0.11,0.1,0.0015,0.133802596180871,0.121405497015874,0.00147252862365529,0.05,0.05,0.05,0.0323313786170407,0.0504511851101522,8.92081827197948e-05,299,299,299 +"378","IAR_LU_modified_topopro","Liver",50,0.11,0.1,0.0015,0.118729927642186,0.11773946935276,0.00148881545258651,0.05,0.05,0.05,0.0167411687834778,0.0426333639052342,4.73600868068698e-05,299,299,299 +"379","IAR_LU_modified_topopro","Liver",100,0.11,0.1,0.0015,0.112266606855168,0.105433216396753,0.00149419894599423,0.05,0.05,0.05,0.00902108432024771,0.030662316383553,2.42747200177698e-05,299,299,299 +"380","IAR_LU_modified_topopro","Liver",200,0.11,0.1,0.0015,0.110995126491855,0.0973924440504551,0.00149623920986603,0.05,0.05,0.05,0.00518590399827883,0.0106183419451747,1.20619999134246e-05,299,299,299 +"381","IAR_LU_modified_topopro","Myocardium LV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.05,0.05,0.05,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 +"382","IAR_LU_modified_topopro","Myocardium LV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.05,0.05,0.05,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 +"383","IAR_LU_modified_topopro","Myocardium LV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.05,0.05,0.05,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 +"384","IAR_LU_modified_topopro","Myocardium LV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.05,0.05,0.05,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 +"385","IAR_LU_modified_topopro","Myocardium LV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.05,0.05,0.05,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 +"386","IAR_LU_modified_topopro","myocardium ra",10,0.07,0.07,0.0015,0.233345797803224,0.0758206228669585,0.00130187536524909,0.05,0.05,0.05,0.133957644380287,0.066388571559589,0.000363650445363682,299,299,299 +"387","IAR_LU_modified_topopro","myocardium ra",30,0.07,0.07,0.0015,0.108856126532739,0.0964456670697446,0.0014567334689066,0.05,0.05,0.05,0.0440157368882964,0.0596090389915254,0.000103224107835832,299,299,299 +"388","IAR_LU_modified_topopro","myocardium ra",50,0.07,0.07,0.0015,0.0854880561907263,0.0973144944749237,0.00148281482291791,0.05,0.05,0.05,0.0207373834323344,0.0497994361924948,5.42735308861248e-05,299,299,299 +"389","IAR_LU_modified_topopro","myocardium ra",100,0.07,0.07,0.0015,0.0745374604485976,0.0807036222064792,0.00149478405306962,0.05,0.05,0.05,0.00997544057913432,0.0315117637210663,2.58398414525695e-05,299,299,299 +"390","IAR_LU_modified_topopro","myocardium ra",200,0.07,0.07,0.0015,0.070924223444913,0.0715684911066608,0.00149809258018433,0.05,0.05,0.05,0.00539980707410929,0.0133990279370298,1.28312643370667e-05,299,299,299 +"391","IAR_LU_modified_topopro","myocardium RV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.05,0.05,0.05,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 +"392","IAR_LU_modified_topopro","myocardium RV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.05,0.05,0.05,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 +"393","IAR_LU_modified_topopro","myocardium RV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.05,0.05,0.05,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 +"394","IAR_LU_modified_topopro","myocardium RV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.05,0.05,0.05,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 +"395","IAR_LU_modified_topopro","myocardium RV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.05,0.05,0.05,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 +"396","IAR_LU_modified_topopro","pancreas",10,0.15,0.01,0.00129999999999999,0.280147618787791,0.0550963471623122,0.00116554559543274,0.05,0.05,0.05,0.154200671687761,0.0601150850496964,0.000411333431647301,299,299,299 +"397","IAR_LU_modified_topopro","pancreas",30,0.15,0.01,0.00129999999999999,0.180292442524659,0.0283670218235359,0.00128220682523432,0.05,0.05,0.05,0.0758183523997101,0.0373025951640522,0.000154889895612203,299,299,299 +"398","IAR_LU_modified_topopro","pancreas",50,0.15,0.01,0.00129999999999999,0.160883491285031,0.0172849139656884,0.00130037131461184,0.05,0.05,0.05,0.0520817767720244,0.0152607616127078,0.000103316331968376,299,299,299 +"399","IAR_LU_modified_topopro","pancreas",100,0.15,0.01,0.00129999999999999,0.154976949063361,0.0120069271284118,0.00129977292515898,0.05,0.05,0.05,0.0334646725252195,0.00446344579568468,6.40649593388859e-05,299,299,299 +"400","IAR_LU_modified_topopro","pancreas",200,0.15,0.01,0.00129999999999999,0.155286959430167,0.0101428890293175,0.00129270742735421,0.05,0.05,0.05,0.0172333080337744,0.00153439739326154,3.24157917287038e-05,299,299,299 +"401","IAR_LU_modified_topopro","pericardium",10,0.07,0.00999999999999999,0.003,0.304246595967149,0.0630491156685354,0.00235482700518371,0.05,0.05,0.05,0.260685324735516,0.0637178985095701,0.000993597879656733,299,299,299 +"402","IAR_LU_modified_topopro","pericardium",30,0.07,0.00999999999999999,0.003,0.176641493642551,0.0520279343575831,0.0028348649822054,0.05,0.05,0.05,0.207967296454401,0.0596888181268739,0.000571521838568284,299,299,299 +"403","IAR_LU_modified_topopro","pericardium",50,0.07,0.00999999999999999,0.003,0.146227380203304,0.042647287703342,0.00291329895112631,0.05,0.05,0.05,0.159901072514046,0.0522232847404345,0.000369579678167213,299,299,299 +"404","IAR_LU_modified_topopro","pericardium",100,0.07,0.00999999999999999,0.003,0.137535248314898,0.0274694017620213,0.0029193188543007,0.05,0.05,0.05,0.131305938197915,0.0405847885689576,0.000236989816000259,299,299,299 +"405","IAR_LU_modified_topopro","pericardium",200,0.07,0.00999999999999999,0.003,0.106876601462374,0.0141821859583173,0.00295175861415913,0.05,0.05,0.05,0.0866370026871013,0.0154683273621364,0.000137465282729351,299,299,299 +"406","IAR_LU_modified_topopro","right kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.05,0.05,0.05,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 +"407","IAR_LU_modified_topopro","right kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.05,0.05,0.05,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 +"408","IAR_LU_modified_topopro","right kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.05,0.05,0.05,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 +"409","IAR_LU_modified_topopro","right kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.05,0.05,0.05,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 +"410","IAR_LU_modified_topopro","right kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.05,0.05,0.05,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 +"411","IAR_LU_modified_topopro","Right kydney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.05,0.05,0.05,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 +"412","IAR_LU_modified_topopro","Right kydney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.05,0.05,0.05,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 +"413","IAR_LU_modified_topopro","Right kydney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.05,0.05,0.05,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 +"414","IAR_LU_modified_topopro","Right kydney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.05,0.05,0.05,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 +"415","IAR_LU_modified_topopro","Right kydney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.05,0.05,0.05,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 +"416","IAR_LU_modified_topopro","small intestine",10,0.69,0.029,0.00131,0.694262245048376,0.041376031786243,0.00127575746503216,0.05,0.05,0.05,0.0967837138191552,0.0233612728169214,0.000821652336598365,299,299,299 +"417","IAR_LU_modified_topopro","small intestine",30,0.69,0.029,0.00131,0.687722331121821,0.0307580006808991,0.00134021784981736,0.05,0.05,0.05,0.0351426096506969,0.00435469175637002,0.000284059232762604,299,299,299 +"418","IAR_LU_modified_topopro","small intestine",50,0.69,0.029,0.00131,0.68908448667331,0.0295719444686926,0.00131656193442396,0.05,0.05,0.05,0.0214793767768495,0.00247568869798116,0.000168319670616108,299,299,299 +"419","IAR_LU_modified_topopro","small intestine",100,0.69,0.029,0.00131,0.689765613332017,0.0290940329273443,0.00130808320972436,0.05,0.05,0.05,0.0109523316691925,0.00123761959754598,8.5316967356735e-05,299,299,299 +"420","IAR_LU_modified_topopro","small intestine",200,0.69,0.029,0.00131,0.689905499433019,0.0290056437597644,0.00130824381017983,0.05,0.05,0.05,0.00544972908667523,0.000598861686247944,4.18259481209846e-05,299,299,299 +"421","IAR_LU_modified_topopro","spleen",10,0.2,0.03,0.00129999999999999,0.319868006115112,0.063392313341736,0.00114701986395022,0.05,0.05,0.05,0.127028194828194,0.0542166947340963,0.000388299783289906,299,299,299 +"422","IAR_LU_modified_topopro","spleen",30,0.2,0.03,0.00129999999999999,0.215360997563175,0.0442606501281254,0.00130354720611688,0.05,0.05,0.05,0.0365624032335726,0.0261446003020259,0.000105551124736129,299,299,299 +"423","IAR_LU_modified_topopro","spleen",50,0.2,0.03,0.00129999999999999,0.208856498625777,0.0349379828827892,0.00129997254980305,0.05,0.05,0.05,0.0232436380421739,0.0134864153624437,6.61171024217637e-05,299,299,299 +"424","IAR_LU_modified_topopro","spleen",100,0.2,0.03,0.00129999999999999,0.204200673121755,0.0304239196137196,0.00129577459955986,0.05,0.05,0.05,0.0129647113395538,0.00465726530553315,3.35882997092888e-05,299,299,299 +"425","IAR_LU_modified_topopro","spleen",200,0.2,0.03,0.00129999999999999,0.200822327913181,0.0300525395093674,0.00129839806116424,0.05,0.05,0.05,0.00653017924354621,0.00186535860535101,1.63191536785758e-05,299,299,299 +"426","IAR_LU_modified_topopro","st wall",10,0.3,0.012,0.0015,0.398249536075877,0.0414327592705561,0.0013308464645949,0.05,0.05,0.05,0.179875566567662,0.0488900917459887,0.000607086675688919,299,299,299 +"427","IAR_LU_modified_topopro","st wall",30,0.3,0.012,0.0015,0.304981866410044,0.019062815360902,0.00152406395152592,0.05,0.05,0.05,0.0863985064932302,0.0159978388575776,0.000239113806683646,299,299,299 +"428","IAR_LU_modified_topopro","st wall",50,0.3,0.012,0.0015,0.303869758313058,0.0142369519703813,0.00151399551647258,0.05,0.05,0.05,0.05621027771121,0.00488788692716998,0.000149801012378724,299,299,299 +"429","IAR_LU_modified_topopro","st wall",100,0.3,0.012,0.0015,0.305112114866144,0.0122592880475803,0.00149760569421531,0.05,0.05,0.05,0.0273933903749877,0.00163482678247482,7.13546414172466e-05,299,299,299 +"430","IAR_LU_modified_topopro","st wall",200,0.3,0.012,0.0015,0.301896746555565,0.0120195655148351,0.00149805858945093,0.05,0.05,0.05,0.0139779415391202,0.000700939984225378,3.50081487540217e-05,299,299,299 +"431","IAR_LU_modified_topopro","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.693178885237798,0.0415791676918557,0.0012877057786336,0.05,0.05,0.05,0.0968563027027587,0.0237449984222352,0.000825061448241474,299,299,299 +"432","IAR_LU_modified_topopro","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.687355419209049,0.0307945973352347,0.00134083836319301,0.05,0.05,0.05,0.0346999752926432,0.00430590939666401,0.000281486176019419,299,299,299 +"433","IAR_LU_modified_topopro","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688922163392087,0.0295911195710815,0.00131794686365502,0.05,0.05,0.05,0.0211777668762992,0.0024591080293894,0.000167887957689605,299,299,299 +"434","IAR_LU_modified_topopro","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689976252210824,0.0290643775264531,0.00130712971409723,0.05,0.05,0.05,0.0111596605740458,0.00127230067708064,8.6055448007924e-05,299,299,299 +"435","IAR_LU_modified_topopro","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689888170406535,0.0290018785916859,0.00130847256340122,0.05,0.05,0.05,0.00546502050565497,0.000593775344251464,4.23249708031501e-05,299,299,299 +"436","IAR_LU_modified_topopro","Vein",10,1,0.1,0.00299999999999999,0.920340948544868,0.125267602952588,0.000182829755987327,0.05,0.05,0.05,0.0225948248460019,0.0244450623949952,0.000583405196732458,299,299,299 +"437","IAR_LU_modified_topopro","Vein",30,1,0.1,0.00299999999999999,0.974304007878179,0.106099271208312,0.00017739920965156,0.05,0.05,0.05,0.0074896310418671,0.00829547616520967,0.000678898150509279,299,299,299 +"438","IAR_LU_modified_topopro","Vein",50,1,0.1,0.00299999999999999,0.984941554598225,0.103360680622716,0.000155910848324994,0.05,0.05,0.05,0.00447571056831266,0.00495498786932744,0.000644242026928185,299,299,299 +"439","IAR_LU_modified_topopro","Vein",100,1,0.1,0.00299999999999999,0.992841725680271,0.101349324298109,0.000128757028592843,0.05,0.05,0.05,0.00221528819623711,0.0024839226995908,0.000596162110415501,299,299,299 +"440","IAR_LU_modified_topopro","Vein",200,1,0.1,0.00299999999999999,0.996733416187604,0.100300502391623,0.000119817078027757,0.05,0.05,0.05,0.00117146069783939,0.00100883111028152,0.000632413732960071,299,299,299 +"441","IAR_LU_segmented_2step","Artery",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.05,0.05,0.05,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 +"442","IAR_LU_segmented_2step","Artery",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.05,0.05,0.05,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 +"443","IAR_LU_segmented_2step","Artery",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.05,0.05,0.05,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 +"444","IAR_LU_segmented_2step","Artery",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.05,0.05,0.05,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 +"445","IAR_LU_segmented_2step","Artery",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.05,0.05,0.05,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 +"446","IAR_LU_segmented_2step","asc lower intestine",10,0.69,0.029,0.00131,0.690373035820094,0.0320610845759972,0.00128397090175435,0.05,0.05,0.05,0.111830765201228,0.0149363990134043,0.0010310750352814,299,299,299 +"447","IAR_LU_segmented_2step","asc lower intestine",30,0.69,0.029,0.00131,0.688190385607032,0.0294222676858039,0.00132700874616123,0.05,0.05,0.05,0.0448734637691971,0.00411936458229695,0.000393814792063893,299,299,299 +"448","IAR_LU_segmented_2step","asc lower intestine",50,0.69,0.029,0.00131,0.688983137072148,0.0291736871195673,0.00131674147785283,0.05,0.05,0.05,0.0269406505113919,0.00243185752511053,0.000231513954749497,299,299,299 +"449","IAR_LU_segmented_2step","asc lower intestine",100,0.69,0.029,0.00131,0.689404252989227,0.029066163092573,0.00131311787679812,0.05,0.05,0.05,0.0134745367049808,0.00120919315577138,0.000114727932084214,299,299,299 +"450","IAR_LU_segmented_2step","asc lower intestine",200,0.69,0.029,0.00131,0.689565491171274,0.0290364333672251,0.00131259560662869,0.05,0.05,0.05,0.00673757581944161,0.000603840898929335,5.72226395519967e-05,299,299,299 +"451","IAR_LU_segmented_2step","Blood RA",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.05,0.05,0.05,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 +"452","IAR_LU_segmented_2step","Blood RA",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.05,0.05,0.05,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 +"453","IAR_LU_segmented_2step","Blood RA",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.05,0.05,0.05,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 +"454","IAR_LU_segmented_2step","Blood RA",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.05,0.05,0.05,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 +"455","IAR_LU_segmented_2step","Blood RA",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.05,0.05,0.05,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 +"456","IAR_LU_segmented_2step","Blood RV",10,1,0.1,0.003,0.921258294005175,0.0983174229498556,0.000602377539314825,0.05,0.05,0.05,0.0258235599273312,0.0048817357689704,0.000954240122896554,299,299,299 +"457","IAR_LU_segmented_2step","Blood RV",30,1,0.1,0.003,0.976019933224227,0.0994829647759296,0.000602393052438452,0.05,0.05,0.05,0.0083310126686943,0.0016038596496585,0.000954268289514534,299,299,299 +"458","IAR_LU_segmented_2step","Blood RV",50,1,0.1,0.003,0.985994872256549,0.0996813109859528,0.000602405603200741,0.05,0.05,0.05,0.00494309801013262,0.000986358092526008,0.000954266532348308,299,299,299 +"459","IAR_LU_segmented_2step","Blood RV",100,1,0.1,0.003,0.993268900338895,0.0998299735833862,0.000602442811986694,0.05,0.05,0.05,0.00241285763266283,0.00051392104017594,0.000954286483399826,299,299,299 +"460","IAR_LU_segmented_2step","Blood RV",200,1,0.1,0.003,0.996782474408774,0.0999083722401707,0.000602417326124585,0.05,0.05,0.05,0.00119135923032626,0.000267557047652887,0.000954060412685357,299,299,299 +"461","IAR_LU_segmented_2step","desc lower intestine",10,0.69,0.029,0.00131,0.690373037187929,0.032061084511974,0.0012839709016351,0.05,0.05,0.05,0.111830764423804,0.0149363990086909,0.0010310750351664,299,299,299 +"462","IAR_LU_segmented_2step","desc lower intestine",30,0.69,0.029,0.00131,0.688190385604399,0.0294222676864886,0.00132700874615634,0.05,0.05,0.05,0.0448734637614442,0.00411936458331029,0.000393814791852722,299,299,299 +"463","IAR_LU_segmented_2step","desc lower intestine",50,0.69,0.029,0.00131,0.688983137070003,0.0291736871196476,0.00131674147781799,0.05,0.05,0.05,0.0269406505267064,0.00243185752517155,0.000231513954746746,299,299,299 +"464","IAR_LU_segmented_2step","desc lower intestine",100,0.69,0.029,0.00131,0.689404252988794,0.0290661630927041,0.00131311787679321,0.05,0.05,0.05,0.0134745367105457,0.00120919315606283,0.0001147279321005,299,299,299 +"465","IAR_LU_segmented_2step","desc lower intestine",200,0.69,0.029,0.00131,0.689565491168261,0.0290364333673394,0.00131259560662137,0.05,0.05,0.05,0.00673757582228583,0.000603840898965895,5.72226395589749e-05,299,299,299 +"466","IAR_LU_segmented_2step","esophagus",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.05,0.05,0.05,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 +"467","IAR_LU_segmented_2step","esophagus",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.05,0.05,0.05,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 +"468","IAR_LU_segmented_2step","esophagus",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.05,0.05,0.05,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 +"469","IAR_LU_segmented_2step","esophagus",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.05,0.05,0.05,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 +"470","IAR_LU_segmented_2step","esophagus",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.05,0.05,0.05,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 +"471","IAR_LU_segmented_2step","esophagus cont",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.05,0.05,0.05,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 +"472","IAR_LU_segmented_2step","esophagus cont",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.05,0.05,0.05,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 +"473","IAR_LU_segmented_2step","esophagus cont",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.05,0.05,0.05,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 +"474","IAR_LU_segmented_2step","esophagus cont",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.05,0.05,0.05,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 +"475","IAR_LU_segmented_2step","esophagus cont",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.05,0.05,0.05,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 +"476","IAR_LU_segmented_2step","Left kidney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.05,0.05,0.05,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 +"477","IAR_LU_segmented_2step","Left kidney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.05,0.05,0.05,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 +"478","IAR_LU_segmented_2step","Left kidney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.05,0.05,0.05,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 +"479","IAR_LU_segmented_2step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.05,0.05,0.05,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 +"480","IAR_LU_segmented_2step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.05,0.05,0.05,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 +"481","IAR_LU_segmented_2step","left kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.05,0.05,0.05,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 +"482","IAR_LU_segmented_2step","left kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.05,0.05,0.05,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 +"483","IAR_LU_segmented_2step","left kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.05,0.05,0.05,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 +"484","IAR_LU_segmented_2step","left kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.05,0.05,0.05,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 +"485","IAR_LU_segmented_2step","left kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.05,0.05,0.05,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 +"486","IAR_LU_segmented_2step","Liver",10,0.11,0.1,0.0015,0.144577570411426,0.0600041637865293,0.00152084809188092,0.05,0.05,0.05,0.123335225696709,0.0417372816084262,0.000472993211159269,299,299,299 +"487","IAR_LU_segmented_2step","Liver",30,0.11,0.1,0.0015,0.112815078932074,0.0768823300474684,0.00150154707211704,0.05,0.05,0.05,0.0402419901201215,0.0310439867234663,0.000152137743344338,299,299,299 +"488","IAR_LU_segmented_2step","Liver",50,0.11,0.1,0.0015,0.1099576380775,0.0845663044192014,0.00150017699860271,0.05,0.05,0.05,0.0218836166694104,0.022477885458141,9.09784274199351e-05,299,299,299 +"489","IAR_LU_segmented_2step","Liver",100,0.11,0.1,0.0015,0.10944935129917,0.0916622252527853,0.00149980895512081,0.05,0.05,0.05,0.010208281089791,0.0124943171981403,4.54189474712779e-05,299,299,299 +"490","IAR_LU_segmented_2step","Liver",200,0.11,0.1,0.0015,0.109652146434559,0.0956035913947621,0.00149983471124947,0.05,0.05,0.05,0.00504024948517217,0.00673413090644371,2.26988859055568e-05,299,299,299 +"491","IAR_LU_segmented_2step","Myocardium LV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.05,0.05,0.05,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 +"492","IAR_LU_segmented_2step","Myocardium LV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.05,0.05,0.05,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 +"493","IAR_LU_segmented_2step","Myocardium LV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.05,0.05,0.05,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 +"494","IAR_LU_segmented_2step","Myocardium LV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.05,0.05,0.05,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 +"495","IAR_LU_segmented_2step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.05,0.05,0.05,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 +"496","IAR_LU_segmented_2step","myocardium ra",10,0.07,0.07,0.0015,0.119350871187795,0.0526522113471146,0.00151975238387796,0.05,0.05,0.05,0.122175673607144,0.0433817113789841,0.000451902244673881,299,299,299 +"497","IAR_LU_segmented_2step","myocardium ra",30,0.07,0.07,0.0015,0.0792678235673555,0.0630122253969336,0.00150135088654914,0.05,0.05,0.05,0.0453965721112215,0.0370205317703307,0.000145531665798083,299,299,299 +"498","IAR_LU_segmented_2step","myocardium ra",50,0.07,0.07,0.0015,0.0732403881564398,0.0670725405856644,0.00150012323561766,0.05,0.05,0.05,0.0252082854080656,0.031219546230532,8.70510202022302e-05,299,299,299 +"499","IAR_LU_segmented_2step","myocardium ra",100,0.07,0.07,0.0015,0.0706178298624483,0.0704430265419414,0.00149980568738501,0.05,0.05,0.05,0.0111951905157038,0.0218907234720239,4.34633528226247e-05,299,299,299 +"500","IAR_LU_segmented_2step","myocardium ra",200,0.07,0.07,0.0015,0.0700882021755177,0.0711624170940203,0.00149983895305835,0.05,0.05,0.05,0.00530076418974235,0.0136048479725231,2.17222536755328e-05,299,299,299 +"501","IAR_LU_segmented_2step","myocardium RV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.05,0.05,0.05,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 +"502","IAR_LU_segmented_2step","myocardium RV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.05,0.05,0.05,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 +"503","IAR_LU_segmented_2step","myocardium RV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.05,0.05,0.05,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 +"504","IAR_LU_segmented_2step","myocardium RV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.05,0.05,0.05,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 +"505","IAR_LU_segmented_2step","myocardium RV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.05,0.05,0.05,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 +"506","IAR_LU_segmented_2step","pancreas",10,0.15,0.01,0.00129999999999999,0.167366769534782,0.0306978926979998,0.00134733544815708,0.05,0.05,0.05,0.138138076806016,0.0353119819659889,0.000431649675978663,299,299,299 +"507","IAR_LU_segmented_2step","pancreas",30,0.15,0.01,0.00129999999999999,0.141203985588467,0.0176354726093115,0.00133082551202286,0.05,0.05,0.05,0.0600511085386784,0.0196812578308465,0.000139043274945453,299,299,299 +"508","IAR_LU_segmented_2step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697420917372,0.0134860811681421,0.00132993185853207,0.05,0.05,0.05,0.0376186380241066,0.00990391939690809,8.31806812154377e-05,299,299,299 +"509","IAR_LU_segmented_2step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323219863,0.0115476660390234,0.00132978575875502,0.05,0.05,0.05,0.0195144380514801,0.00241788894796007,4.15321586456171e-05,299,299,299 +"510","IAR_LU_segmented_2step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024845707517,0.0112236005383082,0.00132987961477637,0.05,0.05,0.05,0.00985292081870204,0.00107217148365358,2.07569285081239e-05,299,299,299 +"511","IAR_LU_segmented_2step","pericardium",10,0.07,0.00999999999999999,0.003,0.22320565207551,0.0265364476482412,0.00273701082230784,0.05,0.05,0.05,0.23206537977111,0.0359088326115604,0.00088504212200084,299,299,299 +"512","IAR_LU_segmented_2step","pericardium",30,0.07,0.00999999999999999,0.003,0.104347274972772,0.0256374434531395,0.00304612925895245,0.05,0.05,0.05,0.114261684103799,0.0332933654950249,0.00039105626191339,299,299,299 +"513","IAR_LU_segmented_2step","pericardium",50,0.07,0.00999999999999999,0.003,0.0814011586963573,0.0244933209869785,0.00304009046144298,0.05,0.05,0.05,0.0795667664506302,0.0304103420804633,0.000238152536499515,299,299,299 +"514","IAR_LU_segmented_2step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642156773233244,0.0204405944701307,0.00303324788669806,0.05,0.05,0.05,0.0448553819665871,0.0232832527732592,0.000118500604743613,299,299,299 +"515","IAR_LU_segmented_2step","pericardium",200,0.07,0.00999999999999999,0.003,0.0580112863869371,0.0143446319848522,0.00303117957616411,0.05,0.05,0.05,0.0239540291900973,0.00980730019759861,5.91963411917844e-05,299,299,299 +"516","IAR_LU_segmented_2step","right kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.05,0.05,0.05,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 +"517","IAR_LU_segmented_2step","right kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.05,0.05,0.05,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 +"518","IAR_LU_segmented_2step","right kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.05,0.05,0.05,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 +"519","IAR_LU_segmented_2step","right kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.05,0.05,0.05,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 +"520","IAR_LU_segmented_2step","right kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.05,0.05,0.05,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 +"521","IAR_LU_segmented_2step","Right kydney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.05,0.05,0.05,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 +"522","IAR_LU_segmented_2step","Right kydney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.05,0.05,0.05,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 +"523","IAR_LU_segmented_2step","Right kydney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.05,0.05,0.05,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 +"524","IAR_LU_segmented_2step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.05,0.05,0.05,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 +"525","IAR_LU_segmented_2step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.05,0.05,0.05,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 +"526","IAR_LU_segmented_2step","small intestine",10,0.69,0.029,0.00131,0.690373037070898,0.0320610845226397,0.00128397090175435,0.05,0.05,0.05,0.111830764549477,0.0149363990351109,0.0010310750352814,299,299,299 +"527","IAR_LU_segmented_2step","small intestine",30,0.69,0.029,0.00131,0.688190385608461,0.0294222676855826,0.00132700874616123,0.05,0.05,0.05,0.0448734637901488,0.00411936458263747,0.000393814792063893,299,299,299 +"528","IAR_LU_segmented_2step","small intestine",50,0.69,0.029,0.00131,0.68898313707029,0.0291736871197262,0.00131674147785283,0.05,0.05,0.05,0.0269406505091751,0.00243185752491584,0.000231513954749497,299,299,299 +"529","IAR_LU_segmented_2step","small intestine",100,0.69,0.029,0.00131,0.68940425299248,0.0290661630924925,0.00131311787679812,0.05,0.05,0.05,0.0134745367108107,0.00120919315590461,0.000114727932084214,299,299,299 +"530","IAR_LU_segmented_2step","small intestine",200,0.69,0.029,0.00131,0.689565491157383,0.0290364333708514,0.00131259560662869,0.05,0.05,0.05,0.00673757580906278,0.000603840896646575,5.72226395519967e-05,299,299,299 +"531","IAR_LU_segmented_2step","spleen",10,0.2,0.03,0.00129999999999999,0.224602362890799,0.0422543737942781,0.00131869223769686,0.05,0.05,0.05,0.127234911609303,0.0341611217172608,0.000459161541284809,299,299,299 +"532","IAR_LU_segmented_2step","spleen",30,0.2,0.03,0.00129999999999999,0.203576863495816,0.0339539200173157,0.00130108907088979,0.05,0.05,0.05,0.044331214464624,0.017617566481108,0.000147366538355311,299,299,299 +"533","IAR_LU_segmented_2step","spleen",50,0.2,0.03,0.00129999999999999,0.201083469438403,0.0314320549693185,0.00130009526398064,0.05,0.05,0.05,0.0264945321235979,0.00973436499772472,8.81308203353264e-05,299,299,299 +"534","IAR_LU_segmented_2step","spleen",100,0.2,0.03,0.00129999999999999,0.20007115163649,0.0303418337778117,0.001299928493873,0.05,0.05,0.05,0.0131754362709165,0.00435303846028546,4.39969723252588e-05,299,299,299 +"535","IAR_LU_segmented_2step","spleen",200,0.2,0.03,0.00129999999999999,0.199885784150361,0.0301070126211822,0.00130002911399547,0.05,0.05,0.05,0.00657087134211547,0.00215138858402903,2.19877335574001e-05,299,299,299 +"536","IAR_LU_segmented_2step","st wall",10,0.3,0.012,0.0015,0.297910726506523,0.0238987755166635,0.00157773932710541,0.05,0.05,0.05,0.166898578530855,0.026413197787185,0.000614593950499859,299,299,299 +"537","IAR_LU_segmented_2step","st wall",30,0.3,0.012,0.0015,0.283533465909088,0.0146267868916472,0.00155214816764873,0.05,0.05,0.05,0.0667707036118569,0.0078453694765802,0.00019551156370717,299,299,299 +"538","IAR_LU_segmented_2step","st wall",50,0.3,0.012,0.0015,0.282913643368102,0.0133565032690983,0.00154952132488848,0.05,0.05,0.05,0.0412585327424046,0.0029662403323633,0.00011668052444887,299,299,299 +"539","IAR_LU_segmented_2step","st wall",100,0.3,0.012,0.0015,0.282957489855073,0.0129414790127824,0.0015486735829641,0.05,0.05,0.05,0.0209295866586312,0.00131275199125169,5.81996976856253e-05,299,299,299 +"540","IAR_LU_segmented_2step","st wall",200,0.3,0.012,0.0015,0.283111805846317,0.0128396414258269,0.00154860379618769,0.05,0.05,0.05,0.010504025040381,0.000633726930733129,2.90796048726369e-05,299,299,299 +"541","IAR_LU_segmented_2step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69037303749125,0.0320610844836358,0.00128397090178629,0.05,0.05,0.05,0.111830763771563,0.0149363989976124,0.00103107503559299,299,299,299 +"542","IAR_LU_segmented_2step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190385593539,0.0294222676872454,0.00132700874615982,0.05,0.05,0.05,0.0448734637558478,0.00411936458168369,0.000393814791967693,299,299,299 +"543","IAR_LU_segmented_2step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.68898313706239,0.0291736871209134,0.00131674147788471,0.05,0.05,0.05,0.0269406505338101,0.0024318575254413,0.000231513954838717,299,299,299 +"544","IAR_LU_segmented_2step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404252989508,0.0290661630925507,0.00131311787679501,0.05,0.05,0.05,0.0134745367049696,0.00120919315574895,0.000114727932099834,299,299,299 +"545","IAR_LU_segmented_2step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565491165205,0.0290364333675362,0.0013125956066485,0.05,0.05,0.05,0.00673757582406111,0.000603840899001961,5.72226395704009e-05,299,299,299 +"546","IAR_LU_segmented_2step","Vein",10,1,0.1,0.00299999999999999,0.921258294006205,0.0983174229514582,0.000602377539365262,0.05,0.05,0.05,0.0258235599431163,0.00488173576858925,0.000954240122974581,299,299,299 +"547","IAR_LU_segmented_2step","Vein",30,1,0.1,0.00299999999999999,0.976019933221361,0.0994829647765158,0.00060239305244365,0.05,0.05,0.05,0.00833101267682292,0.00160385964963576,0.000954268289514292,299,299,299 +"548","IAR_LU_segmented_2step","Vein",50,1,0.1,0.00299999999999999,0.98599487225747,0.0996813109862223,0.000602405603200741,0.05,0.05,0.05,0.00494309800725367,0.00098635809134973,0.000954266532348308,299,299,299 +"549","IAR_LU_segmented_2step","Vein",100,1,0.1,0.00299999999999999,0.993268900336901,0.0998299735834051,0.000602442811986694,0.05,0.05,0.05,0.00241285763307656,0.000513921040160147,0.000954286483399826,299,299,299 +"550","IAR_LU_segmented_2step","Vein",200,1,0.1,0.00299999999999999,0.996782474408715,0.099908372240112,0.000602417326124585,0.05,0.05,0.05,0.00119135923034317,0.00026755704762974,0.000954060412685357,299,299,299 +"551","IAR_LU_segmented_3step","Artery",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.05,0.05,0.05,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 +"552","IAR_LU_segmented_3step","Artery",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.05,0.05,0.05,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 +"553","IAR_LU_segmented_3step","Artery",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.05,0.05,0.05,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 +"554","IAR_LU_segmented_3step","Artery",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.05,0.05,0.05,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 +"555","IAR_LU_segmented_3step","Artery",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.05,0.05,0.05,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 +"556","IAR_LU_segmented_3step","asc lower intestine",10,0.69,0.029,0.00131,0.690372912460308,0.0320609988287597,0.00128397090175435,0.05,0.05,0.05,0.111831070178776,0.0149362639331092,0.0010310750352814,299,299,299 +"557","IAR_LU_segmented_3step","asc lower intestine",30,0.69,0.029,0.00131,0.688190453018247,0.0294222458071772,0.00132700874616123,0.05,0.05,0.05,0.0448734379198449,0.00411935738276174,0.000393814792063893,299,299,299 +"558","IAR_LU_segmented_3step","asc lower intestine",50,0.69,0.029,0.00131,0.688983156886655,0.0291736810771982,0.00131674147785283,0.05,0.05,0.05,0.0269406517217619,0.00243185875713279,0.000231513954749497,299,299,299 +"559","IAR_LU_segmented_3step","asc lower intestine",100,0.69,0.029,0.00131,0.689404263283331,0.029066159884122,0.00131311787679812,0.05,0.05,0.05,0.013474531543109,0.00120919095640661,0.000114727932084214,299,299,299 +"560","IAR_LU_segmented_3step","asc lower intestine",200,0.69,0.029,0.00131,0.689565493192121,0.0290364327596902,0.00131259560662869,0.05,0.05,0.05,0.00673757540019296,0.000603840709682258,5.72226395519967e-05,299,299,299 +"561","IAR_LU_segmented_3step","Blood RA",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.05,0.05,0.05,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 +"562","IAR_LU_segmented_3step","Blood RA",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.05,0.05,0.05,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 +"563","IAR_LU_segmented_3step","Blood RA",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.05,0.05,0.05,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 +"564","IAR_LU_segmented_3step","Blood RA",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.05,0.05,0.05,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 +"565","IAR_LU_segmented_3step","Blood RA",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.05,0.05,0.05,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 +"566","IAR_LU_segmented_3step","Blood RV",10,1,0.1,0.003,0.921258295752512,0.0983173943497697,0.000602377539314825,0.05,0.05,0.05,0.0258235874592633,0.00488176105309786,0.000954240122896554,299,299,299 +"567","IAR_LU_segmented_3step","Blood RV",30,1,0.1,0.003,0.976019921589139,0.0994829388944177,0.000602393052438452,0.05,0.05,0.05,0.00833093061417054,0.00160385306136018,0.000954268289514534,299,299,299 +"568","IAR_LU_segmented_3step","Blood RV",50,1,0.1,0.003,0.985994865012998,0.0996813363124673,0.000602405603200741,0.05,0.05,0.05,0.00494311872708252,0.000986368951628139,0.000954266532348308,299,299,299 +"569","IAR_LU_segmented_3step","Blood RV",100,1,0.1,0.003,0.993268930010737,0.0998299053836721,0.000602442811986694,0.05,0.05,0.05,0.00241282801400462,0.00051390736455086,0.000954286483399826,299,299,299 +"570","IAR_LU_segmented_3step","Blood RV",200,1,0.1,0.003,0.996782670893716,0.0999081619681687,0.000602417326124585,0.05,0.05,0.05,0.00119125287335306,0.000267526451785148,0.000954060412685357,299,299,299 +"571","IAR_LU_segmented_3step","desc lower intestine",10,0.69,0.029,0.00131,0.690372912834237,0.0320609988208121,0.0012839709016351,0.05,0.05,0.05,0.111831069984292,0.014936263933469,0.0010310750351664,299,299,299 +"572","IAR_LU_segmented_3step","desc lower intestine",30,0.69,0.029,0.00131,0.688190453039754,0.0294222458055492,0.00132700874615634,0.05,0.05,0.05,0.0448734379014875,0.00411935738152716,0.000393814791852722,299,299,299 +"573","IAR_LU_segmented_3step","desc lower intestine",50,0.69,0.029,0.00131,0.68898315689181,0.0291736810768264,0.00131674147781799,0.05,0.05,0.05,0.026940651717003,0.00243185875705343,0.000231513954746746,299,299,299 +"574","IAR_LU_segmented_3step","desc lower intestine",100,0.69,0.029,0.00131,0.689404263283869,0.0290661598843801,0.00131311787679321,0.05,0.05,0.05,0.0134745315463702,0.00120919095682723,0.0001147279321005,299,299,299 +"575","IAR_LU_segmented_3step","desc lower intestine",200,0.69,0.029,0.00131,0.689565493196492,0.0290364327594458,0.00131259560662137,0.05,0.05,0.05,0.00673757540289692,0.000603840709761317,5.72226395589749e-05,299,299,299 +"576","IAR_LU_segmented_3step","esophagus",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.05,0.05,0.05,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 +"577","IAR_LU_segmented_3step","esophagus",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.05,0.05,0.05,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 +"578","IAR_LU_segmented_3step","esophagus",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.05,0.05,0.05,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 +"579","IAR_LU_segmented_3step","esophagus",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.05,0.05,0.05,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 +"580","IAR_LU_segmented_3step","esophagus",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.05,0.05,0.05,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 +"581","IAR_LU_segmented_3step","esophagus cont",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.05,0.05,0.05,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 +"582","IAR_LU_segmented_3step","esophagus cont",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.05,0.05,0.05,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 +"583","IAR_LU_segmented_3step","esophagus cont",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.05,0.05,0.05,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 +"584","IAR_LU_segmented_3step","esophagus cont",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.05,0.05,0.05,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 +"585","IAR_LU_segmented_3step","esophagus cont",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.05,0.05,0.05,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 +"586","IAR_LU_segmented_3step","Left kidney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.05,0.05,0.05,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 +"587","IAR_LU_segmented_3step","Left kidney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.05,0.05,0.05,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 +"588","IAR_LU_segmented_3step","Left kidney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.05,0.05,0.05,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 +"589","IAR_LU_segmented_3step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.05,0.05,0.05,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 +"590","IAR_LU_segmented_3step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.05,0.05,0.05,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 +"591","IAR_LU_segmented_3step","left kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.05,0.05,0.05,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 +"592","IAR_LU_segmented_3step","left kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.05,0.05,0.05,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 +"593","IAR_LU_segmented_3step","left kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.05,0.05,0.05,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 +"594","IAR_LU_segmented_3step","left kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.05,0.05,0.05,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 +"595","IAR_LU_segmented_3step","left kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.05,0.05,0.05,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 +"596","IAR_LU_segmented_3step","Liver",10,0.11,0.1,0.0015,0.146082882050709,0.0559478804902679,0.00152084809188092,0.05,0.05,0.05,0.12417523764379,0.0423510319114557,0.000472993211159269,299,299,299 +"597","IAR_LU_segmented_3step","Liver",30,0.11,0.1,0.0015,0.113015747107183,0.0764337988942673,0.00150154707211704,0.05,0.05,0.05,0.0404962619170089,0.0315961478906252,0.000152137743344338,299,299,299 +"598","IAR_LU_segmented_3step","Liver",50,0.11,0.1,0.0015,0.109957685341215,0.0845663398058661,0.00150017699860271,0.05,0.05,0.05,0.0218837188774183,0.0224781408265878,9.09784274199351e-05,299,299,299 +"599","IAR_LU_segmented_3step","Liver",100,0.11,0.1,0.0015,0.109449356101409,0.0916623226685859,0.00149980895512081,0.05,0.05,0.05,0.0102082812165326,0.0124943114146282,4.54189474712779e-05,299,299,299 +"600","IAR_LU_segmented_3step","Liver",200,0.11,0.1,0.0015,0.109652152384101,0.0956036971815278,0.00149983471124947,0.05,0.05,0.05,0.00504025274062746,0.00673413785148666,2.26988859055568e-05,299,299,299 +"601","IAR_LU_segmented_3step","Myocardium LV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.05,0.05,0.05,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 +"602","IAR_LU_segmented_3step","Myocardium LV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.05,0.05,0.05,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 +"603","IAR_LU_segmented_3step","Myocardium LV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.05,0.05,0.05,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 +"604","IAR_LU_segmented_3step","Myocardium LV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.05,0.05,0.05,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 +"605","IAR_LU_segmented_3step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.05,0.05,0.05,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 +"606","IAR_LU_segmented_3step","myocardium ra",10,0.07,0.07,0.0015,0.120487721848812,0.0474274141714872,0.00151975238387796,0.05,0.05,0.05,0.12292676009053,0.0432757721627324,0.000451902244673881,299,299,299 +"607","IAR_LU_segmented_3step","myocardium ra",30,0.07,0.07,0.0015,0.0794953920685382,0.061701170887567,0.00150135088654914,0.05,0.05,0.05,0.0456443486701864,0.0375179871485709,0.000145531665798083,299,299,299 +"608","IAR_LU_segmented_3step","myocardium ra",50,0.07,0.07,0.0015,0.0733075060795099,0.0668946641370623,0.00150012323561766,0.05,0.05,0.05,0.0253334139193964,0.0313903609700114,8.70510202022302e-05,299,299,299 +"609","IAR_LU_segmented_3step","myocardium ra",100,0.07,0.07,0.0015,0.0706178530327893,0.0704430355516514,0.00149980568738501,0.05,0.05,0.05,0.0111952191897268,0.0218910314178087,4.34633528226247e-05,299,299,299 +"610","IAR_LU_segmented_3step","myocardium ra",200,0.07,0.07,0.0015,0.0700882022200132,0.0711624063551851,0.00149983895305835,0.05,0.05,0.05,0.00530076622265709,0.0136048747365511,2.17222536755328e-05,299,299,299 +"611","IAR_LU_segmented_3step","myocardium RV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.05,0.05,0.05,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 +"612","IAR_LU_segmented_3step","myocardium RV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.05,0.05,0.05,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 +"613","IAR_LU_segmented_3step","myocardium RV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.05,0.05,0.05,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 +"614","IAR_LU_segmented_3step","myocardium RV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.05,0.05,0.05,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 +"615","IAR_LU_segmented_3step","myocardium RV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.05,0.05,0.05,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 +"616","IAR_LU_segmented_3step","pancreas",10,0.15,0.01,0.00129999999999999,0.167876087744328,0.0290823779532465,0.00134733544815708,0.05,0.05,0.05,0.13799145865135,0.0341902078471574,0.000431649675978663,299,299,299 +"617","IAR_LU_segmented_3step","pancreas",30,0.15,0.01,0.00129999999999999,0.141237488923537,0.0173188232665482,0.00133082551202286,0.05,0.05,0.05,0.0599867928753009,0.019107620391262,0.000139043274945453,299,299,299 +"618","IAR_LU_segmented_3step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697382006501,0.013486111899636,0.00132993185853207,0.05,0.05,0.05,0.0376187112217656,0.00990407677614883,8.31806812154377e-05,299,299,299 +"619","IAR_LU_segmented_3step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323640244,0.0115476620033599,0.00132978575875502,0.05,0.05,0.05,0.019514431169108,0.00241787556317726,4.15321586456171e-05,299,299,299 +"620","IAR_LU_segmented_3step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024834420005,0.0112236045300272,0.00132987961477637,0.05,0.05,0.05,0.00985291999759062,0.00107217005947319,2.07569285081239e-05,299,299,299 +"621","IAR_LU_segmented_3step","pericardium",10,0.07,0.00999999999999999,0.003,0.226261705952676,0.0237795489644494,0.00273701082230784,0.05,0.05,0.05,0.232027240194557,0.0336731897895805,0.00088504212200084,299,299,299 +"622","IAR_LU_segmented_3step","pericardium",30,0.07,0.00999999999999999,0.003,0.104611777513852,0.0196860800407026,0.00304612925895245,0.05,0.05,0.05,0.114299017507708,0.0278397487831849,0.00039105626191339,299,299,299 +"623","IAR_LU_segmented_3step","pericardium",50,0.07,0.00999999999999999,0.003,0.0816066699634704,0.0194934718185086,0.00304009046144298,0.05,0.05,0.05,0.0795483736488436,0.0250992834625371,0.000238152536499515,299,299,299 +"624","IAR_LU_segmented_3step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642026522852465,0.0194902394274878,0.00303324788669806,0.05,0.05,0.05,0.0448738243520826,0.0219106454708596,0.000118500604743613,299,299,299 +"625","IAR_LU_segmented_3step","pericardium",200,0.07,0.00999999999999999,0.003,0.058011320597936,0.0143446673004006,0.00303117957616411,0.05,0.05,0.05,0.0239540324724296,0.00980769094663703,5.91963411917844e-05,299,299,299 +"626","IAR_LU_segmented_3step","right kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.05,0.05,0.05,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 +"627","IAR_LU_segmented_3step","right kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.05,0.05,0.05,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 +"628","IAR_LU_segmented_3step","right kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.05,0.05,0.05,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 +"629","IAR_LU_segmented_3step","right kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.05,0.05,0.05,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 +"630","IAR_LU_segmented_3step","right kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.05,0.05,0.05,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 +"631","IAR_LU_segmented_3step","Right kydney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.05,0.05,0.05,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 +"632","IAR_LU_segmented_3step","Right kydney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.05,0.05,0.05,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 +"633","IAR_LU_segmented_3step","Right kydney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.05,0.05,0.05,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 +"634","IAR_LU_segmented_3step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.05,0.05,0.05,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 +"635","IAR_LU_segmented_3step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.05,0.05,0.05,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 +"636","IAR_LU_segmented_3step","small intestine",10,0.69,0.029,0.00131,0.690372912356873,0.0320609988950055,0.00128397090175435,0.05,0.05,0.05,0.111831070379349,0.0149362639486584,0.0010310750352814,299,299,299 +"637","IAR_LU_segmented_3step","small intestine",30,0.69,0.029,0.00131,0.688190453015561,0.0294222458063855,0.00132700874616123,0.05,0.05,0.05,0.0448734379425795,0.00411935738385784,0.000393814792063893,299,299,299 +"638","IAR_LU_segmented_3step","small intestine",50,0.69,0.029,0.00131,0.688983156880932,0.0291736810769727,0.00131674147785283,0.05,0.05,0.05,0.026940651716611,0.00243185875699742,0.000231513954749497,299,299,299 +"639","IAR_LU_segmented_3step","small intestine",100,0.69,0.029,0.00131,0.689404263282608,0.0290661598842716,0.00131311787679812,0.05,0.05,0.05,0.0134745315497881,0.00120919095739295,0.000114727932084214,299,299,299 +"640","IAR_LU_segmented_3step","small intestine",200,0.69,0.029,0.00131,0.68956549319335,0.0290364327596369,0.00131259560662869,0.05,0.05,0.05,0.00673757540024816,0.000603840709655209,5.72226395519967e-05,299,299,299 +"641","IAR_LU_segmented_3step","spleen",10,0.2,0.03,0.00129999999999999,0.225215079244018,0.0408475941745436,0.00131869223769686,0.05,0.05,0.05,0.127374549590845,0.0338321181453734,0.000459161541284809,299,299,299 +"642","IAR_LU_segmented_3step","spleen",30,0.2,0.03,0.00129999999999999,0.203576978248672,0.0339539416807976,0.00130108907088979,0.05,0.05,0.05,0.0443312368356655,0.0176179137760107,0.000147366538355311,299,299,299 +"643","IAR_LU_segmented_3step","spleen",50,0.2,0.03,0.00129999999999999,0.201083539263729,0.0314319351028402,0.00130009526398064,0.05,0.05,0.05,0.026494577015459,0.0097343797369095,8.81308203353264e-05,299,299,299 +"644","IAR_LU_segmented_3step","spleen",100,0.2,0.03,0.00129999999999999,0.200071168884838,0.0303418014706331,0.001299928493873,0.05,0.05,0.05,0.0131754519827359,0.00435303381837777,4.39969723252588e-05,299,299,299 +"645","IAR_LU_segmented_3step","spleen",200,0.2,0.03,0.00129999999999999,0.199885789613915,0.0301070023107681,0.00130002911399547,0.05,0.05,0.05,0.00657087505150261,0.00215139132638464,2.19877335574001e-05,299,299,299 +"646","IAR_LU_segmented_3step","st wall",10,0.3,0.012,0.0015,0.298324938833872,0.0239344077578617,0.00157773932710541,0.05,0.05,0.05,0.16670974705843,0.0264709436324007,0.000614593950499859,299,299,299 +"647","IAR_LU_segmented_3step","st wall",30,0.3,0.012,0.0015,0.283533448008898,0.0146267906410416,0.00155214816764873,0.05,0.05,0.05,0.0667707702398052,0.00784535598914983,0.00019551156370717,299,299,299 +"648","IAR_LU_segmented_3step","st wall",50,0.3,0.012,0.0015,0.282913610595332,0.013356509669699,0.00154952132488848,0.05,0.05,0.05,0.0412585585926891,0.00296623318505363,0.00011668052444887,299,299,299 +"649","IAR_LU_segmented_3step","st wall",100,0.3,0.012,0.0015,0.282957467763654,0.0129414830257878,0.0015486735829641,0.05,0.05,0.05,0.0209295851952189,0.0013127509371942,5.81996976856253e-05,299,299,299 +"650","IAR_LU_segmented_3step","st wall",200,0.3,0.012,0.0015,0.283111796582806,0.0128396431053783,0.00154860379618769,0.05,0.05,0.05,0.0105040225309021,0.000633726038726297,2.90796048726369e-05,299,299,299 +"651","IAR_LU_segmented_3step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.690372912514732,0.0320609988154312,0.00128397090178629,0.05,0.05,0.05,0.11183107022349,0.0149362639063537,0.00103107503559299,299,299,299 +"652","IAR_LU_segmented_3step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190453028525,0.0294222458062765,0.00132700874615982,0.05,0.05,0.05,0.0448734379048314,0.00411935738241528,0.000393814791967693,299,299,299 +"653","IAR_LU_segmented_3step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688983156885389,0.0291736810770989,0.00131674147788471,0.05,0.05,0.05,0.0269406517148853,0.00243185875753381,0.000231513954838717,299,299,299 +"654","IAR_LU_segmented_3step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404263284667,0.0290661598842918,0.00131311787679501,0.05,0.05,0.05,0.0134745315495576,0.00120919095747282,0.000114727932099834,299,299,299 +"655","IAR_LU_segmented_3step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565493192237,0.0290364327597635,0.0013125956066485,0.05,0.05,0.05,0.00673757540531011,0.000603840709857747,5.72226395704009e-05,299,299,299 +"656","IAR_LU_segmented_3step","Vein",10,1,0.1,0.00299999999999999,0.921258295769297,0.0983173943529829,0.000602377539365262,0.05,0.05,0.05,0.0258235874429731,0.00488176105242994,0.000954240122974581,299,299,299 +"657","IAR_LU_segmented_3step","Vein",30,1,0.1,0.00299999999999999,0.976019921590824,0.099482938894657,0.00060239305244365,0.05,0.05,0.05,0.00833093061148117,0.00160385306162368,0.000954268289514292,299,299,299 +"658","IAR_LU_segmented_3step","Vein",50,1,0.1,0.00299999999999999,0.985994865012448,0.0996813363124073,0.000602405603200741,0.05,0.05,0.05,0.00494311872646144,0.000986368952043478,0.000954266532348308,299,299,299 +"659","IAR_LU_segmented_3step","Vein",100,1,0.1,0.00299999999999999,0.993268929663768,0.0998299060636546,0.000602442811986694,0.05,0.05,0.05,0.00241282790462813,0.000513906117480587,0.000954286483399826,299,299,299 +"660","IAR_LU_segmented_3step","Vein",200,1,0.1,0.00299999999999999,0.996782670893754,0.099908161968246,0.000602417326124585,0.05,0.05,0.05,0.00119125287281276,0.00026752645150961,0.000954060412685357,299,299,299 +"661","IAR_LU_subtracted","Artery",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.05,0.05,0.05,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 +"662","IAR_LU_subtracted","Artery",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.05,0.05,0.05,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 +"663","IAR_LU_subtracted","Artery",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.05,0.05,0.05,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 +"664","IAR_LU_subtracted","Artery",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.05,0.05,0.05,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 +"665","IAR_LU_subtracted","Artery",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.05,0.05,0.05,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 +"666","IAR_LU_subtracted","asc lower intestine",10,0.69,0.029,0.00131,0.649071571634918,0.0374643243946707,0.00128397090175435,0.05,0.05,0.05,0.187010914797289,0.0225038113704148,0.0010310750352814,299,299,299 +"667","IAR_LU_subtracted","asc lower intestine",30,0.69,0.029,0.00131,0.681939176199502,0.0302945345470063,0.00132700874616123,0.05,0.05,0.05,0.0603891142506458,0.00615614452380217,0.000393814792063893,299,299,299 +"668","IAR_LU_subtracted","asc lower intestine",50,0.69,0.029,0.00131,0.686488325346289,0.0294805288041424,0.00131674147785283,0.05,0.05,0.05,0.0350265291359118,0.00317717209134006,0.000231513954749497,299,299,299 +"669","IAR_LU_subtracted","asc lower intestine",100,0.69,0.029,0.00131,0.688499643316709,0.0291663813610362,0.00131311787679812,0.05,0.05,0.05,0.0172978748913048,0.00151214165314084,0.000114727932084214,299,299,299 +"670","IAR_LU_subtracted","asc lower intestine",200,0.69,0.029,0.00131,0.689091142138651,0.0290838262951937,0.00131259560662869,0.05,0.05,0.05,0.00862471112757458,0.000746769041441657,5.72226395519967e-05,299,299,299 +"671","IAR_LU_subtracted","Blood RA",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.05,0.05,0.05,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 +"672","IAR_LU_subtracted","Blood RA",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.05,0.05,0.05,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 +"673","IAR_LU_subtracted","Blood RA",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.05,0.05,0.05,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 +"674","IAR_LU_subtracted","Blood RA",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.05,0.05,0.05,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 +"675","IAR_LU_subtracted","Blood RA",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.05,0.05,0.05,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 +"676","IAR_LU_subtracted","Blood RV",10,1,0.1,0.003,0.868045922388077,0.0985985293170771,0.000602377539314825,0.05,0.05,0.05,0.112435321636501,0.00440048348198392,0.000954240122896554,299,299,299 +"677","IAR_LU_subtracted","Blood RV",30,1,0.1,0.003,0.957942477946737,0.0996184418317999,0.000602393052438452,0.05,0.05,0.05,0.033447334956949,0.00133438593586357,0.000954268289514534,299,299,299 +"678","IAR_LU_subtracted","Blood RV",50,1,0.1,0.003,0.974974772688138,0.0997749955437326,0.000602405603200741,0.05,0.05,0.05,0.0196506919536509,0.000799331220799176,0.000954266532348308,299,299,299 +"679","IAR_LU_subtracted","Blood RV",100,1,0.1,0.003,0.987563371296049,0.0998909406438783,0.000602442811986694,0.05,0.05,0.05,0.00967550352526221,0.000393844437553459,0.000954286483399826,299,299,299 +"680","IAR_LU_subtracted","Blood RV",200,1,0.1,0.003,0.993800432483625,0.0999475578955035,0.000602417326124585,0.05,0.05,0.05,0.00480131473462409,0.000192683440854932,0.000954060412685357,299,299,299 +"681","IAR_LU_subtracted","desc lower intestine",10,0.69,0.029,0.00131,0.649071571625974,0.0374643243918038,0.0012839709016351,0.05,0.05,0.05,0.187010914855941,0.0225038113819589,0.0010310750351664,299,299,299 +"682","IAR_LU_subtracted","desc lower intestine",30,0.69,0.029,0.00131,0.681939176203194,0.030294534546328,0.00132700874615634,0.05,0.05,0.05,0.0603891142121709,0.00615614452364872,0.000393814791852722,299,299,299 +"683","IAR_LU_subtracted","desc lower intestine",50,0.69,0.029,0.00131,0.686488325351207,0.0294805288036491,0.00131674147781799,0.05,0.05,0.05,0.0350265291360364,0.00317717209129982,0.000231513954746746,299,299,299 +"684","IAR_LU_subtracted","desc lower intestine",100,0.69,0.029,0.00131,0.688499643317253,0.029166381360917,0.00131311787679321,0.05,0.05,0.05,0.0172978748932321,0.00151214165342676,0.0001147279321005,299,299,299 +"685","IAR_LU_subtracted","desc lower intestine",200,0.69,0.029,0.00131,0.689091142140118,0.02908382629515,0.00131259560662137,0.05,0.05,0.05,0.00862471112793025,0.000746769041292778,5.72226395589749e-05,299,299,299 +"686","IAR_LU_subtracted","esophagus",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.05,0.05,0.05,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 +"687","IAR_LU_subtracted","esophagus",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.05,0.05,0.05,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 +"688","IAR_LU_subtracted","esophagus",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.05,0.05,0.05,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 +"689","IAR_LU_subtracted","esophagus",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.05,0.05,0.05,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 +"690","IAR_LU_subtracted","esophagus",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.05,0.05,0.05,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 +"691","IAR_LU_subtracted","esophagus cont",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.05,0.05,0.05,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 +"692","IAR_LU_subtracted","esophagus cont",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.05,0.05,0.05,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 +"693","IAR_LU_subtracted","esophagus cont",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.05,0.05,0.05,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 +"694","IAR_LU_subtracted","esophagus cont",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.05,0.05,0.05,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 +"695","IAR_LU_subtracted","esophagus cont",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.05,0.05,0.05,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 +"696","IAR_LU_subtracted","Left kidney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.05,0.05,0.05,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 +"697","IAR_LU_subtracted","Left kidney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.05,0.05,0.05,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 +"698","IAR_LU_subtracted","Left kidney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.05,0.05,0.05,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 +"699","IAR_LU_subtracted","Left kidney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.05,0.05,0.05,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 +"700","IAR_LU_subtracted","Left kidney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.05,0.05,0.05,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 +"701","IAR_LU_subtracted","left kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.05,0.05,0.05,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 +"702","IAR_LU_subtracted","left kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.05,0.05,0.05,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 +"703","IAR_LU_subtracted","left kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.05,0.05,0.05,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 +"704","IAR_LU_subtracted","left kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.05,0.05,0.05,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 +"705","IAR_LU_subtracted","left kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.05,0.05,0.05,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 +"706","IAR_LU_subtracted","Liver",10,0.11,0.1,0.0015,0.121102796262656,0.0634637023292287,0.00152084809188092,0.05,0.05,0.05,0.130105575340284,0.0425007401607272,0.000472993211159269,299,299,299 +"707","IAR_LU_subtracted","Liver",30,0.11,0.1,0.0015,0.0977558608603766,0.0724781854232728,0.00150154707211704,0.05,0.05,0.05,0.0613502493964698,0.034666306804501,0.000152137743344338,299,299,299 +"708","IAR_LU_subtracted","Liver",50,0.11,0.1,0.0015,0.100463203481405,0.0787945272430514,0.00150017699860271,0.05,0.05,0.05,0.0409980511902564,0.0284510570921832,9.09784274199351e-05,299,299,299 +"709","IAR_LU_subtracted","Liver",100,0.11,0.1,0.0015,0.105490313170251,0.0868785527973936,0.00149980895512081,0.05,0.05,0.05,0.0208767035787053,0.0189325400054299,4.54189474712779e-05,299,299,299 +"710","IAR_LU_subtracted","Liver",200,0.11,0.1,0.0015,0.107911734542008,0.0926665405232451,0.00149983471124947,0.05,0.05,0.05,0.010493763751019,0.0109829786476278,2.26988859055568e-05,299,299,299 +"711","IAR_LU_subtracted","Myocardium LV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.05,0.05,0.05,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 +"712","IAR_LU_subtracted","Myocardium LV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.05,0.05,0.05,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 +"713","IAR_LU_subtracted","Myocardium LV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.05,0.05,0.05,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 +"714","IAR_LU_subtracted","Myocardium LV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.05,0.05,0.05,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 +"715","IAR_LU_subtracted","Myocardium LV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.05,0.05,0.05,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 +"716","IAR_LU_subtracted","myocardium ra",10,0.07,0.07,0.0015,0.10186810798305,0.0606534117311725,0.00151975238387796,0.05,0.05,0.05,0.120898300340911,0.0434847654606971,0.000451902244673881,299,299,299 +"717","IAR_LU_subtracted","myocardium ra",30,0.07,0.07,0.0015,0.0669092818312048,0.0629092386288161,0.00150135088654914,0.05,0.05,0.05,0.05467533607346,0.0390189481601652,0.000145531665798083,299,299,299 +"718","IAR_LU_subtracted","myocardium ra",50,0.07,0.07,0.0015,0.0649047689569669,0.0657124808261645,0.00150012323561766,0.05,0.05,0.05,0.0373547816491121,0.0345082797190195,8.70510202022302e-05,299,299,299 +"719","IAR_LU_subtracted","myocardium ra",100,0.07,0.07,0.0015,0.0673614139938931,0.0697335469292888,0.00149980568738501,0.05,0.05,0.05,0.0196998246819315,0.0271665305647647,4.34633528226247e-05,299,299,299 +"720","IAR_LU_subtracted","myocardium ra",200,0.07,0.07,0.0015,0.0692312276466145,0.0716133033330059,0.00149983895305835,0.05,0.05,0.05,0.00928973196376031,0.0191722698037651,2.17222536755328e-05,299,299,299 +"721","IAR_LU_subtracted","myocardium RV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.05,0.05,0.05,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 +"722","IAR_LU_subtracted","myocardium RV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.05,0.05,0.05,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 +"723","IAR_LU_subtracted","myocardium RV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.05,0.05,0.05,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 +"724","IAR_LU_subtracted","myocardium RV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.05,0.05,0.05,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 +"725","IAR_LU_subtracted","myocardium RV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.05,0.05,0.05,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 +"726","IAR_LU_subtracted","pancreas",10,0.15,0.01,0.00129999999999999,0.145973572791277,0.0418322359345869,0.00134733544815708,0.05,0.05,0.05,0.133409111984285,0.0427515729870689,0.000431649675978663,299,299,299 +"727","IAR_LU_subtracted","pancreas",30,0.15,0.01,0.00129999999999999,0.128614984268459,0.0196787383317491,0.00133082551202286,0.05,0.05,0.05,0.0591082064465484,0.0231057149671265,0.000139043274945453,299,299,299 +"728","IAR_LU_subtracted","pancreas",50,0.15,0.01,0.00129999999999999,0.129890010988128,0.014418840532864,0.00132993185853207,0.05,0.05,0.05,0.0358391575513234,0.0125046852807563,8.31806812154377e-05,299,299,299 +"729","IAR_LU_subtracted","pancreas",100,0.15,0.01,0.00129999999999999,0.130754692398513,0.0119016729036151,0.00132978575875502,0.05,0.05,0.05,0.0179785444573827,0.00250589698561192,4.15321586456171e-05,299,299,299 +"730","IAR_LU_subtracted","pancreas",200,0.15,0.01,0.00129999999999999,0.131107657691518,0.0115757199693789,0.00132987961477637,0.05,0.05,0.05,0.00899900314885932,0.00109942059007681,2.07569285081239e-05,299,299,299 +"731","IAR_LU_subtracted","pericardium",10,0.07,0.00999999999999999,0.003,0.182005007344476,0.0449399513343394,0.00273701082230784,0.05,0.05,0.05,0.199393895082264,0.0446081430054895,0.00088504212200084,299,299,299 +"732","IAR_LU_subtracted","pericardium",30,0.07,0.00999999999999999,0.003,0.0767264387057665,0.0483395662495535,0.00304612925895245,0.05,0.05,0.05,0.0884446645225644,0.0443972230787564,0.00039105626191339,299,299,299 +"733","IAR_LU_subtracted","pericardium",50,0.07,0.00999999999999999,0.003,0.060765317251112,0.0422176464039951,0.00304009046144298,0.05,0.05,0.05,0.0613396076316471,0.0421072613162647,0.000238152536499515,299,299,299 +"734","IAR_LU_subtracted","pericardium",100,0.07,0.00999999999999999,0.003,0.0523575780666355,0.0289300542806783,0.00303324788669806,0.05,0.05,0.05,0.0371516507191181,0.0324742655660579,0.000118500604743613,299,299,299 +"735","IAR_LU_subtracted","pericardium",200,0.07,0.00999999999999999,0.003,0.0514683102067133,0.0168738578171833,0.00303117957616411,0.05,0.05,0.05,0.0206465635019397,0.0152473956782957,5.91963411917844e-05,299,299,299 +"736","IAR_LU_subtracted","right kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.05,0.05,0.05,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 +"737","IAR_LU_subtracted","right kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.05,0.05,0.05,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 +"738","IAR_LU_subtracted","right kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.05,0.05,0.05,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 +"739","IAR_LU_subtracted","right kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.05,0.05,0.05,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 +"740","IAR_LU_subtracted","right kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.05,0.05,0.05,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 +"741","IAR_LU_subtracted","Right kydney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.05,0.05,0.05,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 +"742","IAR_LU_subtracted","Right kydney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.05,0.05,0.05,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 +"743","IAR_LU_subtracted","Right kydney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.05,0.05,0.05,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 +"744","IAR_LU_subtracted","Right kydney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.05,0.05,0.05,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 +"745","IAR_LU_subtracted","Right kydney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.05,0.05,0.05,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 +"746","IAR_LU_subtracted","small intestine",10,0.69,0.029,0.00131,0.649071571639429,0.037464324397123,0.00128397090175435,0.05,0.05,0.05,0.187010914793362,0.0225038113743857,0.0010310750352814,299,299,299 +"747","IAR_LU_subtracted","small intestine",30,0.69,0.029,0.00131,0.681939176198207,0.0302945345465633,0.00132700874616123,0.05,0.05,0.05,0.0603891142492399,0.00615614452326418,0.000393814792063893,299,299,299 +"748","IAR_LU_subtracted","small intestine",50,0.69,0.029,0.00131,0.686488325345437,0.0294805288039652,0.00131674147785283,0.05,0.05,0.05,0.0350265291349697,0.00317717209152528,0.000231513954749497,299,299,299 +"749","IAR_LU_subtracted","small intestine",100,0.69,0.029,0.00131,0.688499643316856,0.029166381361068,0.00131311787679812,0.05,0.05,0.05,0.0172978748915505,0.00151214165319551,0.000114727932084214,299,299,299 +"750","IAR_LU_subtracted","small intestine",200,0.69,0.029,0.00131,0.689091142138875,0.0290838262952531,0.00131259560662869,0.05,0.05,0.05,0.00862471112761152,0.000746769041454522,5.72226395519967e-05,299,299,299 +"751","IAR_LU_subtracted","spleen",10,0.2,0.03,0.00129999999999999,0.192961858260559,0.0492597470738909,0.00131869223769686,0.05,0.05,0.05,0.14672006477452,0.0390143038859564,0.000459161541284809,299,299,299 +"752","IAR_LU_subtracted","spleen",30,0.2,0.03,0.00129999999999999,0.195619974063773,0.0378660228770973,0.00130108907088979,0.05,0.05,0.05,0.0582480816426133,0.0230396606877878,0.000147366538355311,299,299,299 +"753","IAR_LU_subtracted","spleen",50,0.2,0.03,0.00129999999999999,0.198125993490742,0.0334346769905656,0.00130009526398064,0.05,0.05,0.05,0.033860026554998,0.0141196943300376,8.81308203353264e-05,299,299,299 +"754","IAR_LU_subtracted","spleen",100,0.2,0.03,0.00129999999999999,0.199199769344964,0.0308742355909984,0.001299928493873,0.05,0.05,0.05,0.0167658026535138,0.00575644302154389,4.39969723252588e-05,299,299,299 +"755","IAR_LU_subtracted","spleen",200,0.2,0.03,0.00129999999999999,0.199585281953296,0.0302681533889609,0.00130002911399547,0.05,0.05,0.05,0.00835864747465978,0.00272874833953629,2.19877335574001e-05,299,299,299 +"756","IAR_LU_subtracted","st wall",10,0.3,0.012,0.0015,0.262694585680195,0.0319185653801386,0.00157773932710541,0.05,0.05,0.05,0.172890946488421,0.0349074029422235,0.000614593950499859,299,299,299 +"757","IAR_LU_subtracted","st wall",30,0.3,0.012,0.0015,0.271112584934838,0.0157552797151743,0.00155214816764873,0.05,0.05,0.05,0.0670076659202155,0.0109054102082447,0.00019551156370717,299,299,299 +"758","IAR_LU_subtracted","st wall",50,0.3,0.012,0.0015,0.273986799953669,0.013806573219354,0.00154952132488848,0.05,0.05,0.05,0.0398746950657118,0.00322902951392831,0.00011668052444887,299,299,299 +"759","IAR_LU_subtracted","st wall",100,0.3,0.012,0.0015,0.275412083141614,0.0133114999997825,0.0015486735829641,0.05,0.05,0.05,0.0199011338224045,0.00132338051992791,5.81996976856253e-05,299,299,299 +"760","IAR_LU_subtracted","st wall",200,0.3,0.012,0.0015,0.275903272911037,0.0131993048909566,0.00154860379618769,0.05,0.05,0.05,0.00994694081242093,0.000634013714884041,2.90796048726369e-05,299,299,299 +"761","IAR_LU_subtracted","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.649071571567166,0.037464324385318,0.00128397090178629,0.05,0.05,0.05,0.187010915027799,0.0225038113468096,0.00103107503559299,299,299,299 +"762","IAR_LU_subtracted","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.681939176203752,0.0302945345463009,0.00132700874615982,0.05,0.05,0.05,0.0603891142173648,0.00615614452231295,0.000393814791967693,299,299,299 +"763","IAR_LU_subtracted","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.686488325340787,0.0294805288049083,0.00131674147788471,0.05,0.05,0.05,0.0350265291502769,0.00317717209269235,0.000231513954838717,299,299,299 +"764","IAR_LU_subtracted","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.688499643316927,0.0291663813609283,0.00131311787679501,0.05,0.05,0.05,0.0172978748928733,0.00151214165340536,0.000114727932099834,299,299,299 +"765","IAR_LU_subtracted","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689091142135544,0.0290838262954833,0.0013125956066485,0.05,0.05,0.05,0.0086247111300983,0.000746769041458226,5.72226395704009e-05,299,299,299 +"766","IAR_LU_subtracted","Vein",10,1,0.1,0.00299999999999999,0.868045922383658,0.0985985293150582,0.000602377539365262,0.05,0.05,0.05,0.112435321603995,0.00440048348201647,0.000954240122974581,299,299,299 +"767","IAR_LU_subtracted","Vein",30,1,0.1,0.00299999999999999,0.957942477946852,0.0996184418326707,0.00060239305244365,0.05,0.05,0.05,0.0334473349561743,0.00133438593435031,0.000954268289514292,299,299,299 +"768","IAR_LU_subtracted","Vein",50,1,0.1,0.00299999999999999,0.974974772688412,0.0997749955436001,0.000602405603200741,0.05,0.05,0.05,0.0196506919525737,0.000799331221169125,0.000954266532348308,299,299,299 +"769","IAR_LU_subtracted","Vein",100,1,0.1,0.00299999999999999,0.987563371296023,0.0998909406437419,0.000602442811986694,0.05,0.05,0.05,0.00967550352550441,0.000393844437618856,0.000954286483399826,299,299,299 +"770","IAR_LU_subtracted","Vein",200,1,0.1,0.00299999999999999,0.993800432483541,0.0999475578951229,0.000602417326124585,0.05,0.05,0.05,0.00480131473453758,0.000192683440678621,0.000954060412685357,299,299,299 +"771","OGC_AmsterdamUMC_Bayesian_biexp","Artery",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.05,0.05,0.05,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 +"772","OGC_AmsterdamUMC_Bayesian_biexp","Artery",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.05,0.05,0.05,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 +"773","OGC_AmsterdamUMC_Bayesian_biexp","Artery",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.05,0.05,0.05,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 +"774","OGC_AmsterdamUMC_Bayesian_biexp","Artery",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.05,0.05,0.05,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 +"775","OGC_AmsterdamUMC_Bayesian_biexp","Artery",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.05,0.05,0.05,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 +"776","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694246808778769,0.0332124281614618,0.00115662969455558,0.05,0.05,0.05,0.110159746203623,0.0193048930533793,0.000818020501222016,299,299,299 +"777","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690033147644459,0.0293545237816436,0.00129905886269543,0.05,0.05,0.05,0.036083088630791,0.00362951393892406,0.000284878762206832,299,299,299 +"778","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.689921467398159,0.029138651533785,0.00130314910724909,0.05,0.05,0.05,0.0213772215849651,0.00213834289461457,0.00016610479346135,299,299,299 +"779","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689705414601575,0.0291477643601371,0.0013080534895242,0.05,0.05,0.05,0.0108249806858387,0.00129122051220513,8.27804115283052e-05,299,299,299 +"780","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689676530218629,0.0290763054841384,0.00130801784811619,0.05,0.05,0.05,0.00583323341091172,0.000767401324572525,4.21804967296496e-05,299,299,299 +"781","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.05,0.05,0.05,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 +"782","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.05,0.05,0.05,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 +"783","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.05,0.05,0.05,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 +"784","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.05,0.05,0.05,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 +"785","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.05,0.05,0.05,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 +"786","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",10,1,0.1,0.003,0.914297401004746,0.124952391582887,0.000341385315837157,0.05,0.05,0.05,0.0338704200880721,0.0264919309675768,0.000759817497225985,299,299,299 +"787","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",30,1,0.1,0.003,0.973099598376866,0.107393352119341,0.000232219992515836,0.05,0.05,0.05,0.00780473426493649,0.00748303413275565,0.000430417814946813,299,299,299 +"788","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",50,1,0.1,0.003,0.984110980162476,0.104286733344672,0.000213374085275976,0.05,0.05,0.05,0.00467665532925233,0.00434422535404416,0.000410079794992667,299,299,299 +"789","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",100,1,0.1,0.003,0.992309672842335,0.102048011852143,0.000179453249523488,0.05,0.05,0.05,0.00230376286511362,0.00212585312384098,0.0003773364651911,299,299,299 +"790","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",200,1,0.1,0.003,0.996293917212231,0.100989102049737,0.000153682190571484,0.05,0.05,0.05,0.0011463180878882,0.00105305653525395,0.000356019214536034,299,299,299 +"791","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694246845378351,0.0332125427670004,0.00115663122095504,0.05,0.05,0.05,0.110160150700988,0.0193048206014305,0.000818021742499563,299,299,299 +"792","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690033102633023,0.0293545254824597,0.00129905896131927,0.05,0.05,0.05,0.0360830639131271,0.00362951206875517,0.000284879125083764,299,299,299 +"793","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689855673695442,0.0291428811190877,0.00130360554367507,0.05,0.05,0.05,0.0213154090326844,0.0021325877974294,0.000165776474780529,299,299,299 +"794","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689705423019645,0.029147764170286,0.0013080534599478,0.05,0.05,0.05,0.0108249733952305,0.00129122098709657,8.27803296124957e-05,299,299,299 +"795","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689676538098746,0.0290763056742895,0.00130801775791647,0.05,0.05,0.05,0.00583319664850218,0.000767398183974445,4.21801838019575e-05,299,299,299 +"796","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.05,0.05,0.05,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 +"797","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.05,0.05,0.05,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 +"798","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.05,0.05,0.05,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 +"799","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.05,0.05,0.05,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 +"800","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.05,0.05,0.05,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 +"801","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.05,0.05,0.05,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 +"802","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.05,0.05,0.05,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 +"803","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.05,0.05,0.05,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 +"804","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.05,0.05,0.05,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 +"805","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.05,0.05,0.05,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 +"806","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.05,0.05,0.05,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 +"807","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.05,0.05,0.05,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 +"808","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.05,0.05,0.05,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 +"809","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.05,0.05,0.05,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 +"810","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.05,0.05,0.05,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 +"811","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.05,0.05,0.05,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 +"812","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.05,0.05,0.05,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 +"813","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.05,0.05,0.05,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 +"814","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.05,0.05,0.05,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 +"815","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.05,0.05,0.05,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 +"816","OGC_AmsterdamUMC_Bayesian_biexp","Liver",10,0.11,0.1,0.0015,0.170376564882108,0.469616209489762,0.00136302767202211,0.05,0.05,0.05,0.138211368776015,0.731976840414104,0.000361913909318564,299,299,299 +"817","OGC_AmsterdamUMC_Bayesian_biexp","Liver",30,0.11,0.1,0.0015,0.11810940657777,0.227068026042997,0.0014860402075791,0.05,0.05,0.05,0.0342593875584427,0.390847594433051,9.96091018932598e-05,299,299,299 +"818","OGC_AmsterdamUMC_Bayesian_biexp","Liver",50,0.11,0.1,0.0015,0.112169947194152,0.131862486304358,0.00149587941679805,0.05,0.05,0.05,0.0153976558796226,0.168625986104975,5.11568481112502e-05,299,299,299 +"819","OGC_AmsterdamUMC_Bayesian_biexp","Liver",100,0.11,0.1,0.0015,0.110516960663717,0.104566165417941,0.00149817275530986,0.05,0.05,0.05,0.00752550525764433,0.0281966308117207,2.46815644447154e-05,299,299,299 +"820","OGC_AmsterdamUMC_Bayesian_biexp","Liver",200,0.11,0.1,0.0015,0.110097109059224,0.101175495734664,0.00149922432315367,0.05,0.05,0.05,0.00376626520198992,0.0116170123481358,1.22063280870859e-05,299,299,299 +"821","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.05,0.05,0.05,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 +"822","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.05,0.05,0.05,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 +"823","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.05,0.05,0.05,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 +"824","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.05,0.05,0.05,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 +"825","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.05,0.05,0.05,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 +"826","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",10,0.07,0.07,0.0015,0.132992854081483,0.461997483376288,0.00136831570972518,0.05,0.05,0.05,0.140522743944648,0.734010313718581,0.000346091519424476,299,299,299 +"827","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884517939449098,0.289658964780844,0.0014676259819499,0.05,0.05,0.05,0.0508441257041168,0.529373222441277,0.000119387045545757,299,299,299 +"828","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0761265927150077,0.156862196421825,0.00148987685522847,0.05,0.05,0.05,0.0242266882566584,0.309458478938769,6.34852979630936e-05,299,299,299 +"829","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0709638888897991,0.0784496324481009,0.00149743190633742,0.05,0.05,0.05,0.00811747399978573,0.0469212398862685,2.52774164583531e-05,299,299,299 +"830","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701854186634233,0.0715583354856421,0.00149905296281753,0.05,0.05,0.05,0.00403493989933669,0.0129671102252917,1.23364517371494e-05,299,299,299 +"831","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.05,0.05,0.05,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 +"832","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.05,0.05,0.05,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 +"833","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.05,0.05,0.05,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 +"834","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.05,0.05,0.05,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 +"835","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.05,0.05,0.05,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 +"836","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.177581724321138,0.43065718969884,0.00125654974398315,0.05,0.05,0.05,0.165637117410062,0.745081523961432,0.000402663506351594,299,299,299 +"837","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.176565399528607,0.0605254346275223,0.00126098577319189,0.05,0.05,0.05,0.0941306062972586,0.26112658574032,0.000185523030805802,299,299,299 +"838","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.169797776388179,0.0172281215928433,0.00126914664260273,0.05,0.05,0.05,0.0691911662849515,0.0530402156979167,0.000129620496323605,299,299,299 +"839","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156843915754002,0.0102744645346462,0.00128825630219321,0.05,0.05,0.05,0.0330983274466555,0.00280593527748534,6.19639236378919e-05,299,299,299 +"840","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151525028767084,0.0100578225668435,0.00129696544759154,0.05,0.05,0.05,0.0150042143805674,0.00127728832085491,2.90654102466401e-05,299,299,299 +"841","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.211255537581016,0.249229775871576,0.00250125413556506,0.05,0.05,0.05,0.261211569379197,0.559657730577179,0.000882896050374514,299,299,299 +"842","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.129163583048985,0.267009677446907,0.00288255604574022,0.05,0.05,0.05,0.17935605322893,0.595048801434633,0.000417501553796525,299,299,299 +"843","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.117317522254229,0.229011081795502,0.0029314606487806,0.05,0.05,0.05,0.148570783679304,0.554095364539563,0.000298907038283006,299,299,299 +"844","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.116118730669429,0.0999844203861992,0.00294503908419238,0.05,0.05,0.05,0.115927313526193,0.331589357967683,0.000200447722297107,299,299,299 +"845","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0985240401785247,0.0153444939154568,0.00296476284362889,0.05,0.05,0.05,0.0771271956803151,0.0234254542116207,0.000123398388298247,299,299,299 +"846","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.05,0.05,0.05,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 +"847","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.05,0.05,0.05,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 +"848","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.05,0.05,0.05,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 +"849","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.05,0.05,0.05,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 +"850","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.05,0.05,0.05,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 +"851","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.05,0.05,0.05,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 +"852","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.05,0.05,0.05,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 +"853","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.05,0.05,0.05,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 +"854","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.05,0.05,0.05,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 +"855","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.05,0.05,0.05,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 +"856","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",10,0.69,0.029,0.00131,0.694246360658053,0.0332125553132146,0.00115663016547754,0.05,0.05,0.05,0.110159259316649,0.0193048143897897,0.000818020512686296,299,299,299 +"857","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",30,0.69,0.029,0.00131,0.690033088055209,0.0293545333482025,0.00129905906199326,0.05,0.05,0.05,0.0360830894438484,0.00362952375376617,0.000284878708553556,299,299,299 +"858","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",50,0.69,0.029,0.00131,0.689921486203945,0.0291386488646149,0.00130314885737654,0.05,0.05,0.05,0.0213772482384634,0.00213834833191147,0.00016610478799147,299,299,299 +"859","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",100,0.69,0.029,0.00131,0.689787379406689,0.0291336831256088,0.00130679586340067,0.05,0.05,0.05,0.0108805102554908,0.0012833541569494,8.28438476605137e-05,299,299,299 +"860","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",200,0.69,0.029,0.00131,0.689676541245555,0.0290763054757247,0.00130801778345195,0.05,0.05,0.05,0.00583322921862559,0.000767400913297244,4.21803596038404e-05,299,299,299 +"861","OGC_AmsterdamUMC_Bayesian_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.252378410002267,0.233718646050262,0.00119059786898657,0.05,0.05,0.05,0.143855248399429,0.502476062586288,0.000408972864282049,299,299,299 +"862","OGC_AmsterdamUMC_Bayesian_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206891201646101,0.0391651098808692,0.00128264117770245,0.05,0.05,0.05,0.0390714113206133,0.0577794578547973,0.000116384817598468,299,299,299 +"863","OGC_AmsterdamUMC_Bayesian_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202242372508398,0.0312880376598558,0.00129258240323802,0.05,0.05,0.05,0.0221743225017492,0.00880333853639113,6.60228502625122e-05,299,299,299 +"864","OGC_AmsterdamUMC_Bayesian_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200493108698575,0.0302484422333146,0.00129737230400495,0.05,0.05,0.05,0.0107432935350786,0.00383175326077784,3.20545640691115e-05,299,299,299 +"865","OGC_AmsterdamUMC_Bayesian_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.2000920443937,0.0300527202364231,0.00129896878525322,0.05,0.05,0.05,0.00532447796635576,0.00186704596028927,1.58938321517461e-05,299,299,299 +"866","OGC_AmsterdamUMC_Bayesian_biexp","st wall",10,0.3,0.012,0.0015,0.342171653732148,0.169021111769008,0.00137658979771026,0.05,0.05,0.05,0.209121239054118,0.464911517650575,0.000634230099480539,299,299,299 +"867","OGC_AmsterdamUMC_Bayesian_biexp","st wall",30,0.3,0.012,0.0015,0.322622542108482,0.0163119559447378,0.00144210772050894,0.05,0.05,0.05,0.0995249294874889,0.0358945966856197,0.000264951211719173,299,299,299 +"868","OGC_AmsterdamUMC_Bayesian_biexp","st wall",50,0.3,0.012,0.0015,0.307380239713298,0.0123840142302169,0.00147963560215619,0.05,0.05,0.05,0.0543986230945646,0.00311908608212234,0.000143578936921841,299,299,299 +"869","OGC_AmsterdamUMC_Bayesian_biexp","st wall",100,0.3,0.012,0.0015,0.301693691231062,0.0120871111509783,0.00149429686700861,0.05,0.05,0.05,0.0263415216139092,0.00143226934515234,6.96702203754273e-05,299,299,299 +"870","OGC_AmsterdamUMC_Bayesian_biexp","st wall",200,0.3,0.012,0.0015,0.300260349126461,0.0120289058061544,0.00149847883633801,0.05,0.05,0.05,0.0131909252941061,0.000701134900800486,3.49408339753062e-05,299,299,299 +"871","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694259683027242,0.0332121262581744,0.00115651817908036,0.05,0.05,0.05,0.11017656415909,0.0193052051533991,0.000818178301615205,299,299,299 +"872","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.690033167699518,0.0293545217522552,0.00129905853784076,0.05,0.05,0.05,0.036083058729084,0.00362951389776666,0.000284878311839241,299,299,299 +"873","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689921506074573,0.0291386465936453,0.0013031486571486,0.05,0.05,0.05,0.0213772426772885,0.00213834747992634,0.000166104827306889,299,299,299 +"874","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689705435319841,0.0291477639759397,0.00130805336484234,0.05,0.05,0.05,0.0108250110017957,0.0012912220707904,8.27806112880171e-05,299,299,299 +"875","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689703364774609,0.0290729200975083,0.0013079275799941,0.05,0.05,0.05,0.0057973136397047,0.000764637348817088,4.20153078500508e-05,299,299,299 +"876","OGC_AmsterdamUMC_Bayesian_biexp","Vein",10,1,0.1,0.00299999999999999,0.914295867026791,0.124952449208066,0.000341386376995397,0.05,0.05,0.05,0.033870556357192,0.0264921360903649,0.000759818054968653,299,299,299 +"877","OGC_AmsterdamUMC_Bayesian_biexp","Vein",30,1,0.1,0.00299999999999999,0.973099780568972,0.107393408056422,0.000232219949442385,0.05,0.05,0.05,0.00780476201787954,0.00748295051395532,0.000430417878162574,299,299,299 +"878","OGC_AmsterdamUMC_Bayesian_biexp","Vein",50,1,0.1,0.00299999999999999,0.984111118518383,0.104286700344162,0.000213374328770124,0.05,0.05,0.05,0.00467685321257514,0.00434424421111718,0.000410079679040286,299,299,299 +"879","OGC_AmsterdamUMC_Bayesian_biexp","Vein",100,1,0.1,0.00299999999999999,0.992309696276133,0.102047954866857,0.000179453478078494,0.05,0.05,0.05,0.00230377417751352,0.00212580311791353,0.000377336365917817,299,299,299 +"880","OGC_AmsterdamUMC_Bayesian_biexp","Vein",200,1,0.1,0.00299999999999999,0.996293961868916,0.100989052773125,0.000153682306312602,0.05,0.05,0.05,0.00114635413380225,0.0010530293970243,0.000356019850089775,299,299,299 +"881","OGC_AmsterdamUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.05,0.05,0.05,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 +"882","OGC_AmsterdamUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.05,0.05,0.05,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 +"883","OGC_AmsterdamUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.05,0.05,0.05,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 +"884","OGC_AmsterdamUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.05,0.05,0.05,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 +"885","OGC_AmsterdamUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.05,0.05,0.05,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 +"886","OGC_AmsterdamUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694830688531838,0.0326249863604666,0.00114655138542055,0.05,0.05,0.05,0.0978007798077074,0.0170421542867141,0.00074426190292453,299,299,299 +"887","OGC_AmsterdamUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.689570850554634,0.0293846834593745,0.00130099623058546,0.05,0.05,0.05,0.0358332140742521,0.00328309904723427,0.000279782024748395,299,299,299 +"888","OGC_AmsterdamUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.68982569362266,0.0291500977518991,0.00130432508924539,0.05,0.05,0.05,0.0213881941208833,0.0019024829657527,0.000166083415100297,299,299,299 +"889","OGC_AmsterdamUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689946565171096,0.0290467790735175,0.00130699632921778,0.05,0.05,0.05,0.0106631625297783,0.000938640327346139,8.26562863313582e-05,299,299,299 +"890","OGC_AmsterdamUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689981335122987,0.0290165319422673,0.00130845678093965,0.05,0.05,0.05,0.00532704595643484,0.00046772177618261,4.12831236659919e-05,299,299,299 +"891","OGC_AmsterdamUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.05,0.05,0.05,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 +"892","OGC_AmsterdamUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.05,0.05,0.05,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 +"893","OGC_AmsterdamUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.05,0.05,0.05,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 +"894","OGC_AmsterdamUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.05,0.05,0.05,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 +"895","OGC_AmsterdamUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.05,0.05,0.05,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 +"896","OGC_AmsterdamUMC_biexp","Blood RV",10,1,0.1,0.003,0.916551204477061,0.122369011950598,0.000273066803012016,0.05,0.05,0.05,0.0227251914120853,0.0234330403592379,0.000525988248231766,299,299,299 +"897","OGC_AmsterdamUMC_biexp","Blood RV",30,1,0.1,0.003,0.973161260787835,0.106546698466594,0.000228130843033075,0.05,0.05,0.05,0.0078285922138933,0.00645782890351296,0.000431214372101425,299,299,299 +"898","OGC_AmsterdamUMC_biexp","Blood RV",50,1,0.1,0.003,0.984189738173453,0.103791606376294,0.000208198245221205,0.05,0.05,0.05,0.00468303351061325,0.00375278684341751,0.000406133457828171,299,299,299 +"899","OGC_AmsterdamUMC_biexp","Blood RV",100,1,0.1,0.003,0.992359928406606,0.101811171259488,0.000175728107883654,0.05,0.05,0.05,0.00229602425602299,0.00183520810771947,0.000373114811370238,299,299,299 +"900","OGC_AmsterdamUMC_biexp","Blood RV",200,1,0.1,0.003,0.996323154043503,0.100873285154226,0.000149761334226485,0.05,0.05,0.05,0.0011362202179319,0.000908483065035726,0.000352386145881468,299,299,299 +"901","OGC_AmsterdamUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694830688306291,0.0326249863621617,0.00114655138827578,0.05,0.05,0.05,0.0978007793640295,0.0170421542714422,0.000744261900488319,299,299,299 +"902","OGC_AmsterdamUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.689570850526864,0.029384683464532,0.0013009962306133,0.05,0.05,0.05,0.0358332145166679,0.00328309907506283,0.000279782027560119,299,299,299 +"903","OGC_AmsterdamUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689825693551577,0.0291500977561171,0.00130432508986481,0.05,0.05,0.05,0.0213881941750843,0.00190248296579918,0.00016608341577808,299,299,299 +"904","OGC_AmsterdamUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689946565084964,0.0290467790793416,0.00130699633001302,0.05,0.05,0.05,0.0106631624492495,0.000938640323571297,8.26562859037306e-05,299,299,299 +"905","OGC_AmsterdamUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689981335136009,0.0290165319415151,0.00130845678084101,0.05,0.05,0.05,0.0053270460155283,0.000467721779019385,4.12831240551719e-05,299,299,299 +"906","OGC_AmsterdamUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.05,0.05,0.05,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 +"907","OGC_AmsterdamUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.05,0.05,0.05,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 +"908","OGC_AmsterdamUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.05,0.05,0.05,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 +"909","OGC_AmsterdamUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.05,0.05,0.05,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 +"910","OGC_AmsterdamUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.05,0.05,0.05,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 +"911","OGC_AmsterdamUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.05,0.05,0.05,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 +"912","OGC_AmsterdamUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.05,0.05,0.05,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 +"913","OGC_AmsterdamUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.05,0.05,0.05,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 +"914","OGC_AmsterdamUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.05,0.05,0.05,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 +"915","OGC_AmsterdamUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.05,0.05,0.05,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 +"916","OGC_AmsterdamUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.05,0.05,0.05,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 +"917","OGC_AmsterdamUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.05,0.05,0.05,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 +"918","OGC_AmsterdamUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.05,0.05,0.05,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 +"919","OGC_AmsterdamUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.05,0.05,0.05,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 +"920","OGC_AmsterdamUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.05,0.05,0.05,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 +"921","OGC_AmsterdamUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.05,0.05,0.05,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 +"922","OGC_AmsterdamUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.05,0.05,0.05,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 +"923","OGC_AmsterdamUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.05,0.05,0.05,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 +"924","OGC_AmsterdamUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.05,0.05,0.05,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 +"925","OGC_AmsterdamUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.05,0.05,0.05,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 +"926","OGC_AmsterdamUMC_biexp","Liver",10,0.11,0.1,0.0015,0.168781483710098,0.0998946664266393,0.0013498050183832,0.05,0.05,0.05,0.122995139274488,0.0772265009198665,0.000337252957986261,299,299,299 +"927","OGC_AmsterdamUMC_biexp","Liver",30,0.11,0.1,0.0015,0.114188731736888,0.115331619534224,0.00148632594936495,0.05,0.05,0.05,0.0216959423795506,0.0557579468019812,8.43750873327471e-05,299,299,299 +"928","OGC_AmsterdamUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111084793289577,0.110147712355781,0.00149517257250774,0.05,0.05,0.05,0.01183413282986,0.0399148213895639,4.8761702300905e-05,299,299,299 +"929","OGC_AmsterdamUMC_biexp","Liver",100,0.11,0.1,0.0015,0.110231190403675,0.103476574388879,0.0014982923573173,0.05,0.05,0.05,0.00588808517047419,0.0205159283218359,2.43744136435469e-05,299,299,299 +"930","OGC_AmsterdamUMC_biexp","Liver",200,0.11,0.1,0.0015,0.1100470782725,0.101125031030003,0.00149929708375471,0.05,0.05,0.05,0.00293209185601329,0.00988546801948204,1.21465617474882e-05,299,299,299 +"931","OGC_AmsterdamUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.05,0.05,0.05,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 +"932","OGC_AmsterdamUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.05,0.05,0.05,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 +"933","OGC_AmsterdamUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.05,0.05,0.05,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 +"934","OGC_AmsterdamUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.05,0.05,0.05,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 +"935","OGC_AmsterdamUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.05,0.05,0.05,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 +"936","OGC_AmsterdamUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.140842582474029,0.0815154419321809,0.00133683779290497,0.05,0.05,0.05,0.133651654726981,0.0787637500133576,0.000337383058598956,299,299,299 +"937","OGC_AmsterdamUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0829284043873291,0.0925385612868686,0.00146970569880693,0.05,0.05,0.05,0.040894147264683,0.0669997325413034,0.00010234659109373,299,299,299 +"938","OGC_AmsterdamUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.072923245672355,0.086543488787249,0.00149141826884349,0.05,0.05,0.05,0.0155435838870278,0.050860948922495,5.15890939821251e-05,299,299,299 +"939","OGC_AmsterdamUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.070524437875184,0.0753318595008239,0.00149772019600704,0.05,0.05,0.05,0.00682514888448031,0.025139239611477,2.45968000885053e-05,299,299,299 +"940","OGC_AmsterdamUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701212467432704,0.0714929242888122,0.00149916064828103,0.05,0.05,0.05,0.00338190541112971,0.0111832331213025,1.22606190149771e-05,299,299,299 +"941","OGC_AmsterdamUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.05,0.05,0.05,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 +"942","OGC_AmsterdamUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.05,0.05,0.05,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 +"943","OGC_AmsterdamUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.05,0.05,0.05,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 +"944","OGC_AmsterdamUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.05,0.05,0.05,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 +"945","OGC_AmsterdamUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.05,0.05,0.05,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 +"946","OGC_AmsterdamUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.184853535610611,0.0474378705656416,0.00120984216661857,0.05,0.05,0.05,0.161104187646429,0.0669702421956942,0.000392891369414266,299,299,299 +"947","OGC_AmsterdamUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.1758987150233,0.0213648978673952,0.0012561175701719,0.05,0.05,0.05,0.0959617612998877,0.0372699012998766,0.00018463821702496,299,299,299 +"948","OGC_AmsterdamUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.166798142533227,0.0139339848239637,0.00127239422373439,0.05,0.05,0.05,0.0681687338425591,0.0204281200559457,0.000125570308752639,299,299,299 +"949","OGC_AmsterdamUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.155050447560094,0.0103148716578063,0.00129097893352421,0.05,0.05,0.05,0.0319693578528234,0.00247522256148057,5.97694054006783e-05,299,299,299 +"950","OGC_AmsterdamUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151155511078491,0.0100771654020746,0.00129758916819627,0.05,0.05,0.05,0.01486591983984,0.00114131889925594,2.84629910683132e-05,299,299,299 +"951","OGC_AmsterdamUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.262616475802028,0.0308625180597483,0.00230293995321135,0.05,0.05,0.05,0.288611721740561,0.0557288601070258,0.000959963395181612,299,299,299 +"952","OGC_AmsterdamUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171752736546838,0.0258191200871392,0.00279901103476943,0.05,0.05,0.05,0.188837545487512,0.0473569013409168,0.000422023702062297,299,299,299 +"953","OGC_AmsterdamUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.154585152777794,0.0269701085601376,0.00286376703903012,0.05,0.05,0.05,0.156425793643098,0.0489644773433195,0.000304246897964977,299,299,299 +"954","OGC_AmsterdamUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.130337929311287,0.0221023076365671,0.00291708995451447,0.05,0.05,0.05,0.119422596085694,0.0390373666690182,0.000200857412897068,299,299,299 +"955","OGC_AmsterdamUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0981124920664315,0.01363368266491,0.00296220821462304,0.05,0.05,0.05,0.0749749651464143,0.0203675508518603,0.000119612766836194,299,299,299 +"956","OGC_AmsterdamUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.05,0.05,0.05,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 +"957","OGC_AmsterdamUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.05,0.05,0.05,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 +"958","OGC_AmsterdamUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.05,0.05,0.05,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 +"959","OGC_AmsterdamUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.05,0.05,0.05,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 +"960","OGC_AmsterdamUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.05,0.05,0.05,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 +"961","OGC_AmsterdamUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.05,0.05,0.05,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 +"962","OGC_AmsterdamUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.05,0.05,0.05,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 +"963","OGC_AmsterdamUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.05,0.05,0.05,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 +"964","OGC_AmsterdamUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.05,0.05,0.05,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 +"965","OGC_AmsterdamUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.05,0.05,0.05,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 +"966","OGC_AmsterdamUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.694830687906111,0.0326249863850724,0.001146551391007,0.05,0.05,0.05,0.0978007791606039,0.0170421543207036,0.000744261895530268,299,299,299 +"967","OGC_AmsterdamUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.689570850315831,0.0293846834755066,0.00130099623277285,0.05,0.05,0.05,0.0358332141325587,0.00328309905455554,0.000279782025078523,299,299,299 +"968","OGC_AmsterdamUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.689825693573063,0.0291500977548317,0.0013043250896893,0.05,0.05,0.05,0.0213881941310553,0.00190248296633076,0.000166083414640446,299,299,299 +"969","OGC_AmsterdamUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.68994656517302,0.0290467790735891,0.00130699632918918,0.05,0.05,0.05,0.0106631625130881,0.000938640325588028,8.26562859975714e-05,299,299,299 +"970","OGC_AmsterdamUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.689981335140809,0.0290165319414175,0.00130845678076352,0.05,0.05,0.05,0.00532704601832268,0.000467721780395998,4.1283123962599e-05,299,299,299 +"971","OGC_AmsterdamUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.248565345872263,0.0568790590809539,0.00117109082310806,0.05,0.05,0.05,0.138108152592245,0.0614284067605453,0.000385048669212005,299,299,299 +"972","OGC_AmsterdamUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.204799212322826,0.0344032230756975,0.00128537474230259,0.05,0.05,0.05,0.0373889502807019,0.0196932990153424,0.000109827153921283,299,299,299 +"973","OGC_AmsterdamUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201678467795085,0.0312420978469793,0.00129383894795446,0.05,0.05,0.05,0.0214546726422535,0.0077523763498131,6.40824451508019e-05,299,299,299 +"974","OGC_AmsterdamUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.20040747359065,0.0303107930918353,0.00129785077922554,0.05,0.05,0.05,0.0104719587309842,0.00342852469585086,3.15725299307934e-05,299,299,299 +"975","OGC_AmsterdamUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.200098827653497,0.0300920084049103,0.00129915169076204,0.05,0.05,0.05,0.00519380978047521,0.00166907680512249,1.57069706717535e-05,299,299,299 +"976","OGC_AmsterdamUMC_biexp","st wall",10,0.3,0.012,0.0015,0.361593393686145,0.0323328748012714,0.00130132220666322,0.05,0.05,0.05,0.208350215148267,0.0514342217408351,0.000612311819072441,299,299,299 +"977","OGC_AmsterdamUMC_biexp","st wall",30,0.3,0.012,0.0015,0.316719659160763,0.0137022551884621,0.00145359061242711,0.05,0.05,0.05,0.0970529464093194,0.00856485498776069,0.000254686991328844,299,299,299 +"978","OGC_AmsterdamUMC_biexp","st wall",50,0.3,0.012,0.0015,0.305193533818909,0.0124323700210719,0.00148436640149277,0.05,0.05,0.05,0.053613759973711,0.00282298876439099,0.000140362193961726,299,299,299 +"979","OGC_AmsterdamUMC_biexp","st wall",100,0.3,0.012,0.0015,0.3011193322049,0.0121135942239775,0.00149571619204976,0.05,0.05,0.05,0.0261843319002159,0.00129074569132032,6.85575356626846e-05,299,299,299 +"980","OGC_AmsterdamUMC_biexp","st wall",200,0.3,0.012,0.0015,0.300225825318409,0.0120334534978712,0.00149864155647832,0.05,0.05,0.05,0.0130262845926758,0.000630340215988195,3.40956211098914e-05,299,299,299 +"981","OGC_AmsterdamUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694830688564467,0.032624986312475,0.00114655138620799,0.05,0.05,0.05,0.0978007790483066,0.017042154071943,0.000744261894497508,299,299,299 +"982","OGC_AmsterdamUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689570850550309,0.0293846834605323,0.00130099623067048,0.05,0.05,0.05,0.03583321437894,0.00328309906489773,0.000279782027780018,299,299,299 +"983","OGC_AmsterdamUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689825693412246,0.0291500977660697,0.00130432509126435,0.05,0.05,0.05,0.0213881942331915,0.00190248296909735,0.000166083415658577,299,299,299 +"984","OGC_AmsterdamUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689946565157839,0.0290467790741476,0.00130699632927992,0.05,0.05,0.05,0.0106631624923704,0.000938640325039952,8.2656285973903e-05,299,299,299 +"985","OGC_AmsterdamUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689981335112322,0.0290165319430504,0.00130845678104043,0.05,0.05,0.05,0.00532704598651555,0.000467721780481497,4.1283123603074e-05,299,299,299 +"986","OGC_AmsterdamUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.916551204244533,0.122369011974545,0.000273066816835779,0.05,0.05,0.05,0.022725191121915,0.0234330403198178,0.000525988259691735,299,299,299 +"987","OGC_AmsterdamUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.973161261240563,0.106546698361441,0.000228130761062279,0.05,0.05,0.05,0.00782859243617106,0.0064578289415521,0.000431214198209649,299,299,299 +"988","OGC_AmsterdamUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.984189738028885,0.103791606406811,0.000208198255818229,0.05,0.05,0.05,0.00468303362319796,0.00375278684718259,0.000406133264965843,299,299,299 +"989","OGC_AmsterdamUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.992359928276546,0.101811171283772,0.000175728187662851,0.05,0.05,0.05,0.00229602432637319,0.00183520806791812,0.000373115337318807,299,299,299 +"990","OGC_AmsterdamUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996323153986104,0.100873285167583,0.000149761440764175,0.05,0.05,0.05,0.00113622001644103,0.00090848307766313,0.000352385760028282,299,299,299 +"991","OGC_AmsterdamUMC_biexp_segmented","Artery",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 +"992","OGC_AmsterdamUMC_biexp_segmented","Artery",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 +"993","OGC_AmsterdamUMC_biexp_segmented","Artery",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 +"994","OGC_AmsterdamUMC_biexp_segmented","Artery",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 +"995","OGC_AmsterdamUMC_biexp_segmented","Artery",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 +"996","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390180236,0.00131067694624179,0.05,0.05,0.05,0.143273359410903,0.00746591757058437,0.000965452623261198,299,299,299 +"997","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091792,0.00136286457292459,0.05,0.05,0.05,0.0442643529688101,0.000185589786252479,0.000322790073010869,299,299,299 +"998","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.05,0.05,0.05,0.0260317923438205,1.40320085058926e-10,0.000190041408090366,299,299,299 +"999","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.05,0.05,0.05,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 +"1000","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.05,0.05,0.05,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 +"1001","OGC_AmsterdamUMC_biexp_segmented","Blood RA",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 +"1002","OGC_AmsterdamUMC_biexp_segmented","Blood RA",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 +"1003","OGC_AmsterdamUMC_biexp_segmented","Blood RA",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 +"1004","OGC_AmsterdamUMC_biexp_segmented","Blood RA",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 +"1005","OGC_AmsterdamUMC_biexp_segmented","Blood RA",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 +"1006","OGC_AmsterdamUMC_biexp_segmented","Blood RV",10,1,0.1,0.003,0.89187652895809,0.130371770521945,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595995146847,0.000876166916139467,299,299,299 +"1007","OGC_AmsterdamUMC_biexp_segmented","Blood RV",30,1,0.1,0.003,0.963958649017849,0.108709609162974,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200609997,0.000876181456030473,299,299,299 +"1008","OGC_AmsterdamUMC_biexp_segmented","Blood RV",50,1,0.1,0.003,0.97816921696173,0.105139058114271,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.0046898167166192,0.000912813853531625,299,299,299 +"1009","OGC_AmsterdamUMC_biexp_segmented","Blood RV",100,1,0.1,0.003,0.989084383490558,0.102522060782086,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175040105,0.000912855515978945,299,299,299 +"1010","OGC_AmsterdamUMC_biexp_segmented","Blood RV",200,1,0.1,0.003,0.994541921036986,0.10125504286489,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352008543,0.000913010145476883,299,299,299 +"1011","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",10,0.69,0.029,0.00131,0.661034109543676,0.0519537390427511,0.00131067694617946,0.05,0.05,0.05,0.143273359483562,0.00746591763226972,0.000965452623351917,299,299,299 +"1012","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",30,0.69,0.029,0.00131,0.677766188255513,0.0500107152093789,0.00136286457330544,0.05,0.05,0.05,0.0442643529054461,0.00018558978971045,0.000322790072591844,299,299,299 +"1013","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",50,0.69,0.029,0.00131,0.68022868657494,0.0500000000118474,0.00135564782184761,0.05,0.05,0.05,0.0260317923174537,1.4032007815239e-10,0.000190041407906453,299,299,299 +"1014","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",100,0.69,0.029,0.00131,0.6813744273752,0.0500000000003099,0.00135334951488224,0.05,0.05,0.05,0.0128991835089443,1.00907554152635e-12,9.41499540600846e-05,299,299,299 +"1015","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",200,0.69,0.029,0.00131,0.681731199292581,0.0500000000001251,0.0013531962138951,0.05,0.05,0.05,0.0064313384229787,1.04042230662964e-13,4.6928581419636e-05,299,299,299 +"1016","OGC_AmsterdamUMC_biexp_segmented","esophagus",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.05,0.05,0.05,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 +"1017","OGC_AmsterdamUMC_biexp_segmented","esophagus",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.05,0.05,0.05,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 +"1018","OGC_AmsterdamUMC_biexp_segmented","esophagus",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.05,0.05,0.05,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 +"1019","OGC_AmsterdamUMC_biexp_segmented","esophagus",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.05,0.05,0.05,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 +"1020","OGC_AmsterdamUMC_biexp_segmented","esophagus",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.05,0.05,0.05,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 +"1021","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.05,0.05,0.05,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 +"1022","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.05,0.05,0.05,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 +"1023","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.05,0.05,0.05,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 +"1024","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.05,0.05,0.05,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 +"1025","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.05,0.05,0.05,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 +"1026","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.05,0.05,0.05,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 +"1027","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.05,0.05,0.05,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 +"1028","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.05,0.05,0.05,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 +"1029","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.05,0.05,0.05,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 +"1030","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.05,0.05,0.05,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 +"1031","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.05,0.05,0.05,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 +"1032","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.05,0.05,0.05,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 +"1033","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.05,0.05,0.05,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 +"1034","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.05,0.05,0.05,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 +"1035","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.05,0.05,0.05,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 +"1036","OGC_AmsterdamUMC_biexp_segmented","Liver",10,0.11,0.1,0.0015,0.0972321801659825,0.35559843435101,0.00150859052204052,0.05,0.05,0.05,0.134839808929966,0.632502439816993,0.000367327987709817,299,299,299 +"1037","OGC_AmsterdamUMC_biexp_segmented","Liver",30,0.11,0.1,0.0015,0.107694887153018,0.226173724263367,0.00150016928920599,0.05,0.05,0.05,0.0451472711617818,0.380098790845709,0.000121950650671429,299,299,299 +"1038","OGC_AmsterdamUMC_biexp_segmented","Liver",50,0.11,0.1,0.0015,0.108918954664912,0.137632134381599,0.00149957574189822,0.05,0.05,0.05,0.0269925765528699,0.173220331526938,7.29050804512238e-05,299,299,299 +"1039","OGC_AmsterdamUMC_biexp_segmented","Liver",100,0.11,0.1,0.0015,0.109571576926182,0.10728000421186,0.00149959253645644,0.05,0.05,0.05,0.0134700792856065,0.0365535919006858,3.63764396721475e-05,299,299,299 +"1040","OGC_AmsterdamUMC_biexp_segmented","Liver",200,0.11,0.1,0.0015,0.109813662467211,0.102101719440497,0.00149974766327095,0.05,0.05,0.05,0.00672998368978822,0.0157372078248851,1.81728271900004e-05,299,299,299 +"1041","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.05,0.05,0.05,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 +"1042","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.05,0.05,0.05,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 +"1043","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.05,0.05,0.05,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 +"1044","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.05,0.05,0.05,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 +"1045","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.05,0.05,0.05,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 +"1046","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",10,0.07,0.07,0.0015,0.0578936886535005,0.331287936090609,0.00150745703740933,0.05,0.05,0.05,0.133663508201973,0.620007223240229,0.000349561522849492,299,299,299 +"1047","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",30,0.07,0.07,0.0015,0.0677475633979726,0.252860531918122,0.00150007469297444,0.05,0.05,0.05,0.0451277322847106,0.462488933259553,0.000116654443267633,299,299,299 +"1048","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",50,0.07,0.07,0.0015,0.068936524801532,0.153221079980056,0.00149956512826645,0.05,0.05,0.05,0.0269874814666128,0.288290130918818,6.97554513344443e-05,299,299,299 +"1049","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",100,0.07,0.07,0.0015,0.0695745982637905,0.0851832608134713,0.00149960544347793,0.05,0.05,0.05,0.0134691574388598,0.0574276101213015,3.48091848323947e-05,299,299,299 +"1050","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",200,0.07,0.07,0.0015,0.0698130767438865,0.0732437488492484,0.00149975991644965,0.05,0.05,0.05,0.00672980083126172,0.0176595729765593,1.73906364708644e-05,299,299,299 +"1051","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.05,0.05,0.05,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 +"1052","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.05,0.05,0.05,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 +"1053","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.05,0.05,0.05,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 +"1054","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.05,0.05,0.05,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 +"1055","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.05,0.05,0.05,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 +"1056","OGC_AmsterdamUMC_biexp_segmented","pancreas",10,0.15,0.01,0.00129999999999999,0.100244765420066,0.266741520832647,0.00137548084876521,0.05,0.05,0.05,0.129912389751765,0.562164105737666,0.000344116696880167,299,299,299 +"1057","OGC_AmsterdamUMC_biexp_segmented","pancreas",30,0.15,0.01,0.00129999999999999,0.110360760973366,0.0661716722087468,0.00136667398578444,0.05,0.05,0.05,0.0433110167586883,0.140789670312433,0.000113720557310474,299,299,299 +"1058","OGC_AmsterdamUMC_biexp_segmented","pancreas",50,0.15,0.01,0.00129999999999999,0.111480583752563,0.0539705038259079,0.00136624929746589,0.05,0.05,0.05,0.0259040670714904,0.0479429254670281,6.80011412344266e-05,299,299,299 +"1059","OGC_AmsterdamUMC_biexp_segmented","pancreas",100,0.15,0.01,0.00129999999999999,0.112080763535825,0.0500000065580185,0.00136632895052346,0.05,0.05,0.05,0.0129294848715759,1.69774639357237e-08,3.39338191967857e-05,299,299,299 +"1060","OGC_AmsterdamUMC_biexp_segmented","pancreas",200,0.15,0.01,0.00129999999999999,0.112304748300198,0.050000000728181,0.0013664952449501,0.05,0.05,0.05,0.00646040206372423,6.32502873391021e-09,1.69533243857183e-05,299,299,299 +"1061","OGC_AmsterdamUMC_biexp_segmented","pericardium",10,0.07,0.00999999999999999,0.003,0.0520383050852133,0.17871463052579,0.00290810073173622,0.05,0.05,0.05,0.209231800764477,0.422831401538199,0.000739849912636431,299,299,299 +"1062","OGC_AmsterdamUMC_biexp_segmented","pericardium",30,0.07,0.00999999999999999,0.003,0.0344582030632704,0.193439082301208,0.00306329837568757,0.05,0.05,0.05,0.0804795684271075,0.466549615994945,0.000279719698417709,299,299,299 +"1063","OGC_AmsterdamUMC_biexp_segmented","pericardium",50,0.07,0.00999999999999999,0.003,0.0370860589999383,0.183326258829341,0.00306223557955883,0.05,0.05,0.05,0.0479655490509802,0.442363330135666,0.000167660569102541,299,299,299 +"1064","OGC_AmsterdamUMC_biexp_segmented","pericardium",100,0.07,0.00999999999999999,0.003,0.0387485065804243,0.106024067573401,0.00306070920381438,0.05,0.05,0.05,0.023849433162107,0.267496955607805,8.35301202824561e-05,299,299,299 +"1065","OGC_AmsterdamUMC_biexp_segmented","pericardium",200,0.07,0.00999999999999999,0.003,0.0393008418149469,0.0500135454072159,0.00306053200851328,0.05,0.05,0.05,0.0118997768390481,0.000219338674816968,4.17111224394722e-05,299,299,299 +"1066","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.05,0.05,0.05,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 +"1067","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.05,0.05,0.05,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 +"1068","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.05,0.05,0.05,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 +"1069","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.05,0.05,0.05,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 +"1070","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.05,0.05,0.05,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 +"1071","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.05,0.05,0.05,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 +"1072","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.05,0.05,0.05,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 +"1073","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.05,0.05,0.05,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 +"1074","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.05,0.05,0.05,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 +"1075","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.05,0.05,0.05,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 +"1076","OGC_AmsterdamUMC_biexp_segmented","small intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390164872,0.00131067694624179,0.05,0.05,0.05,0.143273359410903,0.0074659175711477,0.000965452623261198,299,299,299 +"1077","OGC_AmsterdamUMC_biexp_segmented","small intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091894,0.00136286457292459,0.05,0.05,0.05,0.0442643529688101,0.000185589786428744,0.000322790073010869,299,299,299 +"1078","OGC_AmsterdamUMC_biexp_segmented","small intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.05,0.05,0.05,0.0260317923438205,1.40320084211226e-10,0.000190041408090366,299,299,299 +"1079","OGC_AmsterdamUMC_biexp_segmented","small intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.05,0.05,0.05,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 +"1080","OGC_AmsterdamUMC_biexp_segmented","small intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.05,0.05,0.05,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 +"1081","OGC_AmsterdamUMC_biexp_segmented","spleen",10,0.2,0.03,0.00129999999999999,0.18520392281551,0.209255851356637,0.00131436647515706,0.05,0.05,0.05,0.128284620714988,0.43795050055203,0.000366856183513939,299,299,299 +"1082","OGC_AmsterdamUMC_biexp_segmented","spleen",30,0.2,0.03,0.00129999999999999,0.195921638044614,0.0570791154895169,0.00130408703951844,0.05,0.05,0.05,0.0419884764569373,0.0531685484918258,0.000119667429133032,299,299,299 +"1083","OGC_AmsterdamUMC_biexp_segmented","spleen",50,0.2,0.03,0.00129999999999999,0.197041413325606,0.0504893716375674,0.00130363013865361,0.05,0.05,0.05,0.0251082366944411,0.00383960153192709,7.15383551583112e-05,299,299,299 +"1084","OGC_AmsterdamUMC_biexp_segmented","spleen",100,0.2,0.03,0.00129999999999999,0.197638649057216,0.0500000097397441,0.0013037149142624,0.05,0.05,0.05,0.0125312243299692,1.90669760189101e-08,3.5694004704467e-05,299,299,299 +"1085","OGC_AmsterdamUMC_biexp_segmented","spleen",200,0.2,0.03,0.00129999999999999,0.197860311649606,0.050000009538866,0.00130389290756918,0.05,0.05,0.05,0.00626126043010556,1.66111763089958e-08,1.78317987728703e-05,299,299,299 +"1086","OGC_AmsterdamUMC_biexp_segmented","st wall",10,0.3,0.012,0.0015,0.224968563584563,0.152728411143095,0.00164792160735107,0.05,0.05,0.05,0.147842246989045,0.375057604026138,0.000489535231234454,299,299,299 +"1087","OGC_AmsterdamUMC_biexp_segmented","st wall",30,0.3,0.012,0.0015,0.238787520936113,0.0523502353354238,0.00163390334662365,0.05,0.05,0.05,0.048525316538426,0.0309648568654976,0.000160157639209458,299,299,299 +"1088","OGC_AmsterdamUMC_biexp_segmented","st wall",50,0.3,0.012,0.0015,0.240378264028766,0.0500000002507408,0.00163237397051999,0.05,0.05,0.05,0.0289474376095694,2.28400922500028e-09,9.5559900702868e-05,299,299,299 +"1089","OGC_AmsterdamUMC_biexp_segmented","st wall",100,0.3,0.012,0.0015,0.241188415913859,0.0500000000085327,0.00163207076247144,0.05,0.05,0.05,0.0144296581809571,2.55196631854657e-11,4.76338814555705e-05,299,299,299 +"1090","OGC_AmsterdamUMC_biexp_segmented","st wall",200,0.3,0.012,0.0015,0.241472821664073,0.050000000003392,0.00163218547366257,0.05,0.05,0.05,0.00720667286447567,2.68542354759096e-12,2.37887610442069e-05,299,299,299 +"1091","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.661034109428733,0.051953739032677,0.00131067694715308,0.05,0.05,0.05,0.143273359446166,0.00746591768148673,0.000965452622732951,299,299,299 +"1092","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.677766188297563,0.0500107152094703,0.00136286457295964,0.05,0.05,0.05,0.0442643528902771,0.000185589791293374,0.000322790072283088,299,299,299 +"1093","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.680228686551908,0.0500000000118474,0.00135564782204329,0.05,0.05,0.05,0.0260317923637547,1.40320090168179e-10,0.000190041408458065,299,299,299 +"1094","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.681374427368473,0.0500000000003099,0.00135334951494511,0.05,0.05,0.05,0.0128991835128633,1.00907554152635e-12,9.41499541220862e-05,299,299,299 +"1095","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.681731199274704,0.0500000000001251,0.00135319621405087,0.05,0.05,0.05,0.00643133843132689,1.04042199865913e-13,4.69285814418112e-05,299,299,299 +"1096","OGC_AmsterdamUMC_biexp_segmented","Vein",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770524695,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595995383155,0.000876166916139467,299,299,299 +"1097","OGC_AmsterdamUMC_biexp_segmented","Vein",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163886,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200746512,0.000876181456030473,299,299,299 +"1098","OGC_AmsterdamUMC_biexp_segmented","Vein",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114482,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.00468981671679721,0.000912813853531625,299,299,299 +"1099","OGC_AmsterdamUMC_biexp_segmented","Vein",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060782067,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175037519,0.000912855515978945,299,299,299 +"1100","OGC_AmsterdamUMC_biexp_segmented","Vein",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864984,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352002846,0.000913010145476883,299,299,299 +"1101","PV_MUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.05,0.05,0.05,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 +"1102","PV_MUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.05,0.05,0.05,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 +"1103","PV_MUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.05,0.05,0.05,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 +"1104","PV_MUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.05,0.05,0.05,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 +"1105","PV_MUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.05,0.05,0.05,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 +"1106","PV_MUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.691470348442192,0.0320827827770493,0.00124871997099421,0.05,0.05,0.05,0.105711327862916,0.0160018733645475,0.000901831520780432,299,299,299 +"1107","PV_MUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.688093183614171,0.0294562213763849,0.00132700814797154,0.05,0.05,0.05,0.0452600702218041,0.00371662172542782,0.00039381399431472,299,299,299 +"1108","PV_MUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.688966038440429,0.029199601596073,0.00131674145667986,0.05,0.05,0.05,0.0271841976242685,0.0021834868114162,0.000231514013534254,299,299,299 +"1109","PV_MUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689413085208427,0.0290804523150075,0.00131311782214893,0.05,0.05,0.05,0.0135989073526535,0.00108324352490203,0.000114727925771987,299,299,299 +"1110","PV_MUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689573180926678,0.0290430944880149,0.00131259557708985,0.05,0.05,0.05,0.00680047675905179,0.000540559071221946,5.72226175968247e-05,299,299,299 +"1111","PV_MUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.05,0.05,0.05,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 +"1112","PV_MUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.05,0.05,0.05,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 +"1113","PV_MUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.05,0.05,0.05,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 +"1114","PV_MUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.05,0.05,0.05,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 +"1115","PV_MUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.05,0.05,0.05,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 +"1116","PV_MUMC_biexp","Blood RV",10,1,0.1,0.003,0.911157661205427,0.123643660013595,0.000607355415641274,0.05,0.05,0.05,0.0263704296062989,0.0234808191539726,0.000781512767273926,299,299,299 +"1117","PV_MUMC_biexp","Blood RV",30,1,0.1,0.003,0.971237368284705,0.106940870680865,0.000607372598717673,0.05,0.05,0.05,0.00908754537244282,0.00648210009371694,0.000781528535341981,299,299,299 +"1118","PV_MUMC_biexp","Blood RV",50,1,0.1,0.003,0.982984250166763,0.104032609128906,0.000607380534286713,0.05,0.05,0.05,0.00546001928424493,0.00376732124561751,0.000781521963607196,299,299,299 +"1119","PV_MUMC_biexp","Blood RV",100,1,0.1,0.003,0.991733932625732,0.101934073427047,0.000607404386458529,0.05,0.05,0.05,0.00268925596027005,0.00184607816688224,0.000781542209010902,299,299,299 +"1120","PV_MUMC_biexp","Blood RV",200,1,0.1,0.003,0.996022656879395,0.100931454917885,0.000607227933379224,0.05,0.05,0.05,0.00133610299058227,0.00091514738792123,0.000780813589540255,299,299,299 +"1121","PV_MUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.691470348438474,0.0320827827803892,0.00124871997066846,0.05,0.05,0.05,0.105711327913523,0.0160018733571079,0.000901831520760143,299,299,299 +"1122","PV_MUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.688093183608034,0.029456221376894,0.0013270081480873,0.05,0.05,0.05,0.0452600702369857,0.00371662172759421,0.000393813994419125,299,299,299 +"1123","PV_MUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.688966038440901,0.0291996015957491,0.00131674145666527,0.05,0.05,0.05,0.0271841976084912,0.00218348680950215,0.000231514013492556,299,299,299 +"1124","PV_MUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689413085205758,0.0290804523152126,0.00131311782216352,0.05,0.05,0.05,0.0135989073563255,0.00108324352514479,0.00011472792578306,299,299,299 +"1125","PV_MUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689573180931052,0.0290430944877037,0.00131259557707978,0.05,0.05,0.05,0.00680047675835751,0.000540559071153575,5.72226175969141e-05,299,299,299 +"1126","PV_MUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.05,0.05,0.05,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 +"1127","PV_MUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.05,0.05,0.05,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 +"1128","PV_MUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.05,0.05,0.05,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 +"1129","PV_MUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.05,0.05,0.05,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 +"1130","PV_MUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.05,0.05,0.05,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 +"1131","PV_MUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.05,0.05,0.05,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 +"1132","PV_MUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.05,0.05,0.05,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 +"1133","PV_MUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.05,0.05,0.05,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 +"1134","PV_MUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.05,0.05,0.05,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 +"1135","PV_MUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.05,0.05,0.05,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 +"1136","PV_MUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.05,0.05,0.05,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 +"1137","PV_MUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.05,0.05,0.05,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 +"1138","PV_MUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.05,0.05,0.05,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 +"1139","PV_MUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.05,0.05,0.05,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 +"1140","PV_MUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.05,0.05,0.05,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 +"1141","PV_MUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.05,0.05,0.05,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 +"1142","PV_MUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.05,0.05,0.05,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 +"1143","PV_MUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.05,0.05,0.05,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 +"1144","PV_MUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.05,0.05,0.05,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 +"1145","PV_MUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.05,0.05,0.05,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 +"1146","PV_MUMC_biexp","Liver",10,0.11,0.1,0.0015,0.156096041950495,0.103004334953046,0.00143196282270513,0.05,0.05,0.05,0.110349251520112,0.0779961628143732,0.000358196217736956,299,299,299 +"1147","PV_MUMC_biexp","Liver",30,0.11,0.1,0.0015,0.116101779636099,0.1138229593791,0.00149777113036028,0.05,0.05,0.05,0.034776317507387,0.0600988513603365,0.000144925790948956,299,299,299 +"1148","PV_MUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111612534570894,0.109841008435211,0.00150002526959645,0.05,0.05,0.05,0.0190068115405264,0.0441056576363389,9.05346431726557e-05,299,299,299 +"1149","PV_MUMC_biexp","Liver",100,0.11,0.1,0.0015,0.11025104441505,0.103810736875319,0.00149980894457395,0.05,0.05,0.05,0.00905977798222036,0.0236768256802226,4.54189359484425e-05,299,299,299 +"1150","PV_MUMC_biexp","Liver",200,0.11,0.1,0.0015,0.110022352713976,0.101269696328069,0.0014998347111719,0.05,0.05,0.05,0.0044943742719744,0.0114224658712206,2.26988794968306e-05,299,299,299 +"1151","PV_MUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.05,0.05,0.05,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 +"1152","PV_MUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.05,0.05,0.05,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 +"1153","PV_MUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.05,0.05,0.05,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 +"1154","PV_MUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.05,0.05,0.05,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 +"1155","PV_MUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.05,0.05,0.05,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 +"1156","PV_MUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.128345687194747,0.0825316505228132,0.00140833862248053,0.05,0.05,0.05,0.114737913407162,0.0798040133006487,0.000322847727404802,299,299,299 +"1157","PV_MUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0808769411594791,0.093179188822108,0.00149089305452715,0.05,0.05,0.05,0.0404412487711946,0.0680662255269266,0.000129511673752725,299,299,299 +"1158","PV_MUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0738186548068268,0.0870087926746789,0.00149857823558983,0.05,0.05,0.05,0.023244544317497,0.0544978802925074,8.40169485215999e-05,299,299,299 +"1159","PV_MUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0707073237714697,0.0759757339514294,0.0014998056841726,0.05,0.05,0.05,0.0105581939281603,0.0292975136083979,4.34633510601474e-05,299,299,299 +"1160","PV_MUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070115739623736,0.0717332279515257,0.00149983895466135,0.05,0.05,0.05,0.00507917209030401,0.0131396922117831,2.17222451683666e-05,299,299,299 +"1161","PV_MUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.05,0.05,0.05,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 +"1162","PV_MUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.05,0.05,0.05,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 +"1163","PV_MUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.05,0.05,0.05,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 +"1164","PV_MUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.05,0.05,0.05,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 +"1165","PV_MUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.05,0.05,0.05,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 +"1166","PV_MUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.170823203204389,0.0484396671293969,0.00128341130108195,0.05,0.05,0.05,0.135276785103213,0.0693648067906324,0.000342833111852961,299,299,299 +"1167","PV_MUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.139357428753803,0.0211791605193582,0.00132956207649237,0.05,0.05,0.05,0.0600015004474031,0.0343714821910045,0.000136158605057219,299,299,299 +"1168","PV_MUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.136832912331991,0.0133451533082555,0.00132993178960967,0.05,0.05,0.05,0.0378707541645237,0.0118353435907057,8.31807200994293e-05,299,299,299 +"1169","PV_MUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.13591079011917,0.011464130733693,0.00132978574256788,0.05,0.05,0.05,0.019496680742444,0.00219037196718289,4.15321836208148e-05,299,299,299 +"1170","PV_MUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.135796421465576,0.0111580957885994,0.00132987960122183,0.05,0.05,0.05,0.00982799371378257,0.000979299181915567,2.07569431281731e-05,299,299,299 +"1171","PV_MUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.391019540038776,0.044643914104375,0.00245103379176744,0.05,0.05,0.05,0.345288990615877,0.0685553221727792,0.000589805944574225,299,299,299 +"1172","PV_MUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.279254963167638,0.0272516182326572,0.00286523068505902,0.05,0.05,0.05,0.326984869731808,0.0497742750374417,0.000202391605500055,299,299,299 +"1173","PV_MUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.197907121793284,0.0171779174735046,0.00292567942662698,0.05,0.05,0.05,0.257892241602723,0.0314712950254075,0.000122141208493828,299,299,299 +"1174","PV_MUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.101454392147406,0.0102999034458522,0.0029683983156719,0.05,0.05,0.05,0.0986460636016255,0.00484404848123746,5.80586216740766e-05,299,299,299 +"1175","PV_MUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0764077555060485,0.0099589090676984,0.00298894164686365,0.05,0.05,0.05,0.016170934406564,0.00205930827894513,2.4606310997004e-05,299,299,299 +"1176","PV_MUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.05,0.05,0.05,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 +"1177","PV_MUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.05,0.05,0.05,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 +"1178","PV_MUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.05,0.05,0.05,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 +"1179","PV_MUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.05,0.05,0.05,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 +"1180","PV_MUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.05,0.05,0.05,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 +"1181","PV_MUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.05,0.05,0.05,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 +"1182","PV_MUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.05,0.05,0.05,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 +"1183","PV_MUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.05,0.05,0.05,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 +"1184","PV_MUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.05,0.05,0.05,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 +"1185","PV_MUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.05,0.05,0.05,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 +"1186","PV_MUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.691470348425927,0.0320827827806415,0.00124871997099421,0.05,0.05,0.05,0.105711327887533,0.016001873378134,0.000901831520780432,299,299,299 +"1187","PV_MUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.688093183610048,0.0294562213769231,0.00132700814797154,0.05,0.05,0.05,0.0452600702287884,0.0037166217265589,0.00039381399431472,299,299,299 +"1188","PV_MUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.688966038442785,0.0291996015955794,0.00131674145667986,0.05,0.05,0.05,0.027184197603594,0.00218348680956759,0.000231514013534254,299,299,299 +"1189","PV_MUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.689413085207519,0.0290804523150365,0.00131311782214893,0.05,0.05,0.05,0.0135989073510044,0.00108324352463396,0.000114727925771987,299,299,299 +"1190","PV_MUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.68957318092911,0.0290430944878304,0.00131259557708985,0.05,0.05,0.05,0.0068004767604521,0.000540559071379342,5.72226175968247e-05,299,299,299 +"1191","PV_MUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.225876447681667,0.0575696359776324,0.00127966060384555,0.05,0.05,0.05,0.118602073944037,0.062520158480083,0.000393628482668222,299,299,299 +"1192","PV_MUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.203121072306131,0.0348456914497528,0.00130102510958467,0.05,0.05,0.05,0.0446268922956713,0.0210587094438441,0.000147164603791659,299,299,299 +"1193","PV_MUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201082893667275,0.0314005146720823,0.00130009513988208,0.05,0.05,0.05,0.0267655318154766,0.0084356309709076,8.81308491758965e-05,299,299,299 +"1194","PV_MUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200152032734671,0.0303879420503012,0.00129992844970833,0.05,0.05,0.05,0.0133442316652335,0.00389581230793204,4.39969606570532e-05,299,299,299 +"1195","PV_MUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.199941650919663,0.0301350345500522,0.00130002908549186,0.05,0.05,0.05,0.00666620755141141,0.00192377586272549,2.19877190353903e-05,299,299,299 +"1196","PV_MUMC_biexp","st wall",10,0.3,0.012,0.0015,0.298023904016928,0.0321774338838152,0.00153452580530155,0.05,0.05,0.05,0.161634014328888,0.0492747590086314,0.000533257004546953,299,299,299 +"1197","PV_MUMC_biexp","st wall",30,0.3,0.012,0.0015,0.282564165732307,0.0143589906421383,0.0015521476980438,0.05,0.05,0.05,0.0672954043174911,0.00604975921241117,0.000195511671547606,299,299,299 +"1198","PV_MUMC_biexp","st wall",50,0.3,0.012,0.0015,0.282485950207945,0.0132910251735412,0.00154952110824206,0.05,0.05,0.05,0.0414670585791545,0.00269394728308602,0.000116680545563146,299,299,299 +"1199","PV_MUMC_biexp","st wall",100,0.3,0.012,0.0015,0.282721607034729,0.0128953989042575,0.00154867348929894,0.05,0.05,0.05,0.0210071304061686,0.00120056802082814,5.81997124889235e-05,299,299,299 +"1200","PV_MUMC_biexp","st wall",200,0.3,0.012,0.0015,0.282901507396517,0.0127926313384841,0.00154860370649833,0.05,0.05,0.05,0.0105397038722219,0.000580337571786342,2.9079611017769e-05,299,299,299 +"1201","PV_MUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69147034850835,0.0320827827705391,0.00124871997062398,0.05,0.05,0.05,0.105711327778677,0.0160018733594873,0.000901831520052427,299,299,299 +"1202","PV_MUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688093183592201,0.0294562213780215,0.0013270081480987,0.05,0.05,0.05,0.0452600702314974,0.0037166217263804,0.00039381399452838,299,299,299 +"1203","PV_MUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688966038447113,0.0291996015955392,0.00131674145662316,0.05,0.05,0.05,0.0271841976254947,0.00218348681124656,0.000231514013569066,299,299,299 +"1204","PV_MUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689413085205192,0.0290804523152176,0.00131311782217142,0.05,0.05,0.05,0.0135989073535134,0.00108324352525754,0.000114727925798872,299,299,299 +"1205","PV_MUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689573180928788,0.0290430944879027,0.00131259557706545,0.05,0.05,0.05,0.00680047676072954,0.000540559071296888,5.72226175924109e-05,299,299,299 +"1206","PV_MUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.911157661201933,0.123643660019881,0.000607355415641274,0.05,0.05,0.05,0.0263704296071724,0.0234808191547324,0.000781512767273926,299,299,299 +"1207","PV_MUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.971237368284223,0.106940870680377,0.000607372598717673,0.05,0.05,0.05,0.00908754536827744,0.00648210009257791,0.000781528535341981,299,299,299 +"1208","PV_MUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.982984250165467,0.104032609129434,0.000607380534286713,0.05,0.05,0.05,0.00546001928016874,0.00376732124549515,0.000781521963607196,299,299,299 +"1209","PV_MUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.991733932627642,0.101934073426748,0.000607404386458529,0.05,0.05,0.05,0.00268925596046031,0.00184607816687764,0.000781542209010902,299,299,299 +"1210","PV_MUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996022656879185,0.100931454917881,0.000607227933379224,0.05,0.05,0.05,0.00133610299004237,0.00091514738790242,0.000780813589540255,299,299,299 +"1211","PvH_KB_NKI_IVIMfit","Artery",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1212","PvH_KB_NKI_IVIMfit","Artery",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1213","PvH_KB_NKI_IVIMfit","Artery",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1214","PvH_KB_NKI_IVIMfit","Artery",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1215","PvH_KB_NKI_IVIMfit","Artery",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1216","PvH_KB_NKI_IVIMfit","asc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.05,0.05,0.05,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 +"1217","PvH_KB_NKI_IVIMfit","asc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 +"1218","PvH_KB_NKI_IVIMfit","asc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1219","PvH_KB_NKI_IVIMfit","asc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1220","PvH_KB_NKI_IVIMfit","asc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 +"1221","PvH_KB_NKI_IVIMfit","Blood RA",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1222","PvH_KB_NKI_IVIMfit","Blood RA",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1223","PvH_KB_NKI_IVIMfit","Blood RA",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1224","PvH_KB_NKI_IVIMfit","Blood RA",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1225","PvH_KB_NKI_IVIMfit","Blood RA",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1226","PvH_KB_NKI_IVIMfit","Blood RV",10,1,0.1,0.003,0.925854765740672,0.122594446175349,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1227","PvH_KB_NKI_IVIMfit","Blood RV",30,1,0.1,0.003,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1228","PvH_KB_NKI_IVIMfit","Blood RV",50,1,0.1,0.003,0.985264177302766,0.103511662747401,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1229","PvH_KB_NKI_IVIMfit","Blood RV",100,1,0.1,0.003,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1230","PvH_KB_NKI_IVIMfit","Blood RV",200,1,0.1,0.003,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1231","PvH_KB_NKI_IVIMfit","desc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494931,0.00145020569396961,0.05,0.05,0.05,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 +"1232","PvH_KB_NKI_IVIMfit","desc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.0659651209936009,0.0695342477735909,0.000430833853766582,299,299,299 +"1233","PvH_KB_NKI_IVIMfit","desc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1234","PvH_KB_NKI_IVIMfit","desc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.030464931163596,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1235","PvH_KB_NKI_IVIMfit","desc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620521,5.2174106371215e-05,299,299,299 +"1236","PvH_KB_NKI_IVIMfit","esophagus",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.05,0.05,0.05,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 +"1237","PvH_KB_NKI_IVIMfit","esophagus",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.05,0.05,0.05,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 +"1238","PvH_KB_NKI_IVIMfit","esophagus",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.05,0.05,0.05,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 +"1239","PvH_KB_NKI_IVIMfit","esophagus",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.05,0.05,0.05,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 +"1240","PvH_KB_NKI_IVIMfit","esophagus",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.05,0.05,0.05,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 +"1241","PvH_KB_NKI_IVIMfit","esophagus cont",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.05,0.05,0.05,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 +"1242","PvH_KB_NKI_IVIMfit","esophagus cont",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.05,0.05,0.05,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 +"1243","PvH_KB_NKI_IVIMfit","esophagus cont",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.05,0.05,0.05,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 +"1244","PvH_KB_NKI_IVIMfit","esophagus cont",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.05,0.05,0.05,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 +"1245","PvH_KB_NKI_IVIMfit","esophagus cont",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.05,0.05,0.05,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 +"1246","PvH_KB_NKI_IVIMfit","Left kidney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.05,0.05,0.05,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 +"1247","PvH_KB_NKI_IVIMfit","Left kidney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.05,0.05,0.05,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 +"1248","PvH_KB_NKI_IVIMfit","Left kidney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.05,0.05,0.05,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 +"1249","PvH_KB_NKI_IVIMfit","Left kidney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.05,0.05,0.05,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 +"1250","PvH_KB_NKI_IVIMfit","Left kidney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.05,0.05,0.05,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 +"1251","PvH_KB_NKI_IVIMfit","left kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.05,0.05,0.05,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 +"1252","PvH_KB_NKI_IVIMfit","left kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.05,0.05,0.05,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 +"1253","PvH_KB_NKI_IVIMfit","left kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.05,0.05,0.05,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 +"1254","PvH_KB_NKI_IVIMfit","left kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.05,0.05,0.05,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 +"1255","PvH_KB_NKI_IVIMfit","left kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.05,0.05,0.05,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 +"1256","PvH_KB_NKI_IVIMfit","Liver",10,0.11,0.1,0.0015,0.130553125135909,0.0509693625828437,0.0016065178196472,0.05,0.05,0.05,0.129706715815292,0.792719308738518,0.000572920768415419,299,299,299 +"1257","PvH_KB_NKI_IVIMfit","Liver",30,0.11,0.1,0.0015,0.110278145674883,0.149442129088004,0.00150011017405457,0.05,0.05,0.05,0.0601392900256081,0.625749782983355,0.000145272381840614,299,299,299 +"1258","PvH_KB_NKI_IVIMfit","Liver",50,0.11,0.1,0.0015,0.110399658585875,0.156527047310139,0.00149684450774862,0.05,0.05,0.05,0.0376036872310902,0.425066413433666,8.60313303494503e-05,299,299,299 +"1259","PvH_KB_NKI_IVIMfit","Liver",100,0.11,0.1,0.0015,0.110613242728435,0.113081530764667,0.00149725968516574,0.05,0.05,0.05,0.0187819737007067,0.139029982910973,4.28771429001848e-05,299,299,299 +"1260","PvH_KB_NKI_IVIMfit","Liver",200,0.11,0.1,0.0015,0.110409079705549,0.104936964791345,0.00149834160010346,0.05,0.05,0.05,0.00940444951440735,0.0672001936578303,2.14439959817085e-05,299,299,299 +"1261","PvH_KB_NKI_IVIMfit","Myocardium LV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.05,0.05,0.05,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 +"1262","PvH_KB_NKI_IVIMfit","Myocardium LV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.05,0.05,0.05,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 +"1263","PvH_KB_NKI_IVIMfit","Myocardium LV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.05,0.05,0.05,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 +"1264","PvH_KB_NKI_IVIMfit","Myocardium LV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.05,0.05,0.05,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 +"1265","PvH_KB_NKI_IVIMfit","Myocardium LV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.05,0.05,0.05,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 +"1266","PvH_KB_NKI_IVIMfit","myocardium ra",10,0.07,0.07,0.0015,0.104891587924175,0.00607975763165955,0.0016006526233169,0.05,0.05,0.05,0.118242882720712,0.784263691811179,0.000552215395037113,299,299,299 +"1267","PvH_KB_NKI_IVIMfit","myocardium ra",30,0.07,0.07,0.0015,0.0739083859817402,0.0645768275334392,0.0014995372849829,0.05,0.05,0.05,0.0552732082517841,0.772165078977779,0.000138751825608962,299,299,299 +"1268","PvH_KB_NKI_IVIMfit","myocardium ra",50,0.07,0.07,0.0015,0.0708663136362167,0.123754667071953,0.00149678850563412,0.05,0.05,0.05,0.0370810778303522,0.731555137917985,8.22913661782403e-05,299,299,299 +"1269","PvH_KB_NKI_IVIMfit","myocardium ra",100,0.07,0.07,0.0015,0.0706249468151481,0.0952858250331106,0.00149733160718627,0.05,0.05,0.05,0.0189664010793653,0.232113078306709,4.10318998599181e-05,299,299,299 +"1270","PvH_KB_NKI_IVIMfit","myocardium ra",200,0.07,0.07,0.0015,0.0704117897329917,0.0782860101683691,0.00149840262255921,0.05,0.05,0.05,0.00949705354554412,0.104550226230099,2.052244821904e-05,299,299,299 +"1271","PvH_KB_NKI_IVIMfit","myocardium RV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.05,0.05,0.05,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 +"1272","PvH_KB_NKI_IVIMfit","myocardium RV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.05,0.05,0.05,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 +"1273","PvH_KB_NKI_IVIMfit","myocardium RV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.05,0.05,0.05,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 +"1274","PvH_KB_NKI_IVIMfit","myocardium RV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.05,0.05,0.05,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 +"1275","PvH_KB_NKI_IVIMfit","myocardium RV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.05,0.05,0.05,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 +"1276","PvH_KB_NKI_IVIMfit","pancreas",10,0.15,0.01,0.00129999999999999,0.136937978548182,0.00740651793198569,0.0014215214212872,0.05,0.05,0.05,0.127266105496299,0.732213635772408,0.000486503747187268,299,299,299 +"1277","PvH_KB_NKI_IVIMfit","pancreas",30,0.15,0.01,0.00129999999999999,0.121887930651615,0.0763137640180288,0.00133959929142515,0.05,0.05,0.05,0.0568364469705239,0.636807478517948,0.000126780491704173,299,299,299 +"1278","PvH_KB_NKI_IVIMfit","pancreas",50,0.15,0.01,0.00129999999999999,0.122753935187266,0.0341776204631551,0.00133777754178323,0.05,0.05,0.05,0.0342667143936854,0.25609885196659,7.54325143220183e-05,299,299,299 +"1279","PvH_KB_NKI_IVIMfit","pancreas",100,0.15,0.01,0.00129999999999999,0.122866903165779,0.0198817713875208,0.00133844951393785,0.05,0.05,0.05,0.0171420721199015,0.115209943762463,3.76500896537364e-05,299,299,299 +"1280","PvH_KB_NKI_IVIMfit","pancreas",200,0.15,0.01,0.00129999999999999,0.122698908969178,0.0153586053551514,0.00133941675752602,0.05,0.05,0.05,0.00858477069866618,0.0566470440677396,1.8833704996794e-05,299,299,299 +"1281","PvH_KB_NKI_IVIMfit","pericardium",10,0.07,0.00999999999999999,0.003,0.200345432832572,0.0186626001573525,0.00287291963623568,0.05,0.05,0.05,0.191226965934387,0.511499382712566,0.000944685697624608,299,299,299 +"1282","PvH_KB_NKI_IVIMfit","pericardium",30,0.07,0.00999999999999999,0.003,0.0875410442211974,0.0439264206482478,0.00319637616853394,0.05,0.05,0.05,0.0985206186954527,0.520788624543118,0.000739212332980352,299,299,299 +"1283","PvH_KB_NKI_IVIMfit","pericardium",50,0.07,0.00999999999999999,0.003,0.0713588507505067,0.0343763501514692,0.0030838364312501,0.05,0.05,0.05,0.0723755425130893,0.468187571504604,0.000430508407815945,299,299,299 +"1284","PvH_KB_NKI_IVIMfit","pericardium",100,0.07,0.00999999999999999,0.003,0.0593432428582622,0.0319897344925359,0.00302450453014257,0.05,0.05,0.05,0.0457502568825803,0.346527742871074,0.000170492747418252,299,299,299 +"1285","PvH_KB_NKI_IVIMfit","pericardium",200,0.07,0.00999999999999999,0.003,0.0541407860947715,0.0270422083825517,0.00301893623987703,0.05,0.05,0.05,0.0277552901447244,0.292432776404661,8.24583932743335e-05,299,299,299 +"1286","PvH_KB_NKI_IVIMfit","right kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.05,0.05,0.05,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 +"1287","PvH_KB_NKI_IVIMfit","right kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.05,0.05,0.05,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 +"1288","PvH_KB_NKI_IVIMfit","right kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.05,0.05,0.05,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 +"1289","PvH_KB_NKI_IVIMfit","right kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.05,0.05,0.05,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 +"1290","PvH_KB_NKI_IVIMfit","right kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.05,0.05,0.05,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 +"1291","PvH_KB_NKI_IVIMfit","Right kydney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.05,0.05,0.05,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 +"1292","PvH_KB_NKI_IVIMfit","Right kydney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.05,0.05,0.05,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 +"1293","PvH_KB_NKI_IVIMfit","Right kydney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.05,0.05,0.05,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 +"1294","PvH_KB_NKI_IVIMfit","Right kydney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.05,0.05,0.05,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 +"1295","PvH_KB_NKI_IVIMfit","Right kydney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.05,0.05,0.05,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 +"1296","PvH_KB_NKI_IVIMfit","small intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.05,0.05,0.05,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 +"1297","PvH_KB_NKI_IVIMfit","small intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 +"1298","PvH_KB_NKI_IVIMfit","small intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1299","PvH_KB_NKI_IVIMfit","small intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1300","PvH_KB_NKI_IVIMfit","small intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 +"1301","PvH_KB_NKI_IVIMfit","spleen",10,0.2,0.03,0.00129999999999999,0.19599662156176,0.0613021299109845,0.00140454927731428,0.05,0.05,0.05,0.142733288723022,0.865447287904048,0.000582749143091828,299,299,299 +"1302","PvH_KB_NKI_IVIMfit","spleen",30,0.2,0.03,0.00129999999999999,0.197871845000451,0.0577937712781124,0.00130150037459746,0.05,0.05,0.05,0.055408133031037,0.277217446552304,0.00013547179107877,299,299,299 +"1303","PvH_KB_NKI_IVIMfit","spleen",50,0.2,0.03,0.00129999999999999,0.199033284978018,0.0416870355859719,0.00129916879604953,0.05,0.05,0.05,0.0330237742731732,0.145965289641754,8.0485438606961e-05,299,299,299 +"1304","PvH_KB_NKI_IVIMfit","spleen",100,0.2,0.03,0.00129999999999999,0.19917657455647,0.0350155098095822,0.00129971733953303,0.05,0.05,0.05,0.0165151433454204,0.0707993903611688,4.01541066264376e-05,299,299,299 +"1305","PvH_KB_NKI_IVIMfit","spleen",200,0.2,0.03,0.00129999999999999,0.199026311814169,0.0324096874623236,0.00130069837749038,0.05,0.05,0.05,0.00827092761229601,0.0352168114201335,2.00852625417637e-05,299,299,299 +"1306","PvH_KB_NKI_IVIMfit","st wall",10,0.3,0.012,0.0015,0.248638297229233,0.036411695424523,0.00172921114226417,0.05,0.05,0.05,0.166347389770017,0.707332243192263,0.000685672723936133,299,299,299 +"1307","PvH_KB_NKI_IVIMfit","st wall",30,0.3,0.012,0.0015,0.258772026363496,0.0293822581865603,0.00157517600100472,0.05,0.05,0.05,0.0644388435309329,0.202407559113073,0.000186844089466446,299,299,299 +"1308","PvH_KB_NKI_IVIMfit","st wall",50,0.3,0.012,0.0015,0.261282486348394,0.0209857397911496,0.00156758941794651,0.05,0.05,0.05,0.0377177202881088,0.108793385587951,0.000109279996332855,299,299,299 +"1309","PvH_KB_NKI_IVIMfit","st wall",100,0.3,0.012,0.0015,0.261756786309685,0.0167953481082953,0.00156685824436581,0.05,0.05,0.05,0.0187674242305055,0.0531745626261237,5.42621275679737e-05,299,299,299 +"1310","PvH_KB_NKI_IVIMfit","st wall",200,0.3,0.012,0.0015,0.261595673443184,0.0150031541093374,0.00156794185426091,0.05,0.05,0.05,0.00939312930329243,0.0264999219499804,2.71220994549821e-05,299,299,299 +"1311","PvH_KB_NKI_IVIMfit","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.680218362444095,0.0500663182494929,0.00145020569396961,0.05,0.05,0.05,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 +"1312","PvH_KB_NKI_IVIMfit","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.0659651209936008,0.0695342477735909,0.000430833853766582,299,299,299 +"1313","PvH_KB_NKI_IVIMfit","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832124,299,299,299 +"1314","PvH_KB_NKI_IVIMfit","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.685021723698742,0.030464931163596,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1315","PvH_KB_NKI_IVIMfit","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620522,5.2174106371215e-05,299,299,299 +"1316","PvH_KB_NKI_IVIMfit","Vein",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1317","PvH_KB_NKI_IVIMfit","Vein",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1318","PvH_KB_NKI_IVIMfit","Vein",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1319","PvH_KB_NKI_IVIMfit","Vein",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1320","PvH_KB_NKI_IVIMfit","Vein",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 From a9cfe61d21a126b9eb8ce70b1b8dd2488c6fd1ae Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 07:48:35 -0800 Subject: [PATCH 20/87] Update workflow --- .github/workflows/analysis.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 01a1260..51a1202 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -118,6 +118,7 @@ jobs: use-public-rspm: true - name: Install R dependencies uses: r-lib/actions/setup-r-dependencies@v2 + cache: true with: packages: | any::plyr @@ -157,10 +158,10 @@ jobs: use-public-rspm: true - name: Install R dependencies uses: r-lib/actions/setup-r-dependencies@v2 + cache: true with: packages: | any::tidyverse - any::stats any::assertr - name: Download artifacts uses: actions/download-artifact@v3 @@ -168,3 +169,10 @@ jobs: name: Data - name: Test against previous results run: Rscript --vanilla tests/IVIMmodels/unit_tests/compare.r test_output.csv test_reference.csv reference_output.csv test_results.csv + - name: Upload data + uses: actions/upload-artifact@v3 + with: + name: Comparison + path: | + test_reference.csv + test_results.csv \ No newline at end of file From 0d56a81042d79d5d3b5cc8e3b59274c9ba65d887 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 07:52:03 -0800 Subject: [PATCH 21/87] Remove cache --- .github/workflows/analysis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 51a1202..7c5d00f 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -118,7 +118,6 @@ jobs: use-public-rspm: true - name: Install R dependencies uses: r-lib/actions/setup-r-dependencies@v2 - cache: true with: packages: | any::plyr @@ -158,7 +157,6 @@ jobs: use-public-rspm: true - name: Install R dependencies uses: r-lib/actions/setup-r-dependencies@v2 - cache: true with: packages: | any::tidyverse From 724d1d73bfe5a5ff9476b1e117a1c8a255f39deb Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 08:14:57 -0800 Subject: [PATCH 22/87] Fix reference file path --- .github/workflows/analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 7c5d00f..76814da 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -166,7 +166,7 @@ jobs: with: name: Data - name: Test against previous results - run: Rscript --vanilla tests/IVIMmodels/unit_tests/compare.r test_output.csv test_reference.csv reference_output.csv test_results.csv + run: Rscript --vanilla tests/IVIMmodels/unit_tests/compare.r test_output.csv test_reference.csv tests/IVIMmodels/unit_tests/reference_output.csv test_results.csv - name: Upload data uses: actions/upload-artifact@v3 with: From 64caccb69487f77a5784099ab1afe478f56b4e3b Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 08:52:22 -0800 Subject: [PATCH 23/87] Always upload artifacts --- .github/workflows/analysis.yml | 2 ++ tests/IVIMmodels/unit_tests/compare.r | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 76814da..53f6257 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -133,6 +133,7 @@ jobs: run: Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv - name: Upload figures uses: actions/upload-artifact@v3 + if: always() with: name: Figures path: | @@ -169,6 +170,7 @@ jobs: run: Rscript --vanilla tests/IVIMmodels/unit_tests/compare.r test_output.csv test_reference.csv tests/IVIMmodels/unit_tests/reference_output.csv test_results.csv - name: Upload data uses: actions/upload-artifact@v3 + if: always() with: name: Comparison path: | diff --git a/tests/IVIMmodels/unit_tests/compare.r b/tests/IVIMmodels/unit_tests/compare.r index 6a7de50..a99ce44 100644 --- a/tests/IVIMmodels/unit_tests/compare.r +++ b/tests/IVIMmodels/unit_tests/compare.r @@ -38,7 +38,7 @@ keep_columns_reference <- c("Algorithm", "Region", "SNR", "f", "Dp", "D", "f_mu" keep_columns_test <- c("Algorithm", "Region", "SNR", "index", "f", "Dp", "D", "f_fitted", "Dp_fitted", "D_fitted") test <- read_csv(test_file) %>% - select(keep_columns_test) %>% + select(all_of(keep_columns_test)) %>% # Convert Algorithm and Region to factors mutate(Algorithm = as.factor(Algorithm), Region = as.factor(Region)) @@ -94,7 +94,7 @@ if (nchar(reference_file) == 0) { # Read data from CSV files and select only relevant columns reference <- read_csv(reference_file) %>% - select(keep_columns_reference) %>% + select(all_of(keep_columns_reference)) %>% # Convert Algorithm and Region to factors mutate(Algorithm = as.factor(Algorithm), Region = as.factor(Region)) From d82587aa5cb8233cc2187fcf06a0fdec4e20881e Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 09:30:41 -0800 Subject: [PATCH 24/87] Update reference file --- .../unit_tests/reference_output.csv | 2640 ++++++++--------- 1 file changed, 1320 insertions(+), 1320 deletions(-) diff --git a/tests/IVIMmodels/unit_tests/reference_output.csv b/tests/IVIMmodels/unit_tests/reference_output.csv index e227676..435905d 100644 --- a/tests/IVIMmodels/unit_tests/reference_output.csv +++ b/tests/IVIMmodels/unit_tests/reference_output.csv @@ -1,1321 +1,1321 @@ "","Algorithm","Region","SNR","f","Dp","D","f_mu","Dp_mu","D_mu","f_alpha","Dp_alpha","D_alpha","f_std","Dp_std","D_std","f_df","Dp_df","D_df" -"1","ETP_SRI_LinearFitting","Artery",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 -"2","ETP_SRI_LinearFitting","Artery",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 -"3","ETP_SRI_LinearFitting","Artery",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 -"4","ETP_SRI_LinearFitting","Artery",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 -"5","ETP_SRI_LinearFitting","Artery",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"6","ETP_SRI_LinearFitting","asc lower intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.05,0.05,0.05,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 -"7","ETP_SRI_LinearFitting","asc lower intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.05,0.05,0.05,1.76780563288555,0.0425455021045266,0.00106933510259241,299,299,299 -"8","ETP_SRI_LinearFitting","asc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094785,0.000565757923733332,299,299,299 -"9","ETP_SRI_LinearFitting","asc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.05,0.05,0.05,0.0657882130636678,0.0129318475024161,0.000272558015550553,299,299,299 -"10","ETP_SRI_LinearFitting","asc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.05,0.05,0.05,0.0318472093243258,0.00994517539003604,0.000135584729312215,299,299,299 -"11","ETP_SRI_LinearFitting","Blood RA",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 -"12","ETP_SRI_LinearFitting","Blood RA",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 -"13","ETP_SRI_LinearFitting","Blood RA",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 -"14","ETP_SRI_LinearFitting","Blood RA",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 -"15","ETP_SRI_LinearFitting","Blood RA",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"16","ETP_SRI_LinearFitting","Blood RV",10,1,0.1,0.003,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 -"17","ETP_SRI_LinearFitting","Blood RV",30,1,0.1,0.003,0.593621105303909,0.0382494989565618,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335538,0.00202899165966831,299,299,299 -"18","ETP_SRI_LinearFitting","Blood RV",50,1,0.1,0.003,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 -"19","ETP_SRI_LinearFitting","Blood RV",100,1,0.1,0.003,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 -"20","ETP_SRI_LinearFitting","Blood RV",200,1,0.1,0.003,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"21","ETP_SRI_LinearFitting","desc lower intestine",10,0.69,0.029,0.00131,-1.78046847362474,0.016522289744801,0.0016441792429181,0.05,0.05,0.05,15.8239651221778,0.0700506422948962,0.00211653751766345,299,299,299 -"22","ETP_SRI_LinearFitting","desc lower intestine",30,0.69,0.029,0.00131,0.475373627248901,0.022456787601217,0.00136414593549871,0.05,0.05,0.05,1.76780563288553,0.0425455021045259,0.00106933510259241,299,299,299 -"23","ETP_SRI_LinearFitting","desc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094785,0.000565757923733331,299,299,299 -"24","ETP_SRI_LinearFitting","desc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.018072945218478,0.00128589506813888,0.05,0.05,0.05,0.0657882130636677,0.012931847502416,0.000272558015550553,299,299,299 -"25","ETP_SRI_LinearFitting","desc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447003,0.001295710009054,0.05,0.05,0.05,0.0318472093243258,0.00994517539003595,0.000135584729312215,299,299,299 -"26","ETP_SRI_LinearFitting","esophagus",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.05,0.05,0.05,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 -"27","ETP_SRI_LinearFitting","esophagus",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.05,0.05,0.05,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 -"28","ETP_SRI_LinearFitting","esophagus",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.05,0.05,0.05,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 -"29","ETP_SRI_LinearFitting","esophagus",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.05,0.05,0.05,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 -"30","ETP_SRI_LinearFitting","esophagus",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.05,0.05,0.05,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 -"31","ETP_SRI_LinearFitting","esophagus cont",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.05,0.05,0.05,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 -"32","ETP_SRI_LinearFitting","esophagus cont",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.05,0.05,0.05,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 -"33","ETP_SRI_LinearFitting","esophagus cont",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.05,0.05,0.05,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 -"34","ETP_SRI_LinearFitting","esophagus cont",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.05,0.05,0.05,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 -"35","ETP_SRI_LinearFitting","esophagus cont",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.05,0.05,0.05,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 -"36","ETP_SRI_LinearFitting","Left kidney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.05,0.05,0.05,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 -"37","ETP_SRI_LinearFitting","Left kidney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.05,0.05,0.05,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 -"38","ETP_SRI_LinearFitting","Left kidney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.05,0.05,0.05,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 -"39","ETP_SRI_LinearFitting","Left kidney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.05,0.05,0.05,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 -"40","ETP_SRI_LinearFitting","Left kidney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.05,0.05,0.05,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 -"41","ETP_SRI_LinearFitting","left kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.05,0.05,0.05,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 -"42","ETP_SRI_LinearFitting","left kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.05,0.05,0.05,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 -"43","ETP_SRI_LinearFitting","left kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.05,0.05,0.05,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 -"44","ETP_SRI_LinearFitting","left kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.05,0.05,0.05,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 -"45","ETP_SRI_LinearFitting","left kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.05,0.05,0.05,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 -"46","ETP_SRI_LinearFitting","Liver",10,0.11,0.1,0.0015,-3.67105854933764,0.0103322924138449,0.00161495986282209,0.05,0.05,0.05,50.5725151160169,0.100845172822066,0.00140857424525187,299,299,299 -"47","ETP_SRI_LinearFitting","Liver",30,0.11,0.1,0.0015,0.0969318407879205,0.0145642929149208,0.00147246699637093,0.05,0.05,0.05,0.269776485804268,0.0971893509566391,0.000377588902171262,299,299,299 -"48","ETP_SRI_LinearFitting","Liver",50,0.11,0.1,0.0015,0.112644420990274,0.0988492551721873,0.0014787002760584,0.05,0.05,0.05,0.150827871968332,0.380693459960368,0.000223664227770201,299,299,299 -"49","ETP_SRI_LinearFitting","Liver",100,0.11,0.1,0.0015,0.114915102854363,0.0889095920483081,0.00148764168516119,0.05,0.05,0.05,0.0738473058377525,0.328370788509957,0.000111502995637712,299,299,299 -"50","ETP_SRI_LinearFitting","Liver",200,0.11,0.1,0.0015,0.113341186733021,0.0725340532416588,0.00149339727236951,0.05,0.05,0.05,0.0368404978098108,0.138234643262059,5.57744401860227e-05,299,299,299 -"51","ETP_SRI_LinearFitting","Myocardium LV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.05,0.05,0.05,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 -"52","ETP_SRI_LinearFitting","Myocardium LV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.05,0.05,0.05,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 -"53","ETP_SRI_LinearFitting","Myocardium LV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.05,0.05,0.05,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 -"54","ETP_SRI_LinearFitting","Myocardium LV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.05,0.05,0.05,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 -"55","ETP_SRI_LinearFitting","Myocardium LV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.05,0.05,0.05,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 -"56","ETP_SRI_LinearFitting","myocardium ra",10,0.07,0.07,0.0015,-1.65951665423363,0.0177238771115808,0.00160957265059348,0.05,0.05,0.05,13.1554017697515,0.183131672721427,0.00136088593186554,299,299,299 -"57","ETP_SRI_LinearFitting","myocardium ra",30,0.07,0.07,0.0015,0.0589564569081104,0.0296093937203642,0.00147279822346654,0.05,0.05,0.05,0.266937871380083,0.242638673913433,0.000360646166742376,299,299,299 -"58","ETP_SRI_LinearFitting","myocardium ra",50,0.07,0.07,0.0015,0.0732759014900858,0.0328371698735262,0.00147933187029512,0.05,0.05,0.05,0.1504150174967,0.216423076996624,0.000213945675661325,299,299,299 -"59","ETP_SRI_LinearFitting","myocardium ra",100,0.07,0.07,0.0015,0.075067261558205,0.0677774461043471,0.00148810347075861,0.05,0.05,0.05,0.0738177865239001,0.269492649198698,0.000106705818256413,299,299,299 -"60","ETP_SRI_LinearFitting","myocardium ra",200,0.07,0.07,0.0015,0.0733792311780607,0.0623676153801111,0.00149366381082312,0.05,0.05,0.05,0.0368411946796926,0.237445081999106,5.33779360572001e-05,299,299,299 -"61","ETP_SRI_LinearFitting","myocardium RV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.05,0.05,0.05,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 -"62","ETP_SRI_LinearFitting","myocardium RV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.05,0.05,0.05,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 -"63","ETP_SRI_LinearFitting","myocardium RV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.05,0.05,0.05,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 -"64","ETP_SRI_LinearFitting","myocardium RV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.05,0.05,0.05,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 -"65","ETP_SRI_LinearFitting","myocardium RV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.05,0.05,0.05,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 -"66","ETP_SRI_LinearFitting","pancreas",10,0.15,0.01,0.00129999999999999,-0.650527215028878,0.00373368564161748,0.00138866565214997,0.05,0.05,0.05,4.93667394171624,0.00722474221217601,0.00119248691671331,299,299,299 -"67","ETP_SRI_LinearFitting","pancreas",30,0.15,0.01,0.00129999999999999,0.141181390443557,0.0571022180430843,0.00127631910355573,0.05,0.05,0.05,0.223328699407368,0.30235917617171,0.000329779178430446,299,299,299 -"68","ETP_SRI_LinearFitting","pancreas",50,0.15,0.01,0.00129999999999999,0.1510036083282,0.0152944083015561,0.00128385681159516,0.05,0.05,0.05,0.127982122939212,0.126325868230149,0.000196269231755713,299,299,299 -"69","ETP_SRI_LinearFitting","pancreas",100,0.15,0.01,0.00129999999999999,0.151847983395745,0.0131626451974964,0.00129232113375324,0.05,0.05,0.05,0.0631293755739931,0.0377927362687652,9.79894642257458e-05,299,299,299 -"70","ETP_SRI_LinearFitting","pancreas",200,0.15,0.01,0.00129999999999999,0.150332194355078,0.0109445926132955,0.00129741584499017,0.05,0.05,0.05,0.0315327839698718,0.00587272237819955,4.90247818549865e-05,299,299,299 -"71","ETP_SRI_LinearFitting","pericardium",10,0.07,0.00999999999999999,0.003,-1.71069455396435,0.00413806480279475,0.00222002363044559,0.05,0.05,0.05,11.3461458015308,0.00796330900457343,0.00214350424805972,299,299,299 -"72","ETP_SRI_LinearFitting","pericardium",30,0.07,0.00999999999999999,0.003,-2.91527744837181,0.00507173294709184,0.00321986504376209,0.05,0.05,0.05,18.8162955606326,0.0031589206110522,0.00176542899681745,299,299,299 -"73","ETP_SRI_LinearFitting","pericardium",50,0.07,0.00999999999999999,0.003,-0.725107480466489,0.0146143161821091,0.00308436166182826,0.05,0.05,0.05,5.02892397652847,0.139670661799305,0.0011228429935268,299,299,299 -"74","ETP_SRI_LinearFitting","pericardium",100,0.07,0.00999999999999999,0.003,0.0395072922651046,0.00739762781595787,0.00298132773142143,0.05,0.05,0.05,0.337660314112399,0.026548244280092,0.000442399989892903,299,299,299 -"75","ETP_SRI_LinearFitting","pericardium",200,0.07,0.00999999999999999,0.003,0.0717940918714239,0.0314985196375023,0.00298144117966044,0.05,0.05,0.05,0.139726244311711,0.210455939290863,0.000213771886702303,299,299,299 -"76","ETP_SRI_LinearFitting","right kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.05,0.05,0.05,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 -"77","ETP_SRI_LinearFitting","right kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.05,0.05,0.05,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 -"78","ETP_SRI_LinearFitting","right kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.05,0.05,0.05,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 -"79","ETP_SRI_LinearFitting","right kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.05,0.05,0.05,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 -"80","ETP_SRI_LinearFitting","right kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.05,0.05,0.05,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 -"81","ETP_SRI_LinearFitting","Right kydney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.05,0.05,0.05,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 -"82","ETP_SRI_LinearFitting","Right kydney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.05,0.05,0.05,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 -"83","ETP_SRI_LinearFitting","Right kydney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.05,0.05,0.05,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 -"84","ETP_SRI_LinearFitting","Right kydney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.05,0.05,0.05,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 -"85","ETP_SRI_LinearFitting","Right kydney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.05,0.05,0.05,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 -"86","ETP_SRI_LinearFitting","small intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.05,0.05,0.05,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 -"87","ETP_SRI_LinearFitting","small intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.05,0.05,0.05,1.76780563288555,0.0425455021045267,0.00106933510259241,299,299,299 -"88","ETP_SRI_LinearFitting","small intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094786,0.000565757923733332,299,299,299 -"89","ETP_SRI_LinearFitting","small intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.05,0.05,0.05,0.0657882130636678,0.0129318475024162,0.000272558015550553,299,299,299 -"90","ETP_SRI_LinearFitting","small intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.05,0.05,0.05,0.0318472093243258,0.00994517539003606,0.000135584729312215,299,299,299 -"91","ETP_SRI_LinearFitting","spleen",10,0.2,0.03,0.00129999999999999,-3.3740132522231,0.00553618298512768,0.00143433710820903,0.05,0.05,0.05,32.2937373001832,0.0199199575648861,0.00143622539626405,299,299,299 -"92","ETP_SRI_LinearFitting","spleen",30,0.2,0.03,0.00129999999999999,0.191616803068673,0.0524339373886503,0.00127246317690968,0.05,0.05,0.05,0.225231222917192,0.241188205504064,0.000351229948037188,299,299,299 -"93","ETP_SRI_LinearFitting","spleen",50,0.2,0.03,0.00129999999999999,0.202791755119256,0.039825290894353,0.0012798791928558,0.05,0.05,0.05,0.128062905075638,0.160615566355117,0.000208715871266267,299,299,299 -"94","ETP_SRI_LinearFitting","spleen",100,0.2,0.03,0.00129999999999999,0.204134185690545,0.0296901197338264,0.00128864343929708,0.05,0.05,0.05,0.063013883604555,0.059005431253839,0.000104155540475188,299,299,299 -"95","ETP_SRI_LinearFitting","spleen",200,0.2,0.03,0.00129999999999999,0.202743964725328,0.0217979487010552,0.0012939998603653,0.05,0.05,0.05,0.0314614070504959,0.0204643988878911,5.21071683813949e-05,299,299,299 -"96","ETP_SRI_LinearFitting","st wall",10,0.3,0.012,0.0015,-1.64610469307265,0.00469872580015407,0.0016722712729154,0.05,0.05,0.05,15.8055997491259,0.0116896306708749,0.00158171276921857,299,299,299 -"97","ETP_SRI_LinearFitting","st wall",30,0.3,0.012,0.0015,0.270890694864435,0.0145946544452255,0.00147533983907024,0.05,0.05,0.05,0.296176769896366,0.0644575311240057,0.000487785371238241,299,299,299 -"98","ETP_SRI_LinearFitting","st wall",50,0.3,0.012,0.0015,0.29676404903463,0.0206118664406517,0.00147812190285612,0.05,0.05,0.05,0.154483980727086,0.138058215589313,0.000285387872646462,299,299,299 -"99","ETP_SRI_LinearFitting","st wall",100,0.3,0.012,0.0015,0.302162253072998,0.0127072898874613,0.00148765340763967,0.05,0.05,0.05,0.0742535435648724,0.00999336152068087,0.000141764252457752,299,299,299 -"100","ETP_SRI_LinearFitting","st wall",200,0.3,0.012,0.0015,0.301306786736074,0.0115839512910052,0.00149453131653136,0.05,0.05,0.05,0.0369195438104536,0.0039251958924262,7.08740730226027e-05,299,299,299 -"101","ETP_SRI_LinearFitting","trans lower intestine",10,0.69,0.029,0.00130999999999999,-1.78046847362465,0.0165222897448011,0.0016441792429181,0.05,0.05,0.05,15.8239651221768,0.0700506422948976,0.00211653751766344,299,299,299 -"102","ETP_SRI_LinearFitting","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.475373627248902,0.0224567876012169,0.00136414593549871,0.05,0.05,0.05,1.7678056328855,0.042545502104526,0.00106933510259241,299,299,299 -"103","ETP_SRI_LinearFitting","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.670719339656506,0.0216164735545652,0.00128259234710564,0.05,0.05,0.05,0.164103675182257,0.0316288973094783,0.000565757923733331,299,299,299 -"104","ETP_SRI_LinearFitting","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689682968828103,0.018072945218478,0.00128589506813888,0.05,0.05,0.05,0.0657882130636677,0.0129318475024159,0.000272558015550553,299,299,299 -"105","ETP_SRI_LinearFitting","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.6916765650872,0.0183295045447003,0.001295710009054,0.05,0.05,0.05,0.0318472093243257,0.00994517539003592,0.000135584729312215,299,299,299 -"106","ETP_SRI_LinearFitting","Vein",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.05,0.05,0.05,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 -"107","ETP_SRI_LinearFitting","Vein",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.05,0.05,0.05,2.34878753731438,0.0820324479335514,0.00202899165966831,299,299,299 -"108","ETP_SRI_LinearFitting","Vein",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.05,0.05,0.05,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 -"109","ETP_SRI_LinearFitting","Vein",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.05,0.05,0.05,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 -"110","ETP_SRI_LinearFitting","Vein",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.05,0.05,0.05,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"111","IAR_LU_biexp","Artery",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.05,0.05,0.05,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 -"112","IAR_LU_biexp","Artery",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.05,0.05,0.05,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 -"113","IAR_LU_biexp","Artery",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.05,0.05,0.05,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 -"114","IAR_LU_biexp","Artery",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.05,0.05,0.05,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 -"115","IAR_LU_biexp","Artery",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.05,0.05,0.05,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 -"116","IAR_LU_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.697212667896394,0.0325023737565882,0.00113782850824108,0.05,0.05,0.05,0.0969149603369071,0.0150873113090282,0.00075651551093642,299,299,299 -"117","IAR_LU_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690042687609969,0.0293408736715589,0.00129733848997831,0.05,0.05,0.05,0.0360947595237916,0.00363625975881636,0.000283880194097926,299,299,299 -"118","IAR_LU_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.690035517241786,0.0291115984791372,0.00130238538452424,0.05,0.05,0.05,0.0214722239467864,0.00211805849668056,0.000167872936460034,299,299,299 -"119","IAR_LU_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.69001659059687,0.0290241717802667,0.00130617192275866,0.05,0.05,0.05,0.0106870876911403,0.00104662367079566,8.33919719679096e-05,299,299,299 -"120","IAR_LU_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.690006715696218,0.0290045215204471,0.001308087187188,0.05,0.05,0.05,0.00533599564952396,0.000521521540722386,4.16245932209183e-05,299,299,299 -"121","IAR_LU_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.05,0.05,0.05,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 -"122","IAR_LU_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.05,0.05,0.05,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 -"123","IAR_LU_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.05,0.05,0.05,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 -"124","IAR_LU_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.05,0.05,0.05,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 -"125","IAR_LU_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.05,0.05,0.05,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 -"126","IAR_LU_biexp","Blood RV",10,1,0.1,0.003,0.92647069528709,0.0982613762257002,0.000127034347081598,0.05,0.05,0.05,0.0215210674974187,0.0049615271733654,0.000371973812375611,299,299,299 -"127","IAR_LU_biexp","Blood RV",30,1,0.1,0.003,0.977495351986575,0.0994484053261729,8.6776830208335e-05,0.05,0.05,0.05,0.00692461752875168,0.00165005168400417,0.00029552015946517,299,299,299 -"128","IAR_LU_biexp","Blood RV",50,1,0.1,0.003,0.986847787847024,0.0996578523977876,7.50360360821851e-05,0.05,0.05,0.05,0.00411089364523165,0.00101750527880633,0.000278518469327793,299,299,299 -"129","IAR_LU_biexp","Blood RV",100,1,0.1,0.003,0.993665235855317,0.0998164880990098,5.78826114675235e-05,0.05,0.05,0.05,0.0020037885125151,0.000529926879857713,0.000263826199490928,299,299,299 -"130","IAR_LU_biexp","Blood RV",200,1,0.1,0.003,0.996952138241195,0.09990235409644,4.82142679154876e-05,0.05,0.05,0.05,0.000991618405480444,0.000274814551227168,0.000256559602777668,299,299,299 -"131","IAR_LU_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.697212667300357,0.0325023737719409,0.00113782851118961,0.05,0.05,0.05,0.0969149608678149,0.0150873112968303,0.00075651551240572,299,299,299 -"132","IAR_LU_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690042687627665,0.0293408736706232,0.00129733848988675,0.05,0.05,0.05,0.0360947594628279,0.00363625975619238,0.00028388019375974,299,299,299 -"133","IAR_LU_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.690035515572817,0.0291115986604859,0.00130238539842299,0.05,0.05,0.05,0.0214722257649461,0.002118058553172,0.000167872962249228,299,299,299 -"134","IAR_LU_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.690016590562107,0.0290241717827196,0.00130617192299434,0.05,0.05,0.05,0.0106870876869911,0.00104662367148246,8.33919720257604e-05,299,299,299 -"135","IAR_LU_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.690006715693301,0.0290045215206338,0.00130808718720708,0.05,0.05,0.05,0.00533599565206864,0.000521521540571046,4.1624593218652e-05,299,299,299 -"136","IAR_LU_biexp","esophagus",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.05,0.05,0.05,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 -"137","IAR_LU_biexp","esophagus",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.05,0.05,0.05,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 -"138","IAR_LU_biexp","esophagus",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.05,0.05,0.05,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 -"139","IAR_LU_biexp","esophagus",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.05,0.05,0.05,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 -"140","IAR_LU_biexp","esophagus",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.05,0.05,0.05,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 -"141","IAR_LU_biexp","esophagus cont",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.05,0.05,0.05,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 -"142","IAR_LU_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.05,0.05,0.05,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 -"143","IAR_LU_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.05,0.05,0.05,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 -"144","IAR_LU_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.05,0.05,0.05,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 -"145","IAR_LU_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.05,0.05,0.05,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 -"146","IAR_LU_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.05,0.05,0.05,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 -"147","IAR_LU_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.05,0.05,0.05,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 -"148","IAR_LU_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.05,0.05,0.05,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 -"149","IAR_LU_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.05,0.05,0.05,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 -"150","IAR_LU_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.05,0.05,0.05,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 -"151","IAR_LU_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.05,0.05,0.05,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 -"152","IAR_LU_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.05,0.05,0.05,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 -"153","IAR_LU_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.05,0.05,0.05,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 -"154","IAR_LU_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.05,0.05,0.05,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 -"155","IAR_LU_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.05,0.05,0.05,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 -"156","IAR_LU_biexp","Liver",10,0.11,0.1,0.0015,0.17150503347828,0.0585894869688638,0.00133082929506349,0.05,0.05,0.05,0.136516097304139,0.040090038616655,0.000354915450632941,299,299,299 -"157","IAR_LU_biexp","Liver",30,0.11,0.1,0.0015,0.116524922609641,0.0797461322710395,0.00147039590886351,0.05,0.05,0.05,0.0333445716851057,0.0273586641563357,9.54315771325179e-05,299,299,299 -"158","IAR_LU_biexp","Liver",50,0.11,0.1,0.0015,0.111213985993271,0.0871710843301268,0.00148797791711182,0.05,0.05,0.05,0.0154006163091042,0.0181177747169451,4.76546785250623e-05,299,299,299 -"159","IAR_LU_biexp","Liver",100,0.11,0.1,0.0015,0.110305056949762,0.0927872237401196,0.00149443585404214,0.05,0.05,0.05,0.00760367346398485,0.010636984816954,2.3490644652322e-05,299,299,299 -"160","IAR_LU_biexp","Liver",200,0.11,0.1,0.0015,0.110083101922637,0.0961088632553183,0.00149729667035132,0.05,0.05,0.05,0.00377409246386361,0.00589352197554721,1.16519052488367e-05,299,299,299 -"161","IAR_LU_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.05,0.05,0.05,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 -"162","IAR_LU_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.05,0.05,0.05,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 -"163","IAR_LU_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.05,0.05,0.05,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 -"164","IAR_LU_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.05,0.05,0.05,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 -"165","IAR_LU_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.05,0.05,0.05,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 -"166","IAR_LU_biexp","myocardium ra",10,0.07,0.07,0.0015,0.14434529830722,0.0496160441966283,0.00132998441282674,0.05,0.05,0.05,0.140855149533486,0.0404605423176663,0.000341449090754878,299,299,299 -"167","IAR_LU_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884934019340212,0.0605990186959302,0.00145501083368677,0.05,0.05,0.05,0.0492325838484117,0.0351976192418362,0.000113777290620505,299,299,299 -"168","IAR_LU_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0758647169781666,0.06791650050496,0.00148333041539624,0.05,0.05,0.05,0.0230456661351546,0.0291001629249576,5.93738477118657e-05,299,299,299 -"169","IAR_LU_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0708749125967571,0.0711936438005044,0.00149642377167344,0.05,0.05,0.05,0.00816500710666416,0.0192721206922887,2.43863373496943e-05,299,299,299 -"170","IAR_LU_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070182595378895,0.0711717683305259,0.00149896894166523,0.05,0.05,0.05,0.00403298414730219,0.0119620121584671,1.22446271475917e-05,299,299,299 -"171","IAR_LU_biexp","myocardium RV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.05,0.05,0.05,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 -"172","IAR_LU_biexp","myocardium RV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.05,0.05,0.05,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 -"173","IAR_LU_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.05,0.05,0.05,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 -"174","IAR_LU_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.05,0.05,0.05,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 -"175","IAR_LU_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.05,0.05,0.05,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 -"176","IAR_LU_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.194101487815807,0.0312758838743002,0.00120526646626578,0.05,0.05,0.05,0.163835605660646,0.0351134171828845,0.000389002224095764,299,299,299 -"177","IAR_LU_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.18057781110752,0.0172903815631494,0.00125161129207905,0.05,0.05,0.05,0.0946201475796243,0.0207613933514163,0.000184226392073428,299,299,299 -"178","IAR_LU_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.172218377812807,0.0122015061567802,0.00126461919523248,0.05,0.05,0.05,0.0680057817004279,0.0102895468472958,0.000126280292095513,299,299,299 -"179","IAR_LU_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156814390417323,0.010276360650811,0.00128831420397952,0.05,0.05,0.05,0.0330925441819963,0.00280594101449204,6.19579959599574e-05,299,299,299 -"180","IAR_LU_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151550794401852,0.0100513328503536,0.00129688092235998,0.05,0.05,0.05,0.0150249218350546,0.00127661999397567,2.91039408170828e-05,299,299,299 -"181","IAR_LU_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.285492213115468,0.0190670326981962,0.00226157462609275,0.05,0.05,0.05,0.295897833443307,0.0281974740030665,0.000970921790568731,299,299,299 -"182","IAR_LU_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171300202118549,0.0176658968150002,0.00279755619927794,0.05,0.05,0.05,0.192343219823375,0.0249759051303956,0.000428028390979465,299,299,299 -"183","IAR_LU_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.150556932149508,0.0186673286620893,0.00287029554388432,0.05,0.05,0.05,0.153716456740351,0.024823540168741,0.000300739466996796,299,299,299 -"184","IAR_LU_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.137271520897935,0.0160473990749268,0.00290927547149749,0.05,0.05,0.05,0.117893566693985,0.0195152724982985,0.000196241930893257,299,299,299 -"185","IAR_LU_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.102312394147559,0.0125930930414983,0.00295777596823617,0.05,0.05,0.05,0.0785041069510577,0.0109051130123374,0.000124246519340491,299,299,299 -"186","IAR_LU_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.05,0.05,0.05,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 -"187","IAR_LU_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.05,0.05,0.05,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 -"188","IAR_LU_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.05,0.05,0.05,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 -"189","IAR_LU_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.05,0.05,0.05,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 -"190","IAR_LU_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.05,0.05,0.05,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 -"191","IAR_LU_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.05,0.05,0.05,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 -"192","IAR_LU_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.05,0.05,0.05,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 -"193","IAR_LU_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.05,0.05,0.05,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 -"194","IAR_LU_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.05,0.05,0.05,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 -"195","IAR_LU_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.05,0.05,0.05,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 -"196","IAR_LU_biexp","small intestine",10,0.69,0.029,0.00131,0.697212667324408,0.0325023737670926,0.00113782851099832,0.05,0.05,0.05,0.0969149608580876,0.0150873112899437,0.000756515511829932,299,299,299 -"197","IAR_LU_biexp","small intestine",30,0.69,0.029,0.00131,0.690042687647921,0.0293408736692245,0.0012973384897293,0.05,0.05,0.05,0.0360947594630489,0.00363625975813661,0.000283880193523868,299,299,299 -"198","IAR_LU_biexp","small intestine",50,0.69,0.029,0.00131,0.690035515564786,0.0291115986613112,0.00130238539849337,0.05,0.05,0.05,0.0214722257688065,0.00211805855379368,0.000167872962555997,299,299,299 -"199","IAR_LU_biexp","small intestine",100,0.69,0.029,0.00131,0.690016590577353,0.0290241717816333,0.00130617192289034,0.05,0.05,0.05,0.0106870876894146,0.00104662367040614,8.33919719690564e-05,299,299,299 -"200","IAR_LU_biexp","small intestine",200,0.69,0.029,0.00131,0.690006715703415,0.0290045215198542,0.00130808718713812,0.05,0.05,0.05,0.00533599564919373,0.000521521540682779,4.16245931960093e-05,299,299,299 -"201","IAR_LU_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.258238381169185,0.0415855486936915,0.001156583030263,0.05,0.05,0.05,0.138972935730348,0.033199359136067,0.000392002777022699,299,299,299 -"202","IAR_LU_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206967214328514,0.0338919578464336,0.00128156423965599,0.05,0.05,0.05,0.0387633481889241,0.0175409201633337,0.000113885202343254,299,299,299 -"203","IAR_LU_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202249286598062,0.0312833908166694,0.00129256952434829,0.05,0.05,0.05,0.0221581511313069,0.00879736911181636,6.60123263011774e-05,299,299,299 -"204","IAR_LU_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200487080304842,0.0302504275785877,0.0012973937314337,0.05,0.05,0.05,0.0107457183685509,0.00383295563309727,3.20648907780344e-05,299,299,299 -"205","IAR_LU_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.20009205584711,0.030052736227119,0.00129897493246634,0.05,0.05,0.05,0.00531656690976873,0.00186528647470474,1.58727384991494e-05,299,299,299 -"206","IAR_LU_biexp","st wall",10,0.3,0.012,0.0015,0.361045681611347,0.0252956083225308,0.00131717399629326,0.05,0.05,0.05,0.20326722786523,0.0285647281439496,0.000612145460756818,299,299,299 -"207","IAR_LU_biexp","st wall",30,0.3,0.012,0.0015,0.323962428710257,0.0134193933845625,0.00143886841292422,0.05,0.05,0.05,0.0982083290063556,0.00798933272515384,0.000260082486221727,299,299,299 -"208","IAR_LU_biexp","st wall",50,0.3,0.012,0.0015,0.307361980831941,0.012384744394028,0.00147968648747327,0.05,0.05,0.05,0.0543906266860356,0.00311905673053413,0.000143561177270617,299,299,299 -"209","IAR_LU_biexp","st wall",100,0.3,0.012,0.0015,0.301677558443888,0.0120878361093821,0.00149434290424516,0.05,0.05,0.05,0.0263384511959087,0.0014322760683357,6.96636660243356e-05,299,299,299 -"210","IAR_LU_biexp","st wall",200,0.3,0.012,0.0015,0.300399087873271,0.0120193042665729,0.0014981386774852,0.05,0.05,0.05,0.0130979678723596,0.000698591450954127,3.46398328200195e-05,299,299,299 -"211","IAR_LU_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.697212667722101,0.0325023737662354,0.0011378285095022,0.05,0.05,0.05,0.0969149605281008,0.0150873112941006,0.00075651551328862,299,299,299 -"212","IAR_LU_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.69004268765537,0.0293408736684314,0.00129733848966368,0.05,0.05,0.05,0.0360947595155316,0.00363625976077757,0.000283880194085563,299,299,299 -"213","IAR_LU_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.690035515530053,0.0291115986633909,0.00130238539872579,0.05,0.05,0.05,0.0214722257310754,0.00211805855231437,0.00016787296220424,299,299,299 -"214","IAR_LU_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.690016590592847,0.0290241717807258,0.00130617192278856,0.05,0.05,0.05,0.0106870876903053,0.00104662367103972,8.33919719260138e-05,299,299,299 -"215","IAR_LU_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.690006715695885,0.0290045215203316,0.00130808718718679,0.05,0.05,0.05,0.00533599564581372,0.000521521540492688,4.16245931726914e-05,299,299,299 -"216","IAR_LU_biexp","Vein",10,1,0.1,0.00299999999999999,0.926470695260705,0.0982613762253741,0.000127034347223934,0.05,0.05,0.05,0.0215210674937771,0.00496152716857027,0.000371973810625793,299,299,299 -"217","IAR_LU_biexp","Vein",30,1,0.1,0.00299999999999999,0.977495351988701,0.0994484053257689,8.67768297506284e-05,0.05,0.05,0.05,0.00692461752649988,0.00165005168479494,0.000295520156728701,299,299,299 -"218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.05,0.05,0.05,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 -"219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.05,0.05,0.05,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 -"220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.05,0.05,0.05,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 -"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933585497630734,0.0981574637022146,9.69406898291101e-05,0.05,0.05,0.05,0.0215367890806767,0.00483736920084973,0.000275993218688137,299,299,299 -"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660989935616,0.09892538068859,0.000105437917432832,0.05,0.05,0.05,0.00717848555815703,0.00255244861895363,0.000389451720196529,299,299,299 -"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987498292249604,0.0993297948005376,0.000129153520967711,0.05,0.05,0.05,0.00422940688351617,0.00160204634532573,0.000484317874679621,299,299,299 -"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993800721064657,0.0996297879797104,0.00065420398455906,0.05,0.05,0.05,0.00223485357796604,0.000852587823156189,0.000795654484174987,299,299,299 -"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996838931326603,0.0998120234434894,0.000929915100500146,0.05,0.05,0.05,0.00121939515034729,0.000433140335431692,0.000927151212504707,299,299,299 -"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.70118302735804,0.0376631816755619,0.00123552777447261,0.05,0.05,0.05,0.083800073393047,0.0142303382036424,0.00069987927068995,299,299,299 -"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689290201472111,0.0305667965245306,0.00132573557528108,0.05,0.05,0.05,0.0343112861107501,0.00387422243041273,0.000274365267777591,299,299,299 -"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689070661016898,0.0296133292823638,0.00131661904617102,0.05,0.05,0.05,0.0211036646185242,0.00231401133197021,0.0001656407183691,299,299,299 -"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689235660743524,0.029167441395601,0.00131239336623538,0.05,0.05,0.05,0.0106212837453345,0.0011846364212203,8.31546841668358e-05,299,299,299 -"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689605411677327,0.0290613542977066,0.00131096046346112,0.05,0.05,0.05,0.0053047890375494,0.00059643388657717,4.15768305642699e-05,299,299,299 -"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933571673906352,0.0981799962816648,9.69425147886995e-05,0.05,0.05,0.05,0.0215317621644235,0.00482883970088294,0.000274227459135603,299,299,299 -"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978664750442118,0.0989241474263079,0.000105459538818055,0.05,0.05,0.05,0.00717458041858446,0.00256031714155621,0.000391569928720496,299,299,299 -"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987513435646139,0.0993179395078281,0.000133318715467788,0.05,0.05,0.05,0.004260591582303,0.00163067367550637,0.000506176346665106,299,299,299 -"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993779059530937,0.0996317405784665,0.000656411734244829,0.05,0.05,0.05,0.00223379403702236,0.000861993056453572,0.000794135815507235,299,299,299 -"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996844778623803,0.0998034706987736,0.000950962794224168,0.05,0.05,0.05,0.00123141962885952,0.000438547712579806,0.000907622146565708,299,299,299 -"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933567035160943,0.0981804000612912,9.72358009655355e-05,0.05,0.05,0.05,0.0215322487384184,0.00482732054754276,0.000276298754251513,299,299,299 -"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662585458701,0.0989275435014284,0.000105269073550906,0.05,0.05,0.05,0.00717623785341058,0.00255739983142373,0.000390634737387853,299,299,299 -"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987518051546122,0.0993263314438898,0.000138935424465376,0.05,0.05,0.05,0.0042889324277417,0.00159807301810923,0.000530085175043958,299,299,299 -"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993800120720217,0.0996308888078363,0.000668329516844987,0.05,0.05,0.05,0.00225541087319911,0.000846891999037567,0.000826258792976595,299,299,299 -"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996847421670637,0.0998045328409555,0.000864913218319493,0.05,0.05,0.05,0.00121889233676043,0.000451966909610354,0.000878525200280662,299,299,299 -"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.70121041701841,0.0376593650236406,0.00123528058664086,0.05,0.05,0.05,0.0838036997765366,0.0142238700835626,0.000699364346933705,299,299,299 -"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689288149030223,0.0305675922099419,0.00132580305344227,0.05,0.05,0.05,0.0342914648115165,0.00387497402129783,0.000274452663613485,299,299,299 -"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067878962496,0.0296136379222481,0.00131660398462184,0.05,0.05,0.05,0.0211182395127554,0.00231582938186994,0.000165690641494043,299,299,299 -"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689242117678549,0.0291665005973849,0.00131234225636359,0.05,0.05,0.05,0.0106116326097694,0.00118434299165919,8.32281354387567e-05,299,299,299 -"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689582683156737,0.029063777535345,0.00131111431833381,0.05,0.05,0.05,0.0053032064935523,0.0005946748005775,4.15793061176523e-05,299,299,299 -"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.401162145085842,0.0445055628772153,0.00153973562036614,0.05,0.05,0.05,0.102560345837135,0.025884854056261,0.000432756638002491,299,299,299 -"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337533779047726,0.0333150694221572,0.0016483392294891,0.05,0.05,0.05,0.0404716928827937,0.0096734243145236,0.000155138538668039,299,299,299 -"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327801319839287,0.0312784835259254,0.00165934570033412,0.05,0.05,0.05,0.0251894020334782,0.00504247724050779,9.37998848782849e-05,299,299,299 -"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.321627368855783,0.0303637053064357,0.00166700903132637,0.05,0.05,0.05,0.0130056647244023,0.00246450105925069,4.73130928640306e-05,299,299,299 -"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.319960908208232,0.0301265137579372,0.0016695890944156,0.05,0.05,0.05,0.00666677601793114,0.00123942743436455,2.37339112795748e-05,299,299,299 -"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400889682428286,0.0445226753139279,0.00154156783293044,0.05,0.05,0.05,0.1021859015598,0.0258539259722867,0.000435332444587206,299,299,299 -"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337499868040702,0.0333271220929418,0.00164847626448462,0.05,0.05,0.05,0.0404619601433055,0.00968540822537649,0.000155032220764248,299,299,299 -"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327741720611451,0.0312943052711291,0.00165947680528061,0.05,0.05,0.05,0.0252188578971051,0.00506703151509424,9.3959149379938e-05,299,299,299 -"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321575920235398,0.0303764016154378,0.00166718997527805,0.05,0.05,0.05,0.0130103093338018,0.00245778871593873,4.71990619240319e-05,299,299,299 -"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319991093848812,0.0301194325931127,0.00166949510753206,0.05,0.05,0.05,0.00666201174666317,0.00123834858180601,2.35984887416209e-05,299,299,299 -"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.251345368028037,0.0471020192793795,0.00187448619145168,0.05,0.05,0.05,0.152953898200326,0.0326779401179953,0.000510080044555109,299,299,299 -"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.151979124306745,0.0339941368124393,0.00204284390075736,0.05,0.05,0.05,0.0760883203629435,0.0273468927146377,0.000194312207301133,299,299,299 -"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125804871960354,0.0288752056381118,0.00208022109781104,0.05,0.05,0.05,0.0480640263401514,0.0220489446417168,0.000120438531413508,299,299,299 -"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109168357520658,0.021077360490286,0.00210050604102789,0.05,0.05,0.05,0.020268427580592,0.00856516862516735,5.53556562603283e-05,299,299,299 -"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.102581896039993,0.0195425340297463,0.00210914244284839,0.05,0.05,0.05,0.00994676692830774,0.00301367716344368,2.73179763288563e-05,299,299,299 -"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.292034630066685,0.0461642767173421,0.00186211580652248,0.05,0.05,0.05,0.155532304872419,0.0327544711206179,0.000547848012495798,299,299,299 -"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194835611675974,0.0298474230438033,0.00204403383065649,0.05,0.05,0.05,0.071093392228958,0.021799987179614,0.000204182527731966,299,299,299 -"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174228360388138,0.0242446116007389,0.00207257722194447,0.05,0.05,0.05,0.0415766102985543,0.0129380338395601,0.00012163276516502,299,299,299 -"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163237475571564,0.0203163311409967,0.0020842579040657,0.05,0.05,0.05,0.021011224436512,0.00392656966496356,6.09849419959358e-05,299,299,299 -"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158888459956295,0.0194416172008109,0.00208916433547989,0.05,0.05,0.05,0.0111078223660085,0.00196332099136461,3.15976297706685e-05,299,299,299 -"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.241195762595272,0.0641654476797552,0.00132912841758645,0.05,0.05,0.05,0.100694310558914,0.034250612128544,0.000295056725307876,299,299,299 -"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.141213557486457,0.0800305754522179,0.00145767605779149,0.05,0.05,0.05,0.0329335303013413,0.0263107454662648,8.88655476807034e-05,299,299,299 -"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.123094957014719,0.086999016424148,0.00148129387342066,0.05,0.05,0.05,0.0184556585214603,0.0178505327252305,4.84946585640519e-05,299,299,299 -"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113750268164224,0.092524082839646,0.00149249113528396,0.05,0.05,0.05,0.00970299447281858,0.0104613450599458,2.39324552481813e-05,299,299,299 -"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111149886019375,0.0957900537062345,0.00149660173854397,0.05,0.05,0.05,0.00522986852432767,0.00580876732017651,1.19355661833082e-05,299,299,299 -"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.291461531322172,0.0633741097816199,0.00207354825447423,0.05,0.05,0.05,0.127600864533294,0.0334257397322378,0.000514837747046843,299,299,299 -"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.178238818785873,0.0764159231355582,0.00234502570486846,0.05,0.05,0.05,0.0371825276847334,0.0243272747907427,0.00015354388168928,299,299,299 -"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160907614688624,0.0792853722958595,0.00237823230591232,0.05,0.05,0.05,0.020775702876769,0.0182771610044057,8.79510748991933e-05,299,299,299 -"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152018373563651,0.080628062270499,0.00239454604085722,0.05,0.05,0.05,0.0108771228682302,0.0119667335585884,4.43924701040362e-05,299,299,299 -"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150216575152172,0.0804395133575349,0.00239853625134527,0.05,0.05,0.05,0.00576529382927084,0.00694792112961558,2.25712941323861e-05,299,299,299 -"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217381435048705,0.0546014978951041,0.00133088376673827,0.05,0.05,0.05,0.107017812623059,0.0335043866652647,0.000296877652470363,299,299,299 -"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114067574717232,0.0609859850983968,0.00144665125100077,0.05,0.05,0.05,0.040808187912398,0.032104126460489,9.69849544457694e-05,299,299,299 -"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906501902532086,0.0664025572584136,0.00147526301118425,0.05,0.05,0.05,0.0229951286523781,0.0267473691720359,5.62977724302272e-05,299,299,299 -"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763081428195683,0.0703118234726863,0.00149223142494865,0.05,0.05,0.05,0.0109726396869631,0.020399941603336,2.72838648901952e-05,299,299,299 -"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.071197609947188,0.0709483192362304,0.00149817892060369,0.05,0.05,0.05,0.00549944888013432,0.0123968597996033,1.32752542158846e-05,299,299,299 -"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29034384218522,0.0631565417130999,0.00207916770385992,0.05,0.05,0.05,0.123193211880161,0.0335419868913901,0.00050252681313231,299,299,299 -"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178483930265191,0.0761830881036707,0.00234426105130915,0.05,0.05,0.05,0.0370034531892405,0.0244995141549738,0.000155052331078036,299,299,299 -"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160935831707148,0.0792434645616752,0.00237814940348313,0.05,0.05,0.05,0.0208119159221461,0.0182715470271146,8.79195049404153e-05,299,299,299 -"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152022054741608,0.0806192212779407,0.00239452642464703,0.05,0.05,0.05,0.010880877106502,0.0119712696029772,4.44099048947006e-05,299,299,299 -"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150196054953055,0.0804758477530009,0.00239861246359178,0.05,0.05,0.05,0.00572396348327311,0.00690924160541797,2.25640313183623e-05,299,299,299 -"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.252480196718275,0.0423213607154336,0.00122835902753387,0.05,0.05,0.05,0.126759367660771,0.0327891272800392,0.000344745148402653,299,299,299 -"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.183152520004523,0.0218703820043612,0.00127836575968715,0.05,0.05,0.05,0.07100908070794,0.0220963397688661,0.000149830367434906,299,299,299 -"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.169795980996767,0.0144030537809855,0.00128504026387104,0.05,0.05,0.05,0.0500632934935272,0.010753154335306,0.000100029207943016,299,299,299 -"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156711247817425,0.0112693382442459,0.00129575862349329,0.05,0.05,0.05,0.0276298760172054,0.00281386635287716,5.38181034733964e-05,299,299,299 -"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.15139151543602,0.0104465644766224,0.00129981134725908,0.05,0.05,0.05,0.0141410992428257,0.00130669366586536,2.73645527773312e-05,299,299,299 -"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.258557302116673,0.0471068183766245,0.00248795354082907,0.05,0.05,0.05,0.214903019387256,0.0335108284463382,0.000830837548622187,299,299,299 -"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149947238884494,0.0369237576863555,0.00284503426782666,0.05,0.05,0.05,0.158441858976689,0.0308300483328315,0.000396002702984654,299,299,299 -"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.135294847815434,0.033060056044939,0.00289036310428597,0.05,0.05,0.05,0.137727373817596,0.0318023911087452,0.000292282925067628,299,299,299 -"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.119582921561624,0.0214668179301497,0.00292933959225631,0.05,0.05,0.05,0.106494154346753,0.024864290678986,0.000191538945495075,299,299,299 -"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.099798111596372,0.0129121085990291,0.00295806829448178,0.05,0.05,0.05,0.0714399883167558,0.0110337223010556,0.000118667153504406,299,299,299 -"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.287388355383774,0.0469902319963522,0.00187490018629999,0.05,0.05,0.05,0.154088232789638,0.0329410506782948,0.000549301864899822,299,299,299 -"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.195385185050857,0.0296426715198867,0.00204264547676058,0.05,0.05,0.05,0.0710807370008768,0.0216856823207644,0.000203683831577709,299,299,299 -"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174199345441661,0.0242833870888731,0.00207271362044409,0.05,0.05,0.05,0.0415297178041584,0.0130378957170457,0.000121525990133047,299,299,299 -"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.16322378487011,0.0203158738622392,0.00208430588735338,0.05,0.05,0.05,0.0210395757766329,0.00390471776823452,6.10505727328916e-05,299,299,299 -"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.158956493716092,0.0194256360560522,0.00208899256403884,0.05,0.05,0.05,0.0110422971628799,0.00194188127958325,3.143674418703e-05,299,299,299 -"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.250888349377501,0.047371402503128,0.00187563708748533,0.05,0.05,0.05,0.152600474882445,0.0328844724314825,0.000509346692708395,299,299,299 -"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.152394367209131,0.0338342248346544,0.00204176413384406,0.05,0.05,0.05,0.0764602929313741,0.0272060156548532,0.000194417101017135,299,299,299 -"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125722135798649,0.0288418930961371,0.0020804584013185,0.05,0.05,0.05,0.0479410958871771,0.0220987721430783,0.000120008394455241,299,299,299 -"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109258251275707,0.0210888336917277,0.00210026858404315,0.05,0.05,0.05,0.0201156566267654,0.00906552529536794,5.50101111382358e-05,299,299,299 -"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102591351586734,0.0195194895691545,0.00210907783683613,0.05,0.05,0.05,0.00987423791154675,0.00290633315778491,2.7162782176962e-05,299,299,299 -"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.70124597364803,0.0376533105953691,0.00123494285233341,0.05,0.05,0.05,0.0838087978062131,0.0142208975805004,0.000699569449570715,299,299,299 -"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689282253115157,0.0305679523100053,0.00132582316322848,0.05,0.05,0.05,0.0343120345436398,0.00387381933178381,0.00027450547448457,299,299,299 -"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.68906469857433,0.0296141472076942,0.00131664675620403,0.05,0.05,0.05,0.0211046380877389,0.00231503393557544,0.000165568410739778,299,299,299 -"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.68924085602956,0.0291669551369491,0.00131236475667989,0.05,0.05,0.05,0.0105927212140132,0.00118428973997089,8.3045479875224e-05,299,299,299 -"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689565537709723,0.0290654313733382,0.0013112133119879,0.05,0.05,0.05,0.00531859703199066,0.000596168051142135,4.16063300595293e-05,299,299,299 -"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307436964249606,0.0471147431266192,0.00118111536858665,0.05,0.05,0.05,0.098990290559619,0.0294482193867283,0.000309747511167521,299,299,299 -"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226765952590624,0.0357456817306802,0.00127416861134441,0.05,0.05,0.05,0.0383385028996501,0.016673429738904,0.000105848615028202,299,299,299 -"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212801364020476,0.0322180846808898,0.00128732689359819,0.05,0.05,0.05,0.0239509316879067,0.0084327504818117,6.46025391332036e-05,299,299,299 -"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203932320208378,0.0305855147224839,0.00129559110062648,0.05,0.05,0.05,0.0124191546473542,0.0037771319097318,3.24315411757936e-05,299,299,299 -"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200647029280049,0.0301533754553601,0.00129883859364399,0.05,0.05,0.05,0.00647583593229502,0.00186411529597863,1.61780183580482e-05,299,299,299 -"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.367945971800834,0.0328815526819765,0.00143496680356406,0.05,0.05,0.05,0.147807528160444,0.0271944876304298,0.000506058016005683,299,299,299 -"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308728622428152,0.0166049294148683,0.00151111540242445,0.05,0.05,0.05,0.0726131741081698,0.00799405429834245,0.000207407062733315,299,299,299 -"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300780288119176,0.014131458204432,0.00151398163146763,0.05,0.05,0.05,0.0459531907848284,0.00347826912804306,0.000127428964246567,299,299,299 -"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.298614414637721,0.012747355157105,0.00150815078953302,0.05,0.05,0.05,0.0246455782113685,0.00158666234294896,6.63066197676949e-05,299,299,299 -"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.298468883538829,0.0122526359779165,0.00150439887916596,0.05,0.05,0.05,0.0128034071597564,0.000749712394527436,3.38808912392544e-05,299,299,299 -"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701172083400864,0.0376643357575222,0.00123532137019413,0.05,0.05,0.05,0.0838276039141287,0.0142371051192414,0.000699686485528014,299,299,299 -"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689289919253675,0.0305669926411663,0.00132574692556997,0.05,0.05,0.05,0.0343103726533026,0.00387581532982116,0.000274565889058043,299,299,299 -"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689070277589592,0.0296137274039448,0.00131661534704228,0.05,0.05,0.05,0.0211246269825046,0.00231627718399693,0.000165674801922877,299,299,299 -"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689264336679984,0.0291644911550967,0.00131220932256824,0.05,0.05,0.05,0.010606116585825,0.00118604809079964,8.30668062716465e-05,299,299,299 -"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689571592771227,0.0290647333356073,0.00131116843784505,0.05,0.05,0.05,0.0053135389758377,0.000595353063699454,4.15613118970307e-05,299,299,299 -"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933576727246349,0.0981723265635994,9.66882045583501e-05,0.05,0.05,0.05,0.0215261330353534,0.00483080027386807,0.000272806867150693,299,299,299 -"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978665787179333,0.0989287066979681,0.000104687384161528,0.05,0.05,0.05,0.00716855585860775,0.00255167420900226,0.000389304738699339,299,299,299 -"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987513702439684,0.0993313292297562,0.000145994132929744,0.05,0.05,0.05,0.00427270029177551,0.00159250339354599,0.000547272959729863,299,299,299 -"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993791753258781,0.0996306908158616,0.000663418600173348,0.05,0.05,0.05,0.00225111184021476,0.000852347078997076,0.000790401910570023,299,299,299 -"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996846827426244,0.0998133018950463,0.000912980664087539,0.05,0.05,0.05,0.0012367044424741,0.000412864233254358,0.000874297327878154,299,299,299 -"331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.05,0.05,0.05,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 -"332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.05,0.05,0.05,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 -"333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.05,0.05,0.05,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 -"334","IAR_LU_modified_topopro","Artery",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.05,0.05,0.05,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 -"335","IAR_LU_modified_topopro","Artery",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.05,0.05,0.05,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 -"336","IAR_LU_modified_topopro","asc lower intestine",10,0.69,0.029,0.00131,0.693578780504134,0.0415355532662142,0.00128103308321534,0.05,0.05,0.05,0.0970509533929983,0.0236823442169324,0.000819226976703706,299,299,299 -"337","IAR_LU_modified_topopro","asc lower intestine",30,0.69,0.029,0.00131,0.687810582166082,0.0307536147510959,0.0013382900074825,0.05,0.05,0.05,0.0353144143147495,0.00435917556566684,0.000286310629098516,299,299,299 -"338","IAR_LU_modified_topopro","asc lower intestine",50,0.69,0.029,0.00131,0.688721295105845,0.0296257289906534,0.00131893797782168,0.05,0.05,0.05,0.0212465084180936,0.00249048940612626,0.000169271398329773,299,299,299 -"339","IAR_LU_modified_topopro","asc lower intestine",100,0.69,0.029,0.00131,0.689845828253077,0.0290894790629384,0.001307501525805,0.05,0.05,0.05,0.0107195144339221,0.00127256025225725,8.483351662592e-05,299,299,299 -"340","IAR_LU_modified_topopro","asc lower intestine",200,0.69,0.029,0.00131,0.689825939977317,0.0290142120213539,0.00130847683836763,0.05,0.05,0.05,0.00555750265488881,0.000601294931615333,4.25435274843115e-05,299,299,299 -"341","IAR_LU_modified_topopro","Blood RA",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.05,0.05,0.05,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 -"342","IAR_LU_modified_topopro","Blood RA",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.05,0.05,0.05,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 -"343","IAR_LU_modified_topopro","Blood RA",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.05,0.05,0.05,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 -"344","IAR_LU_modified_topopro","Blood RA",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.05,0.05,0.05,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 -"345","IAR_LU_modified_topopro","Blood RA",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.05,0.05,0.05,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 -"346","IAR_LU_modified_topopro","Blood RV",10,1,0.1,0.003,0.920296650622447,0.125293033588126,0.000183447331029076,0.05,0.05,0.05,0.0226806331224816,0.0244333472528567,0.000584106662250704,299,299,299 -"347","IAR_LU_modified_topopro","Blood RV",30,1,0.1,0.003,0.974303991283049,0.106099273671618,0.000177399100029965,0.05,0.05,0.05,0.00748957829912673,0.00829547736585587,0.000678897095895847,299,299,299 -"348","IAR_LU_modified_topopro","Blood RV",50,1,0.1,0.003,0.984941578599012,0.103360682474306,0.000155910408472978,0.05,0.05,0.05,0.00447576585770208,0.00495498740401099,0.000644237899348858,299,299,299 -"349","IAR_LU_modified_topopro","Blood RV",100,1,0.1,0.003,0.992841726733044,0.101349324599851,0.000128756832432632,0.05,0.05,0.05,0.00221528951841681,0.00248392277283552,0.000596162471686369,299,299,299 -"350","IAR_LU_modified_topopro","Blood RV",200,1,0.1,0.003,0.996733416462042,0.100300501347642,0.000119817129447202,0.05,0.05,0.05,0.00117145369846812,0.00100883159979159,0.000632414305364842,299,299,299 -"351","IAR_LU_modified_topopro","desc lower intestine",10,0.69,0.029,0.00131,0.69353255335075,0.0415612047930334,0.00128569612698868,0.05,0.05,0.05,0.0970827204927868,0.0237638891843294,0.000822921583808708,299,299,299 -"352","IAR_LU_modified_topopro","desc lower intestine",30,0.69,0.029,0.00131,0.687529033131503,0.0307864248323058,0.00133992030563751,0.05,0.05,0.05,0.035340761383201,0.00434360018542071,0.00028557595909565,299,299,299 -"353","IAR_LU_modified_topopro","desc lower intestine",50,0.69,0.029,0.00131,0.688938060964252,0.0296002490456439,0.00131726956556521,0.05,0.05,0.05,0.0212284246706342,0.00247366753913384,0.000167933611102375,299,299,299 -"354","IAR_LU_modified_topopro","desc lower intestine",100,0.69,0.029,0.00131,0.689803781014276,0.0290940234426647,0.00130741787888986,0.05,0.05,0.05,0.0110120008034572,0.00127088911766303,8.45797308420218e-05,299,299,299 -"355","IAR_LU_modified_topopro","desc lower intestine",200,0.69,0.029,0.00131,0.689784230390506,0.0290189623695888,0.00130868523568613,0.05,0.05,0.05,0.00553639486233176,0.000608258415769342,4.23025595359244e-05,299,299,299 -"356","IAR_LU_modified_topopro","esophagus",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.05,0.05,0.05,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 -"357","IAR_LU_modified_topopro","esophagus",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.05,0.05,0.05,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 -"358","IAR_LU_modified_topopro","esophagus",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.05,0.05,0.05,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 -"359","IAR_LU_modified_topopro","esophagus",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.05,0.05,0.05,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 -"360","IAR_LU_modified_topopro","esophagus",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.05,0.05,0.05,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 -"361","IAR_LU_modified_topopro","esophagus cont",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.05,0.05,0.05,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 -"362","IAR_LU_modified_topopro","esophagus cont",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.05,0.05,0.05,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 -"363","IAR_LU_modified_topopro","esophagus cont",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.05,0.05,0.05,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 -"364","IAR_LU_modified_topopro","esophagus cont",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.05,0.05,0.05,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 -"365","IAR_LU_modified_topopro","esophagus cont",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.05,0.05,0.05,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 -"366","IAR_LU_modified_topopro","Left kidney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.05,0.05,0.05,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 -"367","IAR_LU_modified_topopro","Left kidney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.05,0.05,0.05,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 -"368","IAR_LU_modified_topopro","Left kidney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.05,0.05,0.05,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 -"369","IAR_LU_modified_topopro","Left kidney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.05,0.05,0.05,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 -"370","IAR_LU_modified_topopro","Left kidney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.05,0.05,0.05,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 -"371","IAR_LU_modified_topopro","left kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.05,0.05,0.05,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 -"372","IAR_LU_modified_topopro","left kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.05,0.05,0.05,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 -"373","IAR_LU_modified_topopro","left kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.05,0.05,0.05,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 -"374","IAR_LU_modified_topopro","left kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.05,0.05,0.05,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 -"375","IAR_LU_modified_topopro","left kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.05,0.05,0.05,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 -"376","IAR_LU_modified_topopro","Liver",10,0.11,0.1,0.0015,0.255827144238669,0.0957949328224053,0.00130092643991093,0.05,0.05,0.05,0.133644073612816,0.0684386590799032,0.000379476628758943,299,299,299 -"377","IAR_LU_modified_topopro","Liver",30,0.11,0.1,0.0015,0.133802596180871,0.121405497015874,0.00147252862365529,0.05,0.05,0.05,0.0323313786170407,0.0504511851101522,8.92081827197948e-05,299,299,299 -"378","IAR_LU_modified_topopro","Liver",50,0.11,0.1,0.0015,0.118729927642186,0.11773946935276,0.00148881545258651,0.05,0.05,0.05,0.0167411687834778,0.0426333639052342,4.73600868068698e-05,299,299,299 -"379","IAR_LU_modified_topopro","Liver",100,0.11,0.1,0.0015,0.112266606855168,0.105433216396753,0.00149419894599423,0.05,0.05,0.05,0.00902108432024771,0.030662316383553,2.42747200177698e-05,299,299,299 -"380","IAR_LU_modified_topopro","Liver",200,0.11,0.1,0.0015,0.110995126491855,0.0973924440504551,0.00149623920986603,0.05,0.05,0.05,0.00518590399827883,0.0106183419451747,1.20619999134246e-05,299,299,299 -"381","IAR_LU_modified_topopro","Myocardium LV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.05,0.05,0.05,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 -"382","IAR_LU_modified_topopro","Myocardium LV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.05,0.05,0.05,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 -"383","IAR_LU_modified_topopro","Myocardium LV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.05,0.05,0.05,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 -"384","IAR_LU_modified_topopro","Myocardium LV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.05,0.05,0.05,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 -"385","IAR_LU_modified_topopro","Myocardium LV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.05,0.05,0.05,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 -"386","IAR_LU_modified_topopro","myocardium ra",10,0.07,0.07,0.0015,0.233345797803224,0.0758206228669585,0.00130187536524909,0.05,0.05,0.05,0.133957644380287,0.066388571559589,0.000363650445363682,299,299,299 -"387","IAR_LU_modified_topopro","myocardium ra",30,0.07,0.07,0.0015,0.108856126532739,0.0964456670697446,0.0014567334689066,0.05,0.05,0.05,0.0440157368882964,0.0596090389915254,0.000103224107835832,299,299,299 -"388","IAR_LU_modified_topopro","myocardium ra",50,0.07,0.07,0.0015,0.0854880561907263,0.0973144944749237,0.00148281482291791,0.05,0.05,0.05,0.0207373834323344,0.0497994361924948,5.42735308861248e-05,299,299,299 -"389","IAR_LU_modified_topopro","myocardium ra",100,0.07,0.07,0.0015,0.0745374604485976,0.0807036222064792,0.00149478405306962,0.05,0.05,0.05,0.00997544057913432,0.0315117637210663,2.58398414525695e-05,299,299,299 -"390","IAR_LU_modified_topopro","myocardium ra",200,0.07,0.07,0.0015,0.070924223444913,0.0715684911066608,0.00149809258018433,0.05,0.05,0.05,0.00539980707410929,0.0133990279370298,1.28312643370667e-05,299,299,299 -"391","IAR_LU_modified_topopro","myocardium RV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.05,0.05,0.05,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 -"392","IAR_LU_modified_topopro","myocardium RV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.05,0.05,0.05,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 -"393","IAR_LU_modified_topopro","myocardium RV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.05,0.05,0.05,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 -"394","IAR_LU_modified_topopro","myocardium RV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.05,0.05,0.05,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 -"395","IAR_LU_modified_topopro","myocardium RV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.05,0.05,0.05,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 -"396","IAR_LU_modified_topopro","pancreas",10,0.15,0.01,0.00129999999999999,0.280147618787791,0.0550963471623122,0.00116554559543274,0.05,0.05,0.05,0.154200671687761,0.0601150850496964,0.000411333431647301,299,299,299 -"397","IAR_LU_modified_topopro","pancreas",30,0.15,0.01,0.00129999999999999,0.180292442524659,0.0283670218235359,0.00128220682523432,0.05,0.05,0.05,0.0758183523997101,0.0373025951640522,0.000154889895612203,299,299,299 -"398","IAR_LU_modified_topopro","pancreas",50,0.15,0.01,0.00129999999999999,0.160883491285031,0.0172849139656884,0.00130037131461184,0.05,0.05,0.05,0.0520817767720244,0.0152607616127078,0.000103316331968376,299,299,299 -"399","IAR_LU_modified_topopro","pancreas",100,0.15,0.01,0.00129999999999999,0.154976949063361,0.0120069271284118,0.00129977292515898,0.05,0.05,0.05,0.0334646725252195,0.00446344579568468,6.40649593388859e-05,299,299,299 -"400","IAR_LU_modified_topopro","pancreas",200,0.15,0.01,0.00129999999999999,0.155286959430167,0.0101428890293175,0.00129270742735421,0.05,0.05,0.05,0.0172333080337744,0.00153439739326154,3.24157917287038e-05,299,299,299 -"401","IAR_LU_modified_topopro","pericardium",10,0.07,0.00999999999999999,0.003,0.304246595967149,0.0630491156685354,0.00235482700518371,0.05,0.05,0.05,0.260685324735516,0.0637178985095701,0.000993597879656733,299,299,299 -"402","IAR_LU_modified_topopro","pericardium",30,0.07,0.00999999999999999,0.003,0.176641493642551,0.0520279343575831,0.0028348649822054,0.05,0.05,0.05,0.207967296454401,0.0596888181268739,0.000571521838568284,299,299,299 -"403","IAR_LU_modified_topopro","pericardium",50,0.07,0.00999999999999999,0.003,0.146227380203304,0.042647287703342,0.00291329895112631,0.05,0.05,0.05,0.159901072514046,0.0522232847404345,0.000369579678167213,299,299,299 -"404","IAR_LU_modified_topopro","pericardium",100,0.07,0.00999999999999999,0.003,0.137535248314898,0.0274694017620213,0.0029193188543007,0.05,0.05,0.05,0.131305938197915,0.0405847885689576,0.000236989816000259,299,299,299 -"405","IAR_LU_modified_topopro","pericardium",200,0.07,0.00999999999999999,0.003,0.106876601462374,0.0141821859583173,0.00295175861415913,0.05,0.05,0.05,0.0866370026871013,0.0154683273621364,0.000137465282729351,299,299,299 -"406","IAR_LU_modified_topopro","right kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.05,0.05,0.05,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 -"407","IAR_LU_modified_topopro","right kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.05,0.05,0.05,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 -"408","IAR_LU_modified_topopro","right kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.05,0.05,0.05,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 -"409","IAR_LU_modified_topopro","right kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.05,0.05,0.05,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 -"410","IAR_LU_modified_topopro","right kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.05,0.05,0.05,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 -"411","IAR_LU_modified_topopro","Right kydney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.05,0.05,0.05,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 -"412","IAR_LU_modified_topopro","Right kydney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.05,0.05,0.05,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 -"413","IAR_LU_modified_topopro","Right kydney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.05,0.05,0.05,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 -"414","IAR_LU_modified_topopro","Right kydney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.05,0.05,0.05,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 -"415","IAR_LU_modified_topopro","Right kydney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.05,0.05,0.05,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 -"416","IAR_LU_modified_topopro","small intestine",10,0.69,0.029,0.00131,0.694262245048376,0.041376031786243,0.00127575746503216,0.05,0.05,0.05,0.0967837138191552,0.0233612728169214,0.000821652336598365,299,299,299 -"417","IAR_LU_modified_topopro","small intestine",30,0.69,0.029,0.00131,0.687722331121821,0.0307580006808991,0.00134021784981736,0.05,0.05,0.05,0.0351426096506969,0.00435469175637002,0.000284059232762604,299,299,299 -"418","IAR_LU_modified_topopro","small intestine",50,0.69,0.029,0.00131,0.68908448667331,0.0295719444686926,0.00131656193442396,0.05,0.05,0.05,0.0214793767768495,0.00247568869798116,0.000168319670616108,299,299,299 -"419","IAR_LU_modified_topopro","small intestine",100,0.69,0.029,0.00131,0.689765613332017,0.0290940329273443,0.00130808320972436,0.05,0.05,0.05,0.0109523316691925,0.00123761959754598,8.5316967356735e-05,299,299,299 -"420","IAR_LU_modified_topopro","small intestine",200,0.69,0.029,0.00131,0.689905499433019,0.0290056437597644,0.00130824381017983,0.05,0.05,0.05,0.00544972908667523,0.000598861686247944,4.18259481209846e-05,299,299,299 -"421","IAR_LU_modified_topopro","spleen",10,0.2,0.03,0.00129999999999999,0.319868006115112,0.063392313341736,0.00114701986395022,0.05,0.05,0.05,0.127028194828194,0.0542166947340963,0.000388299783289906,299,299,299 -"422","IAR_LU_modified_topopro","spleen",30,0.2,0.03,0.00129999999999999,0.215360997563175,0.0442606501281254,0.00130354720611688,0.05,0.05,0.05,0.0365624032335726,0.0261446003020259,0.000105551124736129,299,299,299 -"423","IAR_LU_modified_topopro","spleen",50,0.2,0.03,0.00129999999999999,0.208856498625777,0.0349379828827892,0.00129997254980305,0.05,0.05,0.05,0.0232436380421739,0.0134864153624437,6.61171024217637e-05,299,299,299 -"424","IAR_LU_modified_topopro","spleen",100,0.2,0.03,0.00129999999999999,0.204200673121755,0.0304239196137196,0.00129577459955986,0.05,0.05,0.05,0.0129647113395538,0.00465726530553315,3.35882997092888e-05,299,299,299 -"425","IAR_LU_modified_topopro","spleen",200,0.2,0.03,0.00129999999999999,0.200822327913181,0.0300525395093674,0.00129839806116424,0.05,0.05,0.05,0.00653017924354621,0.00186535860535101,1.63191536785758e-05,299,299,299 -"426","IAR_LU_modified_topopro","st wall",10,0.3,0.012,0.0015,0.398249536075877,0.0414327592705561,0.0013308464645949,0.05,0.05,0.05,0.179875566567662,0.0488900917459887,0.000607086675688919,299,299,299 -"427","IAR_LU_modified_topopro","st wall",30,0.3,0.012,0.0015,0.304981866410044,0.019062815360902,0.00152406395152592,0.05,0.05,0.05,0.0863985064932302,0.0159978388575776,0.000239113806683646,299,299,299 -"428","IAR_LU_modified_topopro","st wall",50,0.3,0.012,0.0015,0.303869758313058,0.0142369519703813,0.00151399551647258,0.05,0.05,0.05,0.05621027771121,0.00488788692716998,0.000149801012378724,299,299,299 -"429","IAR_LU_modified_topopro","st wall",100,0.3,0.012,0.0015,0.305112114866144,0.0122592880475803,0.00149760569421531,0.05,0.05,0.05,0.0273933903749877,0.00163482678247482,7.13546414172466e-05,299,299,299 -"430","IAR_LU_modified_topopro","st wall",200,0.3,0.012,0.0015,0.301896746555565,0.0120195655148351,0.00149805858945093,0.05,0.05,0.05,0.0139779415391202,0.000700939984225378,3.50081487540217e-05,299,299,299 -"431","IAR_LU_modified_topopro","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.693178885237798,0.0415791676918557,0.0012877057786336,0.05,0.05,0.05,0.0968563027027587,0.0237449984222352,0.000825061448241474,299,299,299 -"432","IAR_LU_modified_topopro","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.687355419209049,0.0307945973352347,0.00134083836319301,0.05,0.05,0.05,0.0346999752926432,0.00430590939666401,0.000281486176019419,299,299,299 -"433","IAR_LU_modified_topopro","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688922163392087,0.0295911195710815,0.00131794686365502,0.05,0.05,0.05,0.0211777668762992,0.0024591080293894,0.000167887957689605,299,299,299 -"434","IAR_LU_modified_topopro","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689976252210824,0.0290643775264531,0.00130712971409723,0.05,0.05,0.05,0.0111596605740458,0.00127230067708064,8.6055448007924e-05,299,299,299 -"435","IAR_LU_modified_topopro","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689888170406535,0.0290018785916859,0.00130847256340122,0.05,0.05,0.05,0.00546502050565497,0.000593775344251464,4.23249708031501e-05,299,299,299 -"436","IAR_LU_modified_topopro","Vein",10,1,0.1,0.00299999999999999,0.920340948544868,0.125267602952588,0.000182829755987327,0.05,0.05,0.05,0.0225948248460019,0.0244450623949952,0.000583405196732458,299,299,299 -"437","IAR_LU_modified_topopro","Vein",30,1,0.1,0.00299999999999999,0.974304007878179,0.106099271208312,0.00017739920965156,0.05,0.05,0.05,0.0074896310418671,0.00829547616520967,0.000678898150509279,299,299,299 -"438","IAR_LU_modified_topopro","Vein",50,1,0.1,0.00299999999999999,0.984941554598225,0.103360680622716,0.000155910848324994,0.05,0.05,0.05,0.00447571056831266,0.00495498786932744,0.000644242026928185,299,299,299 -"439","IAR_LU_modified_topopro","Vein",100,1,0.1,0.00299999999999999,0.992841725680271,0.101349324298109,0.000128757028592843,0.05,0.05,0.05,0.00221528819623711,0.0024839226995908,0.000596162110415501,299,299,299 -"440","IAR_LU_modified_topopro","Vein",200,1,0.1,0.00299999999999999,0.996733416187604,0.100300502391623,0.000119817078027757,0.05,0.05,0.05,0.00117146069783939,0.00100883111028152,0.000632413732960071,299,299,299 -"441","IAR_LU_segmented_2step","Artery",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.05,0.05,0.05,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 -"442","IAR_LU_segmented_2step","Artery",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.05,0.05,0.05,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 -"443","IAR_LU_segmented_2step","Artery",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.05,0.05,0.05,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 -"444","IAR_LU_segmented_2step","Artery",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.05,0.05,0.05,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 -"445","IAR_LU_segmented_2step","Artery",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.05,0.05,0.05,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 -"446","IAR_LU_segmented_2step","asc lower intestine",10,0.69,0.029,0.00131,0.690373035820094,0.0320610845759972,0.00128397090175435,0.05,0.05,0.05,0.111830765201228,0.0149363990134043,0.0010310750352814,299,299,299 -"447","IAR_LU_segmented_2step","asc lower intestine",30,0.69,0.029,0.00131,0.688190385607032,0.0294222676858039,0.00132700874616123,0.05,0.05,0.05,0.0448734637691971,0.00411936458229695,0.000393814792063893,299,299,299 -"448","IAR_LU_segmented_2step","asc lower intestine",50,0.69,0.029,0.00131,0.688983137072148,0.0291736871195673,0.00131674147785283,0.05,0.05,0.05,0.0269406505113919,0.00243185752511053,0.000231513954749497,299,299,299 -"449","IAR_LU_segmented_2step","asc lower intestine",100,0.69,0.029,0.00131,0.689404252989227,0.029066163092573,0.00131311787679812,0.05,0.05,0.05,0.0134745367049808,0.00120919315577138,0.000114727932084214,299,299,299 -"450","IAR_LU_segmented_2step","asc lower intestine",200,0.69,0.029,0.00131,0.689565491171274,0.0290364333672251,0.00131259560662869,0.05,0.05,0.05,0.00673757581944161,0.000603840898929335,5.72226395519967e-05,299,299,299 -"451","IAR_LU_segmented_2step","Blood RA",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.05,0.05,0.05,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 -"452","IAR_LU_segmented_2step","Blood RA",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.05,0.05,0.05,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 -"453","IAR_LU_segmented_2step","Blood RA",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.05,0.05,0.05,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 -"454","IAR_LU_segmented_2step","Blood RA",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.05,0.05,0.05,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 -"455","IAR_LU_segmented_2step","Blood RA",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.05,0.05,0.05,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 -"456","IAR_LU_segmented_2step","Blood RV",10,1,0.1,0.003,0.921258294005175,0.0983174229498556,0.000602377539314825,0.05,0.05,0.05,0.0258235599273312,0.0048817357689704,0.000954240122896554,299,299,299 -"457","IAR_LU_segmented_2step","Blood RV",30,1,0.1,0.003,0.976019933224227,0.0994829647759296,0.000602393052438452,0.05,0.05,0.05,0.0083310126686943,0.0016038596496585,0.000954268289514534,299,299,299 -"458","IAR_LU_segmented_2step","Blood RV",50,1,0.1,0.003,0.985994872256549,0.0996813109859528,0.000602405603200741,0.05,0.05,0.05,0.00494309801013262,0.000986358092526008,0.000954266532348308,299,299,299 -"459","IAR_LU_segmented_2step","Blood RV",100,1,0.1,0.003,0.993268900338895,0.0998299735833862,0.000602442811986694,0.05,0.05,0.05,0.00241285763266283,0.00051392104017594,0.000954286483399826,299,299,299 -"460","IAR_LU_segmented_2step","Blood RV",200,1,0.1,0.003,0.996782474408774,0.0999083722401707,0.000602417326124585,0.05,0.05,0.05,0.00119135923032626,0.000267557047652887,0.000954060412685357,299,299,299 -"461","IAR_LU_segmented_2step","desc lower intestine",10,0.69,0.029,0.00131,0.690373037187929,0.032061084511974,0.0012839709016351,0.05,0.05,0.05,0.111830764423804,0.0149363990086909,0.0010310750351664,299,299,299 -"462","IAR_LU_segmented_2step","desc lower intestine",30,0.69,0.029,0.00131,0.688190385604399,0.0294222676864886,0.00132700874615634,0.05,0.05,0.05,0.0448734637614442,0.00411936458331029,0.000393814791852722,299,299,299 -"463","IAR_LU_segmented_2step","desc lower intestine",50,0.69,0.029,0.00131,0.688983137070003,0.0291736871196476,0.00131674147781799,0.05,0.05,0.05,0.0269406505267064,0.00243185752517155,0.000231513954746746,299,299,299 -"464","IAR_LU_segmented_2step","desc lower intestine",100,0.69,0.029,0.00131,0.689404252988794,0.0290661630927041,0.00131311787679321,0.05,0.05,0.05,0.0134745367105457,0.00120919315606283,0.0001147279321005,299,299,299 -"465","IAR_LU_segmented_2step","desc lower intestine",200,0.69,0.029,0.00131,0.689565491168261,0.0290364333673394,0.00131259560662137,0.05,0.05,0.05,0.00673757582228583,0.000603840898965895,5.72226395589749e-05,299,299,299 -"466","IAR_LU_segmented_2step","esophagus",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.05,0.05,0.05,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 -"467","IAR_LU_segmented_2step","esophagus",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.05,0.05,0.05,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 -"468","IAR_LU_segmented_2step","esophagus",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.05,0.05,0.05,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 -"469","IAR_LU_segmented_2step","esophagus",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.05,0.05,0.05,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 -"470","IAR_LU_segmented_2step","esophagus",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.05,0.05,0.05,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 -"471","IAR_LU_segmented_2step","esophagus cont",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.05,0.05,0.05,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 -"472","IAR_LU_segmented_2step","esophagus cont",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.05,0.05,0.05,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 -"473","IAR_LU_segmented_2step","esophagus cont",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.05,0.05,0.05,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 -"474","IAR_LU_segmented_2step","esophagus cont",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.05,0.05,0.05,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 -"475","IAR_LU_segmented_2step","esophagus cont",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.05,0.05,0.05,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 -"476","IAR_LU_segmented_2step","Left kidney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.05,0.05,0.05,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 -"477","IAR_LU_segmented_2step","Left kidney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.05,0.05,0.05,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 -"478","IAR_LU_segmented_2step","Left kidney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.05,0.05,0.05,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 -"479","IAR_LU_segmented_2step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.05,0.05,0.05,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 -"480","IAR_LU_segmented_2step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.05,0.05,0.05,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 -"481","IAR_LU_segmented_2step","left kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.05,0.05,0.05,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 -"482","IAR_LU_segmented_2step","left kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.05,0.05,0.05,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 -"483","IAR_LU_segmented_2step","left kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.05,0.05,0.05,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 -"484","IAR_LU_segmented_2step","left kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.05,0.05,0.05,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 -"485","IAR_LU_segmented_2step","left kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.05,0.05,0.05,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 -"486","IAR_LU_segmented_2step","Liver",10,0.11,0.1,0.0015,0.144577570411426,0.0600041637865293,0.00152084809188092,0.05,0.05,0.05,0.123335225696709,0.0417372816084262,0.000472993211159269,299,299,299 -"487","IAR_LU_segmented_2step","Liver",30,0.11,0.1,0.0015,0.112815078932074,0.0768823300474684,0.00150154707211704,0.05,0.05,0.05,0.0402419901201215,0.0310439867234663,0.000152137743344338,299,299,299 -"488","IAR_LU_segmented_2step","Liver",50,0.11,0.1,0.0015,0.1099576380775,0.0845663044192014,0.00150017699860271,0.05,0.05,0.05,0.0218836166694104,0.022477885458141,9.09784274199351e-05,299,299,299 -"489","IAR_LU_segmented_2step","Liver",100,0.11,0.1,0.0015,0.10944935129917,0.0916622252527853,0.00149980895512081,0.05,0.05,0.05,0.010208281089791,0.0124943171981403,4.54189474712779e-05,299,299,299 -"490","IAR_LU_segmented_2step","Liver",200,0.11,0.1,0.0015,0.109652146434559,0.0956035913947621,0.00149983471124947,0.05,0.05,0.05,0.00504024948517217,0.00673413090644371,2.26988859055568e-05,299,299,299 -"491","IAR_LU_segmented_2step","Myocardium LV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.05,0.05,0.05,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 -"492","IAR_LU_segmented_2step","Myocardium LV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.05,0.05,0.05,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 -"493","IAR_LU_segmented_2step","Myocardium LV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.05,0.05,0.05,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 -"494","IAR_LU_segmented_2step","Myocardium LV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.05,0.05,0.05,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 -"495","IAR_LU_segmented_2step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.05,0.05,0.05,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 -"496","IAR_LU_segmented_2step","myocardium ra",10,0.07,0.07,0.0015,0.119350871187795,0.0526522113471146,0.00151975238387796,0.05,0.05,0.05,0.122175673607144,0.0433817113789841,0.000451902244673881,299,299,299 -"497","IAR_LU_segmented_2step","myocardium ra",30,0.07,0.07,0.0015,0.0792678235673555,0.0630122253969336,0.00150135088654914,0.05,0.05,0.05,0.0453965721112215,0.0370205317703307,0.000145531665798083,299,299,299 -"498","IAR_LU_segmented_2step","myocardium ra",50,0.07,0.07,0.0015,0.0732403881564398,0.0670725405856644,0.00150012323561766,0.05,0.05,0.05,0.0252082854080656,0.031219546230532,8.70510202022302e-05,299,299,299 -"499","IAR_LU_segmented_2step","myocardium ra",100,0.07,0.07,0.0015,0.0706178298624483,0.0704430265419414,0.00149980568738501,0.05,0.05,0.05,0.0111951905157038,0.0218907234720239,4.34633528226247e-05,299,299,299 -"500","IAR_LU_segmented_2step","myocardium ra",200,0.07,0.07,0.0015,0.0700882021755177,0.0711624170940203,0.00149983895305835,0.05,0.05,0.05,0.00530076418974235,0.0136048479725231,2.17222536755328e-05,299,299,299 -"501","IAR_LU_segmented_2step","myocardium RV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.05,0.05,0.05,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 -"502","IAR_LU_segmented_2step","myocardium RV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.05,0.05,0.05,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 -"503","IAR_LU_segmented_2step","myocardium RV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.05,0.05,0.05,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 -"504","IAR_LU_segmented_2step","myocardium RV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.05,0.05,0.05,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 -"505","IAR_LU_segmented_2step","myocardium RV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.05,0.05,0.05,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 -"506","IAR_LU_segmented_2step","pancreas",10,0.15,0.01,0.00129999999999999,0.167366769534782,0.0306978926979998,0.00134733544815708,0.05,0.05,0.05,0.138138076806016,0.0353119819659889,0.000431649675978663,299,299,299 -"507","IAR_LU_segmented_2step","pancreas",30,0.15,0.01,0.00129999999999999,0.141203985588467,0.0176354726093115,0.00133082551202286,0.05,0.05,0.05,0.0600511085386784,0.0196812578308465,0.000139043274945453,299,299,299 -"508","IAR_LU_segmented_2step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697420917372,0.0134860811681421,0.00132993185853207,0.05,0.05,0.05,0.0376186380241066,0.00990391939690809,8.31806812154377e-05,299,299,299 -"509","IAR_LU_segmented_2step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323219863,0.0115476660390234,0.00132978575875502,0.05,0.05,0.05,0.0195144380514801,0.00241788894796007,4.15321586456171e-05,299,299,299 -"510","IAR_LU_segmented_2step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024845707517,0.0112236005383082,0.00132987961477637,0.05,0.05,0.05,0.00985292081870204,0.00107217148365358,2.07569285081239e-05,299,299,299 -"511","IAR_LU_segmented_2step","pericardium",10,0.07,0.00999999999999999,0.003,0.22320565207551,0.0265364476482412,0.00273701082230784,0.05,0.05,0.05,0.23206537977111,0.0359088326115604,0.00088504212200084,299,299,299 -"512","IAR_LU_segmented_2step","pericardium",30,0.07,0.00999999999999999,0.003,0.104347274972772,0.0256374434531395,0.00304612925895245,0.05,0.05,0.05,0.114261684103799,0.0332933654950249,0.00039105626191339,299,299,299 -"513","IAR_LU_segmented_2step","pericardium",50,0.07,0.00999999999999999,0.003,0.0814011586963573,0.0244933209869785,0.00304009046144298,0.05,0.05,0.05,0.0795667664506302,0.0304103420804633,0.000238152536499515,299,299,299 -"514","IAR_LU_segmented_2step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642156773233244,0.0204405944701307,0.00303324788669806,0.05,0.05,0.05,0.0448553819665871,0.0232832527732592,0.000118500604743613,299,299,299 -"515","IAR_LU_segmented_2step","pericardium",200,0.07,0.00999999999999999,0.003,0.0580112863869371,0.0143446319848522,0.00303117957616411,0.05,0.05,0.05,0.0239540291900973,0.00980730019759861,5.91963411917844e-05,299,299,299 -"516","IAR_LU_segmented_2step","right kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.05,0.05,0.05,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 -"517","IAR_LU_segmented_2step","right kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.05,0.05,0.05,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 -"518","IAR_LU_segmented_2step","right kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.05,0.05,0.05,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 -"519","IAR_LU_segmented_2step","right kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.05,0.05,0.05,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 -"520","IAR_LU_segmented_2step","right kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.05,0.05,0.05,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 -"521","IAR_LU_segmented_2step","Right kydney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.05,0.05,0.05,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 -"522","IAR_LU_segmented_2step","Right kydney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.05,0.05,0.05,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 -"523","IAR_LU_segmented_2step","Right kydney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.05,0.05,0.05,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 -"524","IAR_LU_segmented_2step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.05,0.05,0.05,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 -"525","IAR_LU_segmented_2step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.05,0.05,0.05,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 -"526","IAR_LU_segmented_2step","small intestine",10,0.69,0.029,0.00131,0.690373037070898,0.0320610845226397,0.00128397090175435,0.05,0.05,0.05,0.111830764549477,0.0149363990351109,0.0010310750352814,299,299,299 -"527","IAR_LU_segmented_2step","small intestine",30,0.69,0.029,0.00131,0.688190385608461,0.0294222676855826,0.00132700874616123,0.05,0.05,0.05,0.0448734637901488,0.00411936458263747,0.000393814792063893,299,299,299 -"528","IAR_LU_segmented_2step","small intestine",50,0.69,0.029,0.00131,0.68898313707029,0.0291736871197262,0.00131674147785283,0.05,0.05,0.05,0.0269406505091751,0.00243185752491584,0.000231513954749497,299,299,299 -"529","IAR_LU_segmented_2step","small intestine",100,0.69,0.029,0.00131,0.68940425299248,0.0290661630924925,0.00131311787679812,0.05,0.05,0.05,0.0134745367108107,0.00120919315590461,0.000114727932084214,299,299,299 -"530","IAR_LU_segmented_2step","small intestine",200,0.69,0.029,0.00131,0.689565491157383,0.0290364333708514,0.00131259560662869,0.05,0.05,0.05,0.00673757580906278,0.000603840896646575,5.72226395519967e-05,299,299,299 -"531","IAR_LU_segmented_2step","spleen",10,0.2,0.03,0.00129999999999999,0.224602362890799,0.0422543737942781,0.00131869223769686,0.05,0.05,0.05,0.127234911609303,0.0341611217172608,0.000459161541284809,299,299,299 -"532","IAR_LU_segmented_2step","spleen",30,0.2,0.03,0.00129999999999999,0.203576863495816,0.0339539200173157,0.00130108907088979,0.05,0.05,0.05,0.044331214464624,0.017617566481108,0.000147366538355311,299,299,299 -"533","IAR_LU_segmented_2step","spleen",50,0.2,0.03,0.00129999999999999,0.201083469438403,0.0314320549693185,0.00130009526398064,0.05,0.05,0.05,0.0264945321235979,0.00973436499772472,8.81308203353264e-05,299,299,299 -"534","IAR_LU_segmented_2step","spleen",100,0.2,0.03,0.00129999999999999,0.20007115163649,0.0303418337778117,0.001299928493873,0.05,0.05,0.05,0.0131754362709165,0.00435303846028546,4.39969723252588e-05,299,299,299 -"535","IAR_LU_segmented_2step","spleen",200,0.2,0.03,0.00129999999999999,0.199885784150361,0.0301070126211822,0.00130002911399547,0.05,0.05,0.05,0.00657087134211547,0.00215138858402903,2.19877335574001e-05,299,299,299 -"536","IAR_LU_segmented_2step","st wall",10,0.3,0.012,0.0015,0.297910726506523,0.0238987755166635,0.00157773932710541,0.05,0.05,0.05,0.166898578530855,0.026413197787185,0.000614593950499859,299,299,299 -"537","IAR_LU_segmented_2step","st wall",30,0.3,0.012,0.0015,0.283533465909088,0.0146267868916472,0.00155214816764873,0.05,0.05,0.05,0.0667707036118569,0.0078453694765802,0.00019551156370717,299,299,299 -"538","IAR_LU_segmented_2step","st wall",50,0.3,0.012,0.0015,0.282913643368102,0.0133565032690983,0.00154952132488848,0.05,0.05,0.05,0.0412585327424046,0.0029662403323633,0.00011668052444887,299,299,299 -"539","IAR_LU_segmented_2step","st wall",100,0.3,0.012,0.0015,0.282957489855073,0.0129414790127824,0.0015486735829641,0.05,0.05,0.05,0.0209295866586312,0.00131275199125169,5.81996976856253e-05,299,299,299 -"540","IAR_LU_segmented_2step","st wall",200,0.3,0.012,0.0015,0.283111805846317,0.0128396414258269,0.00154860379618769,0.05,0.05,0.05,0.010504025040381,0.000633726930733129,2.90796048726369e-05,299,299,299 -"541","IAR_LU_segmented_2step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69037303749125,0.0320610844836358,0.00128397090178629,0.05,0.05,0.05,0.111830763771563,0.0149363989976124,0.00103107503559299,299,299,299 -"542","IAR_LU_segmented_2step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190385593539,0.0294222676872454,0.00132700874615982,0.05,0.05,0.05,0.0448734637558478,0.00411936458168369,0.000393814791967693,299,299,299 -"543","IAR_LU_segmented_2step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.68898313706239,0.0291736871209134,0.00131674147788471,0.05,0.05,0.05,0.0269406505338101,0.0024318575254413,0.000231513954838717,299,299,299 -"544","IAR_LU_segmented_2step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404252989508,0.0290661630925507,0.00131311787679501,0.05,0.05,0.05,0.0134745367049696,0.00120919315574895,0.000114727932099834,299,299,299 -"545","IAR_LU_segmented_2step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565491165205,0.0290364333675362,0.0013125956066485,0.05,0.05,0.05,0.00673757582406111,0.000603840899001961,5.72226395704009e-05,299,299,299 -"546","IAR_LU_segmented_2step","Vein",10,1,0.1,0.00299999999999999,0.921258294006205,0.0983174229514582,0.000602377539365262,0.05,0.05,0.05,0.0258235599431163,0.00488173576858925,0.000954240122974581,299,299,299 -"547","IAR_LU_segmented_2step","Vein",30,1,0.1,0.00299999999999999,0.976019933221361,0.0994829647765158,0.00060239305244365,0.05,0.05,0.05,0.00833101267682292,0.00160385964963576,0.000954268289514292,299,299,299 -"548","IAR_LU_segmented_2step","Vein",50,1,0.1,0.00299999999999999,0.98599487225747,0.0996813109862223,0.000602405603200741,0.05,0.05,0.05,0.00494309800725367,0.00098635809134973,0.000954266532348308,299,299,299 -"549","IAR_LU_segmented_2step","Vein",100,1,0.1,0.00299999999999999,0.993268900336901,0.0998299735834051,0.000602442811986694,0.05,0.05,0.05,0.00241285763307656,0.000513921040160147,0.000954286483399826,299,299,299 -"550","IAR_LU_segmented_2step","Vein",200,1,0.1,0.00299999999999999,0.996782474408715,0.099908372240112,0.000602417326124585,0.05,0.05,0.05,0.00119135923034317,0.00026755704762974,0.000954060412685357,299,299,299 -"551","IAR_LU_segmented_3step","Artery",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.05,0.05,0.05,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 -"552","IAR_LU_segmented_3step","Artery",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.05,0.05,0.05,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 -"553","IAR_LU_segmented_3step","Artery",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.05,0.05,0.05,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 -"554","IAR_LU_segmented_3step","Artery",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.05,0.05,0.05,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 -"555","IAR_LU_segmented_3step","Artery",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.05,0.05,0.05,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 -"556","IAR_LU_segmented_3step","asc lower intestine",10,0.69,0.029,0.00131,0.690372912460308,0.0320609988287597,0.00128397090175435,0.05,0.05,0.05,0.111831070178776,0.0149362639331092,0.0010310750352814,299,299,299 -"557","IAR_LU_segmented_3step","asc lower intestine",30,0.69,0.029,0.00131,0.688190453018247,0.0294222458071772,0.00132700874616123,0.05,0.05,0.05,0.0448734379198449,0.00411935738276174,0.000393814792063893,299,299,299 -"558","IAR_LU_segmented_3step","asc lower intestine",50,0.69,0.029,0.00131,0.688983156886655,0.0291736810771982,0.00131674147785283,0.05,0.05,0.05,0.0269406517217619,0.00243185875713279,0.000231513954749497,299,299,299 -"559","IAR_LU_segmented_3step","asc lower intestine",100,0.69,0.029,0.00131,0.689404263283331,0.029066159884122,0.00131311787679812,0.05,0.05,0.05,0.013474531543109,0.00120919095640661,0.000114727932084214,299,299,299 -"560","IAR_LU_segmented_3step","asc lower intestine",200,0.69,0.029,0.00131,0.689565493192121,0.0290364327596902,0.00131259560662869,0.05,0.05,0.05,0.00673757540019296,0.000603840709682258,5.72226395519967e-05,299,299,299 -"561","IAR_LU_segmented_3step","Blood RA",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.05,0.05,0.05,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 -"562","IAR_LU_segmented_3step","Blood RA",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.05,0.05,0.05,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 -"563","IAR_LU_segmented_3step","Blood RA",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.05,0.05,0.05,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 -"564","IAR_LU_segmented_3step","Blood RA",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.05,0.05,0.05,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 -"565","IAR_LU_segmented_3step","Blood RA",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.05,0.05,0.05,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 -"566","IAR_LU_segmented_3step","Blood RV",10,1,0.1,0.003,0.921258295752512,0.0983173943497697,0.000602377539314825,0.05,0.05,0.05,0.0258235874592633,0.00488176105309786,0.000954240122896554,299,299,299 -"567","IAR_LU_segmented_3step","Blood RV",30,1,0.1,0.003,0.976019921589139,0.0994829388944177,0.000602393052438452,0.05,0.05,0.05,0.00833093061417054,0.00160385306136018,0.000954268289514534,299,299,299 -"568","IAR_LU_segmented_3step","Blood RV",50,1,0.1,0.003,0.985994865012998,0.0996813363124673,0.000602405603200741,0.05,0.05,0.05,0.00494311872708252,0.000986368951628139,0.000954266532348308,299,299,299 -"569","IAR_LU_segmented_3step","Blood RV",100,1,0.1,0.003,0.993268930010737,0.0998299053836721,0.000602442811986694,0.05,0.05,0.05,0.00241282801400462,0.00051390736455086,0.000954286483399826,299,299,299 -"570","IAR_LU_segmented_3step","Blood RV",200,1,0.1,0.003,0.996782670893716,0.0999081619681687,0.000602417326124585,0.05,0.05,0.05,0.00119125287335306,0.000267526451785148,0.000954060412685357,299,299,299 -"571","IAR_LU_segmented_3step","desc lower intestine",10,0.69,0.029,0.00131,0.690372912834237,0.0320609988208121,0.0012839709016351,0.05,0.05,0.05,0.111831069984292,0.014936263933469,0.0010310750351664,299,299,299 -"572","IAR_LU_segmented_3step","desc lower intestine",30,0.69,0.029,0.00131,0.688190453039754,0.0294222458055492,0.00132700874615634,0.05,0.05,0.05,0.0448734379014875,0.00411935738152716,0.000393814791852722,299,299,299 -"573","IAR_LU_segmented_3step","desc lower intestine",50,0.69,0.029,0.00131,0.68898315689181,0.0291736810768264,0.00131674147781799,0.05,0.05,0.05,0.026940651717003,0.00243185875705343,0.000231513954746746,299,299,299 -"574","IAR_LU_segmented_3step","desc lower intestine",100,0.69,0.029,0.00131,0.689404263283869,0.0290661598843801,0.00131311787679321,0.05,0.05,0.05,0.0134745315463702,0.00120919095682723,0.0001147279321005,299,299,299 -"575","IAR_LU_segmented_3step","desc lower intestine",200,0.69,0.029,0.00131,0.689565493196492,0.0290364327594458,0.00131259560662137,0.05,0.05,0.05,0.00673757540289692,0.000603840709761317,5.72226395589749e-05,299,299,299 -"576","IAR_LU_segmented_3step","esophagus",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.05,0.05,0.05,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 -"577","IAR_LU_segmented_3step","esophagus",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.05,0.05,0.05,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 -"578","IAR_LU_segmented_3step","esophagus",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.05,0.05,0.05,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 -"579","IAR_LU_segmented_3step","esophagus",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.05,0.05,0.05,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 -"580","IAR_LU_segmented_3step","esophagus",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.05,0.05,0.05,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 -"581","IAR_LU_segmented_3step","esophagus cont",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.05,0.05,0.05,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 -"582","IAR_LU_segmented_3step","esophagus cont",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.05,0.05,0.05,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 -"583","IAR_LU_segmented_3step","esophagus cont",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.05,0.05,0.05,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 -"584","IAR_LU_segmented_3step","esophagus cont",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.05,0.05,0.05,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 -"585","IAR_LU_segmented_3step","esophagus cont",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.05,0.05,0.05,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 -"586","IAR_LU_segmented_3step","Left kidney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.05,0.05,0.05,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 -"587","IAR_LU_segmented_3step","Left kidney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.05,0.05,0.05,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 -"588","IAR_LU_segmented_3step","Left kidney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.05,0.05,0.05,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 -"589","IAR_LU_segmented_3step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.05,0.05,0.05,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 -"590","IAR_LU_segmented_3step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.05,0.05,0.05,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 -"591","IAR_LU_segmented_3step","left kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.05,0.05,0.05,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 -"592","IAR_LU_segmented_3step","left kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.05,0.05,0.05,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 -"593","IAR_LU_segmented_3step","left kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.05,0.05,0.05,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 -"594","IAR_LU_segmented_3step","left kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.05,0.05,0.05,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 -"595","IAR_LU_segmented_3step","left kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.05,0.05,0.05,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 -"596","IAR_LU_segmented_3step","Liver",10,0.11,0.1,0.0015,0.146082882050709,0.0559478804902679,0.00152084809188092,0.05,0.05,0.05,0.12417523764379,0.0423510319114557,0.000472993211159269,299,299,299 -"597","IAR_LU_segmented_3step","Liver",30,0.11,0.1,0.0015,0.113015747107183,0.0764337988942673,0.00150154707211704,0.05,0.05,0.05,0.0404962619170089,0.0315961478906252,0.000152137743344338,299,299,299 -"598","IAR_LU_segmented_3step","Liver",50,0.11,0.1,0.0015,0.109957685341215,0.0845663398058661,0.00150017699860271,0.05,0.05,0.05,0.0218837188774183,0.0224781408265878,9.09784274199351e-05,299,299,299 -"599","IAR_LU_segmented_3step","Liver",100,0.11,0.1,0.0015,0.109449356101409,0.0916623226685859,0.00149980895512081,0.05,0.05,0.05,0.0102082812165326,0.0124943114146282,4.54189474712779e-05,299,299,299 -"600","IAR_LU_segmented_3step","Liver",200,0.11,0.1,0.0015,0.109652152384101,0.0956036971815278,0.00149983471124947,0.05,0.05,0.05,0.00504025274062746,0.00673413785148666,2.26988859055568e-05,299,299,299 -"601","IAR_LU_segmented_3step","Myocardium LV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.05,0.05,0.05,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 -"602","IAR_LU_segmented_3step","Myocardium LV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.05,0.05,0.05,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 -"603","IAR_LU_segmented_3step","Myocardium LV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.05,0.05,0.05,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 -"604","IAR_LU_segmented_3step","Myocardium LV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.05,0.05,0.05,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 -"605","IAR_LU_segmented_3step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.05,0.05,0.05,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 -"606","IAR_LU_segmented_3step","myocardium ra",10,0.07,0.07,0.0015,0.120487721848812,0.0474274141714872,0.00151975238387796,0.05,0.05,0.05,0.12292676009053,0.0432757721627324,0.000451902244673881,299,299,299 -"607","IAR_LU_segmented_3step","myocardium ra",30,0.07,0.07,0.0015,0.0794953920685382,0.061701170887567,0.00150135088654914,0.05,0.05,0.05,0.0456443486701864,0.0375179871485709,0.000145531665798083,299,299,299 -"608","IAR_LU_segmented_3step","myocardium ra",50,0.07,0.07,0.0015,0.0733075060795099,0.0668946641370623,0.00150012323561766,0.05,0.05,0.05,0.0253334139193964,0.0313903609700114,8.70510202022302e-05,299,299,299 -"609","IAR_LU_segmented_3step","myocardium ra",100,0.07,0.07,0.0015,0.0706178530327893,0.0704430355516514,0.00149980568738501,0.05,0.05,0.05,0.0111952191897268,0.0218910314178087,4.34633528226247e-05,299,299,299 -"610","IAR_LU_segmented_3step","myocardium ra",200,0.07,0.07,0.0015,0.0700882022200132,0.0711624063551851,0.00149983895305835,0.05,0.05,0.05,0.00530076622265709,0.0136048747365511,2.17222536755328e-05,299,299,299 -"611","IAR_LU_segmented_3step","myocardium RV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.05,0.05,0.05,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 -"612","IAR_LU_segmented_3step","myocardium RV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.05,0.05,0.05,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 -"613","IAR_LU_segmented_3step","myocardium RV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.05,0.05,0.05,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 -"614","IAR_LU_segmented_3step","myocardium RV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.05,0.05,0.05,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 -"615","IAR_LU_segmented_3step","myocardium RV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.05,0.05,0.05,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 -"616","IAR_LU_segmented_3step","pancreas",10,0.15,0.01,0.00129999999999999,0.167876087744328,0.0290823779532465,0.00134733544815708,0.05,0.05,0.05,0.13799145865135,0.0341902078471574,0.000431649675978663,299,299,299 -"617","IAR_LU_segmented_3step","pancreas",30,0.15,0.01,0.00129999999999999,0.141237488923537,0.0173188232665482,0.00133082551202286,0.05,0.05,0.05,0.0599867928753009,0.019107620391262,0.000139043274945453,299,299,299 -"618","IAR_LU_segmented_3step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697382006501,0.013486111899636,0.00132993185853207,0.05,0.05,0.05,0.0376187112217656,0.00990407677614883,8.31806812154377e-05,299,299,299 -"619","IAR_LU_segmented_3step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323640244,0.0115476620033599,0.00132978575875502,0.05,0.05,0.05,0.019514431169108,0.00241787556317726,4.15321586456171e-05,299,299,299 -"620","IAR_LU_segmented_3step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024834420005,0.0112236045300272,0.00132987961477637,0.05,0.05,0.05,0.00985291999759062,0.00107217005947319,2.07569285081239e-05,299,299,299 -"621","IAR_LU_segmented_3step","pericardium",10,0.07,0.00999999999999999,0.003,0.226261705952676,0.0237795489644494,0.00273701082230784,0.05,0.05,0.05,0.232027240194557,0.0336731897895805,0.00088504212200084,299,299,299 -"622","IAR_LU_segmented_3step","pericardium",30,0.07,0.00999999999999999,0.003,0.104611777513852,0.0196860800407026,0.00304612925895245,0.05,0.05,0.05,0.114299017507708,0.0278397487831849,0.00039105626191339,299,299,299 -"623","IAR_LU_segmented_3step","pericardium",50,0.07,0.00999999999999999,0.003,0.0816066699634704,0.0194934718185086,0.00304009046144298,0.05,0.05,0.05,0.0795483736488436,0.0250992834625371,0.000238152536499515,299,299,299 -"624","IAR_LU_segmented_3step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642026522852465,0.0194902394274878,0.00303324788669806,0.05,0.05,0.05,0.0448738243520826,0.0219106454708596,0.000118500604743613,299,299,299 -"625","IAR_LU_segmented_3step","pericardium",200,0.07,0.00999999999999999,0.003,0.058011320597936,0.0143446673004006,0.00303117957616411,0.05,0.05,0.05,0.0239540324724296,0.00980769094663703,5.91963411917844e-05,299,299,299 -"626","IAR_LU_segmented_3step","right kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.05,0.05,0.05,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 -"627","IAR_LU_segmented_3step","right kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.05,0.05,0.05,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 -"628","IAR_LU_segmented_3step","right kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.05,0.05,0.05,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 -"629","IAR_LU_segmented_3step","right kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.05,0.05,0.05,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 -"630","IAR_LU_segmented_3step","right kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.05,0.05,0.05,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 -"631","IAR_LU_segmented_3step","Right kydney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.05,0.05,0.05,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 -"632","IAR_LU_segmented_3step","Right kydney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.05,0.05,0.05,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 -"633","IAR_LU_segmented_3step","Right kydney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.05,0.05,0.05,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 -"634","IAR_LU_segmented_3step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.05,0.05,0.05,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 -"635","IAR_LU_segmented_3step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.05,0.05,0.05,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 -"636","IAR_LU_segmented_3step","small intestine",10,0.69,0.029,0.00131,0.690372912356873,0.0320609988950055,0.00128397090175435,0.05,0.05,0.05,0.111831070379349,0.0149362639486584,0.0010310750352814,299,299,299 -"637","IAR_LU_segmented_3step","small intestine",30,0.69,0.029,0.00131,0.688190453015561,0.0294222458063855,0.00132700874616123,0.05,0.05,0.05,0.0448734379425795,0.00411935738385784,0.000393814792063893,299,299,299 -"638","IAR_LU_segmented_3step","small intestine",50,0.69,0.029,0.00131,0.688983156880932,0.0291736810769727,0.00131674147785283,0.05,0.05,0.05,0.026940651716611,0.00243185875699742,0.000231513954749497,299,299,299 -"639","IAR_LU_segmented_3step","small intestine",100,0.69,0.029,0.00131,0.689404263282608,0.0290661598842716,0.00131311787679812,0.05,0.05,0.05,0.0134745315497881,0.00120919095739295,0.000114727932084214,299,299,299 -"640","IAR_LU_segmented_3step","small intestine",200,0.69,0.029,0.00131,0.68956549319335,0.0290364327596369,0.00131259560662869,0.05,0.05,0.05,0.00673757540024816,0.000603840709655209,5.72226395519967e-05,299,299,299 -"641","IAR_LU_segmented_3step","spleen",10,0.2,0.03,0.00129999999999999,0.225215079244018,0.0408475941745436,0.00131869223769686,0.05,0.05,0.05,0.127374549590845,0.0338321181453734,0.000459161541284809,299,299,299 -"642","IAR_LU_segmented_3step","spleen",30,0.2,0.03,0.00129999999999999,0.203576978248672,0.0339539416807976,0.00130108907088979,0.05,0.05,0.05,0.0443312368356655,0.0176179137760107,0.000147366538355311,299,299,299 -"643","IAR_LU_segmented_3step","spleen",50,0.2,0.03,0.00129999999999999,0.201083539263729,0.0314319351028402,0.00130009526398064,0.05,0.05,0.05,0.026494577015459,0.0097343797369095,8.81308203353264e-05,299,299,299 -"644","IAR_LU_segmented_3step","spleen",100,0.2,0.03,0.00129999999999999,0.200071168884838,0.0303418014706331,0.001299928493873,0.05,0.05,0.05,0.0131754519827359,0.00435303381837777,4.39969723252588e-05,299,299,299 -"645","IAR_LU_segmented_3step","spleen",200,0.2,0.03,0.00129999999999999,0.199885789613915,0.0301070023107681,0.00130002911399547,0.05,0.05,0.05,0.00657087505150261,0.00215139132638464,2.19877335574001e-05,299,299,299 -"646","IAR_LU_segmented_3step","st wall",10,0.3,0.012,0.0015,0.298324938833872,0.0239344077578617,0.00157773932710541,0.05,0.05,0.05,0.16670974705843,0.0264709436324007,0.000614593950499859,299,299,299 -"647","IAR_LU_segmented_3step","st wall",30,0.3,0.012,0.0015,0.283533448008898,0.0146267906410416,0.00155214816764873,0.05,0.05,0.05,0.0667707702398052,0.00784535598914983,0.00019551156370717,299,299,299 -"648","IAR_LU_segmented_3step","st wall",50,0.3,0.012,0.0015,0.282913610595332,0.013356509669699,0.00154952132488848,0.05,0.05,0.05,0.0412585585926891,0.00296623318505363,0.00011668052444887,299,299,299 -"649","IAR_LU_segmented_3step","st wall",100,0.3,0.012,0.0015,0.282957467763654,0.0129414830257878,0.0015486735829641,0.05,0.05,0.05,0.0209295851952189,0.0013127509371942,5.81996976856253e-05,299,299,299 -"650","IAR_LU_segmented_3step","st wall",200,0.3,0.012,0.0015,0.283111796582806,0.0128396431053783,0.00154860379618769,0.05,0.05,0.05,0.0105040225309021,0.000633726038726297,2.90796048726369e-05,299,299,299 -"651","IAR_LU_segmented_3step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.690372912514732,0.0320609988154312,0.00128397090178629,0.05,0.05,0.05,0.11183107022349,0.0149362639063537,0.00103107503559299,299,299,299 -"652","IAR_LU_segmented_3step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190453028525,0.0294222458062765,0.00132700874615982,0.05,0.05,0.05,0.0448734379048314,0.00411935738241528,0.000393814791967693,299,299,299 -"653","IAR_LU_segmented_3step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688983156885389,0.0291736810770989,0.00131674147788471,0.05,0.05,0.05,0.0269406517148853,0.00243185875753381,0.000231513954838717,299,299,299 -"654","IAR_LU_segmented_3step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404263284667,0.0290661598842918,0.00131311787679501,0.05,0.05,0.05,0.0134745315495576,0.00120919095747282,0.000114727932099834,299,299,299 -"655","IAR_LU_segmented_3step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565493192237,0.0290364327597635,0.0013125956066485,0.05,0.05,0.05,0.00673757540531011,0.000603840709857747,5.72226395704009e-05,299,299,299 -"656","IAR_LU_segmented_3step","Vein",10,1,0.1,0.00299999999999999,0.921258295769297,0.0983173943529829,0.000602377539365262,0.05,0.05,0.05,0.0258235874429731,0.00488176105242994,0.000954240122974581,299,299,299 -"657","IAR_LU_segmented_3step","Vein",30,1,0.1,0.00299999999999999,0.976019921590824,0.099482938894657,0.00060239305244365,0.05,0.05,0.05,0.00833093061148117,0.00160385306162368,0.000954268289514292,299,299,299 -"658","IAR_LU_segmented_3step","Vein",50,1,0.1,0.00299999999999999,0.985994865012448,0.0996813363124073,0.000602405603200741,0.05,0.05,0.05,0.00494311872646144,0.000986368952043478,0.000954266532348308,299,299,299 -"659","IAR_LU_segmented_3step","Vein",100,1,0.1,0.00299999999999999,0.993268929663768,0.0998299060636546,0.000602442811986694,0.05,0.05,0.05,0.00241282790462813,0.000513906117480587,0.000954286483399826,299,299,299 -"660","IAR_LU_segmented_3step","Vein",200,1,0.1,0.00299999999999999,0.996782670893754,0.099908161968246,0.000602417326124585,0.05,0.05,0.05,0.00119125287281276,0.00026752645150961,0.000954060412685357,299,299,299 -"661","IAR_LU_subtracted","Artery",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.05,0.05,0.05,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 -"662","IAR_LU_subtracted","Artery",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.05,0.05,0.05,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 -"663","IAR_LU_subtracted","Artery",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.05,0.05,0.05,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 -"664","IAR_LU_subtracted","Artery",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.05,0.05,0.05,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 -"665","IAR_LU_subtracted","Artery",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.05,0.05,0.05,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 -"666","IAR_LU_subtracted","asc lower intestine",10,0.69,0.029,0.00131,0.649071571634918,0.0374643243946707,0.00128397090175435,0.05,0.05,0.05,0.187010914797289,0.0225038113704148,0.0010310750352814,299,299,299 -"667","IAR_LU_subtracted","asc lower intestine",30,0.69,0.029,0.00131,0.681939176199502,0.0302945345470063,0.00132700874616123,0.05,0.05,0.05,0.0603891142506458,0.00615614452380217,0.000393814792063893,299,299,299 -"668","IAR_LU_subtracted","asc lower intestine",50,0.69,0.029,0.00131,0.686488325346289,0.0294805288041424,0.00131674147785283,0.05,0.05,0.05,0.0350265291359118,0.00317717209134006,0.000231513954749497,299,299,299 -"669","IAR_LU_subtracted","asc lower intestine",100,0.69,0.029,0.00131,0.688499643316709,0.0291663813610362,0.00131311787679812,0.05,0.05,0.05,0.0172978748913048,0.00151214165314084,0.000114727932084214,299,299,299 -"670","IAR_LU_subtracted","asc lower intestine",200,0.69,0.029,0.00131,0.689091142138651,0.0290838262951937,0.00131259560662869,0.05,0.05,0.05,0.00862471112757458,0.000746769041441657,5.72226395519967e-05,299,299,299 -"671","IAR_LU_subtracted","Blood RA",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.05,0.05,0.05,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 -"672","IAR_LU_subtracted","Blood RA",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.05,0.05,0.05,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 -"673","IAR_LU_subtracted","Blood RA",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.05,0.05,0.05,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 -"674","IAR_LU_subtracted","Blood RA",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.05,0.05,0.05,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 -"675","IAR_LU_subtracted","Blood RA",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.05,0.05,0.05,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 -"676","IAR_LU_subtracted","Blood RV",10,1,0.1,0.003,0.868045922388077,0.0985985293170771,0.000602377539314825,0.05,0.05,0.05,0.112435321636501,0.00440048348198392,0.000954240122896554,299,299,299 -"677","IAR_LU_subtracted","Blood RV",30,1,0.1,0.003,0.957942477946737,0.0996184418317999,0.000602393052438452,0.05,0.05,0.05,0.033447334956949,0.00133438593586357,0.000954268289514534,299,299,299 -"678","IAR_LU_subtracted","Blood RV",50,1,0.1,0.003,0.974974772688138,0.0997749955437326,0.000602405603200741,0.05,0.05,0.05,0.0196506919536509,0.000799331220799176,0.000954266532348308,299,299,299 -"679","IAR_LU_subtracted","Blood RV",100,1,0.1,0.003,0.987563371296049,0.0998909406438783,0.000602442811986694,0.05,0.05,0.05,0.00967550352526221,0.000393844437553459,0.000954286483399826,299,299,299 -"680","IAR_LU_subtracted","Blood RV",200,1,0.1,0.003,0.993800432483625,0.0999475578955035,0.000602417326124585,0.05,0.05,0.05,0.00480131473462409,0.000192683440854932,0.000954060412685357,299,299,299 -"681","IAR_LU_subtracted","desc lower intestine",10,0.69,0.029,0.00131,0.649071571625974,0.0374643243918038,0.0012839709016351,0.05,0.05,0.05,0.187010914855941,0.0225038113819589,0.0010310750351664,299,299,299 -"682","IAR_LU_subtracted","desc lower intestine",30,0.69,0.029,0.00131,0.681939176203194,0.030294534546328,0.00132700874615634,0.05,0.05,0.05,0.0603891142121709,0.00615614452364872,0.000393814791852722,299,299,299 -"683","IAR_LU_subtracted","desc lower intestine",50,0.69,0.029,0.00131,0.686488325351207,0.0294805288036491,0.00131674147781799,0.05,0.05,0.05,0.0350265291360364,0.00317717209129982,0.000231513954746746,299,299,299 -"684","IAR_LU_subtracted","desc lower intestine",100,0.69,0.029,0.00131,0.688499643317253,0.029166381360917,0.00131311787679321,0.05,0.05,0.05,0.0172978748932321,0.00151214165342676,0.0001147279321005,299,299,299 -"685","IAR_LU_subtracted","desc lower intestine",200,0.69,0.029,0.00131,0.689091142140118,0.02908382629515,0.00131259560662137,0.05,0.05,0.05,0.00862471112793025,0.000746769041292778,5.72226395589749e-05,299,299,299 -"686","IAR_LU_subtracted","esophagus",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.05,0.05,0.05,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 -"687","IAR_LU_subtracted","esophagus",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.05,0.05,0.05,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 -"688","IAR_LU_subtracted","esophagus",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.05,0.05,0.05,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 -"689","IAR_LU_subtracted","esophagus",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.05,0.05,0.05,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 -"690","IAR_LU_subtracted","esophagus",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.05,0.05,0.05,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 -"691","IAR_LU_subtracted","esophagus cont",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.05,0.05,0.05,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 -"692","IAR_LU_subtracted","esophagus cont",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.05,0.05,0.05,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 -"693","IAR_LU_subtracted","esophagus cont",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.05,0.05,0.05,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 -"694","IAR_LU_subtracted","esophagus cont",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.05,0.05,0.05,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 -"695","IAR_LU_subtracted","esophagus cont",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.05,0.05,0.05,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 -"696","IAR_LU_subtracted","Left kidney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.05,0.05,0.05,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 -"697","IAR_LU_subtracted","Left kidney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.05,0.05,0.05,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 -"698","IAR_LU_subtracted","Left kidney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.05,0.05,0.05,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 -"699","IAR_LU_subtracted","Left kidney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.05,0.05,0.05,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 -"700","IAR_LU_subtracted","Left kidney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.05,0.05,0.05,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 -"701","IAR_LU_subtracted","left kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.05,0.05,0.05,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 -"702","IAR_LU_subtracted","left kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.05,0.05,0.05,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 -"703","IAR_LU_subtracted","left kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.05,0.05,0.05,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 -"704","IAR_LU_subtracted","left kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.05,0.05,0.05,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 -"705","IAR_LU_subtracted","left kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.05,0.05,0.05,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 -"706","IAR_LU_subtracted","Liver",10,0.11,0.1,0.0015,0.121102796262656,0.0634637023292287,0.00152084809188092,0.05,0.05,0.05,0.130105575340284,0.0425007401607272,0.000472993211159269,299,299,299 -"707","IAR_LU_subtracted","Liver",30,0.11,0.1,0.0015,0.0977558608603766,0.0724781854232728,0.00150154707211704,0.05,0.05,0.05,0.0613502493964698,0.034666306804501,0.000152137743344338,299,299,299 -"708","IAR_LU_subtracted","Liver",50,0.11,0.1,0.0015,0.100463203481405,0.0787945272430514,0.00150017699860271,0.05,0.05,0.05,0.0409980511902564,0.0284510570921832,9.09784274199351e-05,299,299,299 -"709","IAR_LU_subtracted","Liver",100,0.11,0.1,0.0015,0.105490313170251,0.0868785527973936,0.00149980895512081,0.05,0.05,0.05,0.0208767035787053,0.0189325400054299,4.54189474712779e-05,299,299,299 -"710","IAR_LU_subtracted","Liver",200,0.11,0.1,0.0015,0.107911734542008,0.0926665405232451,0.00149983471124947,0.05,0.05,0.05,0.010493763751019,0.0109829786476278,2.26988859055568e-05,299,299,299 -"711","IAR_LU_subtracted","Myocardium LV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.05,0.05,0.05,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 -"712","IAR_LU_subtracted","Myocardium LV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.05,0.05,0.05,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 -"713","IAR_LU_subtracted","Myocardium LV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.05,0.05,0.05,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 -"714","IAR_LU_subtracted","Myocardium LV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.05,0.05,0.05,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 -"715","IAR_LU_subtracted","Myocardium LV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.05,0.05,0.05,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 -"716","IAR_LU_subtracted","myocardium ra",10,0.07,0.07,0.0015,0.10186810798305,0.0606534117311725,0.00151975238387796,0.05,0.05,0.05,0.120898300340911,0.0434847654606971,0.000451902244673881,299,299,299 -"717","IAR_LU_subtracted","myocardium ra",30,0.07,0.07,0.0015,0.0669092818312048,0.0629092386288161,0.00150135088654914,0.05,0.05,0.05,0.05467533607346,0.0390189481601652,0.000145531665798083,299,299,299 -"718","IAR_LU_subtracted","myocardium ra",50,0.07,0.07,0.0015,0.0649047689569669,0.0657124808261645,0.00150012323561766,0.05,0.05,0.05,0.0373547816491121,0.0345082797190195,8.70510202022302e-05,299,299,299 -"719","IAR_LU_subtracted","myocardium ra",100,0.07,0.07,0.0015,0.0673614139938931,0.0697335469292888,0.00149980568738501,0.05,0.05,0.05,0.0196998246819315,0.0271665305647647,4.34633528226247e-05,299,299,299 -"720","IAR_LU_subtracted","myocardium ra",200,0.07,0.07,0.0015,0.0692312276466145,0.0716133033330059,0.00149983895305835,0.05,0.05,0.05,0.00928973196376031,0.0191722698037651,2.17222536755328e-05,299,299,299 -"721","IAR_LU_subtracted","myocardium RV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.05,0.05,0.05,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 -"722","IAR_LU_subtracted","myocardium RV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.05,0.05,0.05,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 -"723","IAR_LU_subtracted","myocardium RV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.05,0.05,0.05,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 -"724","IAR_LU_subtracted","myocardium RV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.05,0.05,0.05,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 -"725","IAR_LU_subtracted","myocardium RV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.05,0.05,0.05,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 -"726","IAR_LU_subtracted","pancreas",10,0.15,0.01,0.00129999999999999,0.145973572791277,0.0418322359345869,0.00134733544815708,0.05,0.05,0.05,0.133409111984285,0.0427515729870689,0.000431649675978663,299,299,299 -"727","IAR_LU_subtracted","pancreas",30,0.15,0.01,0.00129999999999999,0.128614984268459,0.0196787383317491,0.00133082551202286,0.05,0.05,0.05,0.0591082064465484,0.0231057149671265,0.000139043274945453,299,299,299 -"728","IAR_LU_subtracted","pancreas",50,0.15,0.01,0.00129999999999999,0.129890010988128,0.014418840532864,0.00132993185853207,0.05,0.05,0.05,0.0358391575513234,0.0125046852807563,8.31806812154377e-05,299,299,299 -"729","IAR_LU_subtracted","pancreas",100,0.15,0.01,0.00129999999999999,0.130754692398513,0.0119016729036151,0.00132978575875502,0.05,0.05,0.05,0.0179785444573827,0.00250589698561192,4.15321586456171e-05,299,299,299 -"730","IAR_LU_subtracted","pancreas",200,0.15,0.01,0.00129999999999999,0.131107657691518,0.0115757199693789,0.00132987961477637,0.05,0.05,0.05,0.00899900314885932,0.00109942059007681,2.07569285081239e-05,299,299,299 -"731","IAR_LU_subtracted","pericardium",10,0.07,0.00999999999999999,0.003,0.182005007344476,0.0449399513343394,0.00273701082230784,0.05,0.05,0.05,0.199393895082264,0.0446081430054895,0.00088504212200084,299,299,299 -"732","IAR_LU_subtracted","pericardium",30,0.07,0.00999999999999999,0.003,0.0767264387057665,0.0483395662495535,0.00304612925895245,0.05,0.05,0.05,0.0884446645225644,0.0443972230787564,0.00039105626191339,299,299,299 -"733","IAR_LU_subtracted","pericardium",50,0.07,0.00999999999999999,0.003,0.060765317251112,0.0422176464039951,0.00304009046144298,0.05,0.05,0.05,0.0613396076316471,0.0421072613162647,0.000238152536499515,299,299,299 -"734","IAR_LU_subtracted","pericardium",100,0.07,0.00999999999999999,0.003,0.0523575780666355,0.0289300542806783,0.00303324788669806,0.05,0.05,0.05,0.0371516507191181,0.0324742655660579,0.000118500604743613,299,299,299 -"735","IAR_LU_subtracted","pericardium",200,0.07,0.00999999999999999,0.003,0.0514683102067133,0.0168738578171833,0.00303117957616411,0.05,0.05,0.05,0.0206465635019397,0.0152473956782957,5.91963411917844e-05,299,299,299 -"736","IAR_LU_subtracted","right kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.05,0.05,0.05,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 -"737","IAR_LU_subtracted","right kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.05,0.05,0.05,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 -"738","IAR_LU_subtracted","right kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.05,0.05,0.05,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 -"739","IAR_LU_subtracted","right kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.05,0.05,0.05,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 -"740","IAR_LU_subtracted","right kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.05,0.05,0.05,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 -"741","IAR_LU_subtracted","Right kydney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.05,0.05,0.05,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 -"742","IAR_LU_subtracted","Right kydney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.05,0.05,0.05,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 -"743","IAR_LU_subtracted","Right kydney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.05,0.05,0.05,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 -"744","IAR_LU_subtracted","Right kydney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.05,0.05,0.05,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 -"745","IAR_LU_subtracted","Right kydney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.05,0.05,0.05,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 -"746","IAR_LU_subtracted","small intestine",10,0.69,0.029,0.00131,0.649071571639429,0.037464324397123,0.00128397090175435,0.05,0.05,0.05,0.187010914793362,0.0225038113743857,0.0010310750352814,299,299,299 -"747","IAR_LU_subtracted","small intestine",30,0.69,0.029,0.00131,0.681939176198207,0.0302945345465633,0.00132700874616123,0.05,0.05,0.05,0.0603891142492399,0.00615614452326418,0.000393814792063893,299,299,299 -"748","IAR_LU_subtracted","small intestine",50,0.69,0.029,0.00131,0.686488325345437,0.0294805288039652,0.00131674147785283,0.05,0.05,0.05,0.0350265291349697,0.00317717209152528,0.000231513954749497,299,299,299 -"749","IAR_LU_subtracted","small intestine",100,0.69,0.029,0.00131,0.688499643316856,0.029166381361068,0.00131311787679812,0.05,0.05,0.05,0.0172978748915505,0.00151214165319551,0.000114727932084214,299,299,299 -"750","IAR_LU_subtracted","small intestine",200,0.69,0.029,0.00131,0.689091142138875,0.0290838262952531,0.00131259560662869,0.05,0.05,0.05,0.00862471112761152,0.000746769041454522,5.72226395519967e-05,299,299,299 -"751","IAR_LU_subtracted","spleen",10,0.2,0.03,0.00129999999999999,0.192961858260559,0.0492597470738909,0.00131869223769686,0.05,0.05,0.05,0.14672006477452,0.0390143038859564,0.000459161541284809,299,299,299 -"752","IAR_LU_subtracted","spleen",30,0.2,0.03,0.00129999999999999,0.195619974063773,0.0378660228770973,0.00130108907088979,0.05,0.05,0.05,0.0582480816426133,0.0230396606877878,0.000147366538355311,299,299,299 -"753","IAR_LU_subtracted","spleen",50,0.2,0.03,0.00129999999999999,0.198125993490742,0.0334346769905656,0.00130009526398064,0.05,0.05,0.05,0.033860026554998,0.0141196943300376,8.81308203353264e-05,299,299,299 -"754","IAR_LU_subtracted","spleen",100,0.2,0.03,0.00129999999999999,0.199199769344964,0.0308742355909984,0.001299928493873,0.05,0.05,0.05,0.0167658026535138,0.00575644302154389,4.39969723252588e-05,299,299,299 -"755","IAR_LU_subtracted","spleen",200,0.2,0.03,0.00129999999999999,0.199585281953296,0.0302681533889609,0.00130002911399547,0.05,0.05,0.05,0.00835864747465978,0.00272874833953629,2.19877335574001e-05,299,299,299 -"756","IAR_LU_subtracted","st wall",10,0.3,0.012,0.0015,0.262694585680195,0.0319185653801386,0.00157773932710541,0.05,0.05,0.05,0.172890946488421,0.0349074029422235,0.000614593950499859,299,299,299 -"757","IAR_LU_subtracted","st wall",30,0.3,0.012,0.0015,0.271112584934838,0.0157552797151743,0.00155214816764873,0.05,0.05,0.05,0.0670076659202155,0.0109054102082447,0.00019551156370717,299,299,299 -"758","IAR_LU_subtracted","st wall",50,0.3,0.012,0.0015,0.273986799953669,0.013806573219354,0.00154952132488848,0.05,0.05,0.05,0.0398746950657118,0.00322902951392831,0.00011668052444887,299,299,299 -"759","IAR_LU_subtracted","st wall",100,0.3,0.012,0.0015,0.275412083141614,0.0133114999997825,0.0015486735829641,0.05,0.05,0.05,0.0199011338224045,0.00132338051992791,5.81996976856253e-05,299,299,299 -"760","IAR_LU_subtracted","st wall",200,0.3,0.012,0.0015,0.275903272911037,0.0131993048909566,0.00154860379618769,0.05,0.05,0.05,0.00994694081242093,0.000634013714884041,2.90796048726369e-05,299,299,299 -"761","IAR_LU_subtracted","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.649071571567166,0.037464324385318,0.00128397090178629,0.05,0.05,0.05,0.187010915027799,0.0225038113468096,0.00103107503559299,299,299,299 -"762","IAR_LU_subtracted","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.681939176203752,0.0302945345463009,0.00132700874615982,0.05,0.05,0.05,0.0603891142173648,0.00615614452231295,0.000393814791967693,299,299,299 -"763","IAR_LU_subtracted","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.686488325340787,0.0294805288049083,0.00131674147788471,0.05,0.05,0.05,0.0350265291502769,0.00317717209269235,0.000231513954838717,299,299,299 -"764","IAR_LU_subtracted","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.688499643316927,0.0291663813609283,0.00131311787679501,0.05,0.05,0.05,0.0172978748928733,0.00151214165340536,0.000114727932099834,299,299,299 -"765","IAR_LU_subtracted","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689091142135544,0.0290838262954833,0.0013125956066485,0.05,0.05,0.05,0.0086247111300983,0.000746769041458226,5.72226395704009e-05,299,299,299 -"766","IAR_LU_subtracted","Vein",10,1,0.1,0.00299999999999999,0.868045922383658,0.0985985293150582,0.000602377539365262,0.05,0.05,0.05,0.112435321603995,0.00440048348201647,0.000954240122974581,299,299,299 -"767","IAR_LU_subtracted","Vein",30,1,0.1,0.00299999999999999,0.957942477946852,0.0996184418326707,0.00060239305244365,0.05,0.05,0.05,0.0334473349561743,0.00133438593435031,0.000954268289514292,299,299,299 -"768","IAR_LU_subtracted","Vein",50,1,0.1,0.00299999999999999,0.974974772688412,0.0997749955436001,0.000602405603200741,0.05,0.05,0.05,0.0196506919525737,0.000799331221169125,0.000954266532348308,299,299,299 -"769","IAR_LU_subtracted","Vein",100,1,0.1,0.00299999999999999,0.987563371296023,0.0998909406437419,0.000602442811986694,0.05,0.05,0.05,0.00967550352550441,0.000393844437618856,0.000954286483399826,299,299,299 -"770","IAR_LU_subtracted","Vein",200,1,0.1,0.00299999999999999,0.993800432483541,0.0999475578951229,0.000602417326124585,0.05,0.05,0.05,0.00480131473453758,0.000192683440678621,0.000954060412685357,299,299,299 -"771","OGC_AmsterdamUMC_Bayesian_biexp","Artery",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.05,0.05,0.05,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 -"772","OGC_AmsterdamUMC_Bayesian_biexp","Artery",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.05,0.05,0.05,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 -"773","OGC_AmsterdamUMC_Bayesian_biexp","Artery",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.05,0.05,0.05,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 -"774","OGC_AmsterdamUMC_Bayesian_biexp","Artery",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.05,0.05,0.05,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 -"775","OGC_AmsterdamUMC_Bayesian_biexp","Artery",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.05,0.05,0.05,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 -"776","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694246808778769,0.0332124281614618,0.00115662969455558,0.05,0.05,0.05,0.110159746203623,0.0193048930533793,0.000818020501222016,299,299,299 -"777","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690033147644459,0.0293545237816436,0.00129905886269543,0.05,0.05,0.05,0.036083088630791,0.00362951393892406,0.000284878762206832,299,299,299 -"778","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.689921467398159,0.029138651533785,0.00130314910724909,0.05,0.05,0.05,0.0213772215849651,0.00213834289461457,0.00016610479346135,299,299,299 -"779","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689705414601575,0.0291477643601371,0.0013080534895242,0.05,0.05,0.05,0.0108249806858387,0.00129122051220513,8.27804115283052e-05,299,299,299 -"780","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689676530218629,0.0290763054841384,0.00130801784811619,0.05,0.05,0.05,0.00583323341091172,0.000767401324572525,4.21804967296496e-05,299,299,299 -"781","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.05,0.05,0.05,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 -"782","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.05,0.05,0.05,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 -"783","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.05,0.05,0.05,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 -"784","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.05,0.05,0.05,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 -"785","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.05,0.05,0.05,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 -"786","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",10,1,0.1,0.003,0.914297401004746,0.124952391582887,0.000341385315837157,0.05,0.05,0.05,0.0338704200880721,0.0264919309675768,0.000759817497225985,299,299,299 -"787","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",30,1,0.1,0.003,0.973099598376866,0.107393352119341,0.000232219992515836,0.05,0.05,0.05,0.00780473426493649,0.00748303413275565,0.000430417814946813,299,299,299 -"788","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",50,1,0.1,0.003,0.984110980162476,0.104286733344672,0.000213374085275976,0.05,0.05,0.05,0.00467665532925233,0.00434422535404416,0.000410079794992667,299,299,299 -"789","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",100,1,0.1,0.003,0.992309672842335,0.102048011852143,0.000179453249523488,0.05,0.05,0.05,0.00230376286511362,0.00212585312384098,0.0003773364651911,299,299,299 -"790","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",200,1,0.1,0.003,0.996293917212231,0.100989102049737,0.000153682190571484,0.05,0.05,0.05,0.0011463180878882,0.00105305653525395,0.000356019214536034,299,299,299 -"791","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694246845378351,0.0332125427670004,0.00115663122095504,0.05,0.05,0.05,0.110160150700988,0.0193048206014305,0.000818021742499563,299,299,299 -"792","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690033102633023,0.0293545254824597,0.00129905896131927,0.05,0.05,0.05,0.0360830639131271,0.00362951206875517,0.000284879125083764,299,299,299 -"793","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689855673695442,0.0291428811190877,0.00130360554367507,0.05,0.05,0.05,0.0213154090326844,0.0021325877974294,0.000165776474780529,299,299,299 -"794","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689705423019645,0.029147764170286,0.0013080534599478,0.05,0.05,0.05,0.0108249733952305,0.00129122098709657,8.27803296124957e-05,299,299,299 -"795","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689676538098746,0.0290763056742895,0.00130801775791647,0.05,0.05,0.05,0.00583319664850218,0.000767398183974445,4.21801838019575e-05,299,299,299 -"796","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.05,0.05,0.05,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 -"797","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.05,0.05,0.05,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 -"798","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.05,0.05,0.05,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 -"799","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.05,0.05,0.05,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 -"800","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.05,0.05,0.05,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 -"801","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.05,0.05,0.05,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 -"802","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.05,0.05,0.05,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 -"803","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.05,0.05,0.05,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 -"804","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.05,0.05,0.05,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 -"805","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.05,0.05,0.05,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 -"806","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.05,0.05,0.05,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 -"807","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.05,0.05,0.05,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 -"808","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.05,0.05,0.05,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 -"809","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.05,0.05,0.05,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 -"810","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.05,0.05,0.05,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 -"811","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.05,0.05,0.05,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 -"812","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.05,0.05,0.05,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 -"813","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.05,0.05,0.05,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 -"814","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.05,0.05,0.05,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 -"815","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.05,0.05,0.05,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 -"816","OGC_AmsterdamUMC_Bayesian_biexp","Liver",10,0.11,0.1,0.0015,0.170376564882108,0.469616209489762,0.00136302767202211,0.05,0.05,0.05,0.138211368776015,0.731976840414104,0.000361913909318564,299,299,299 -"817","OGC_AmsterdamUMC_Bayesian_biexp","Liver",30,0.11,0.1,0.0015,0.11810940657777,0.227068026042997,0.0014860402075791,0.05,0.05,0.05,0.0342593875584427,0.390847594433051,9.96091018932598e-05,299,299,299 -"818","OGC_AmsterdamUMC_Bayesian_biexp","Liver",50,0.11,0.1,0.0015,0.112169947194152,0.131862486304358,0.00149587941679805,0.05,0.05,0.05,0.0153976558796226,0.168625986104975,5.11568481112502e-05,299,299,299 -"819","OGC_AmsterdamUMC_Bayesian_biexp","Liver",100,0.11,0.1,0.0015,0.110516960663717,0.104566165417941,0.00149817275530986,0.05,0.05,0.05,0.00752550525764433,0.0281966308117207,2.46815644447154e-05,299,299,299 -"820","OGC_AmsterdamUMC_Bayesian_biexp","Liver",200,0.11,0.1,0.0015,0.110097109059224,0.101175495734664,0.00149922432315367,0.05,0.05,0.05,0.00376626520198992,0.0116170123481358,1.22063280870859e-05,299,299,299 -"821","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.05,0.05,0.05,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 -"822","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.05,0.05,0.05,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 -"823","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.05,0.05,0.05,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 -"824","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.05,0.05,0.05,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 -"825","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.05,0.05,0.05,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 -"826","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",10,0.07,0.07,0.0015,0.132992854081483,0.461997483376288,0.00136831570972518,0.05,0.05,0.05,0.140522743944648,0.734010313718581,0.000346091519424476,299,299,299 -"827","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884517939449098,0.289658964780844,0.0014676259819499,0.05,0.05,0.05,0.0508441257041168,0.529373222441277,0.000119387045545757,299,299,299 -"828","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0761265927150077,0.156862196421825,0.00148987685522847,0.05,0.05,0.05,0.0242266882566584,0.309458478938769,6.34852979630936e-05,299,299,299 -"829","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0709638888897991,0.0784496324481009,0.00149743190633742,0.05,0.05,0.05,0.00811747399978573,0.0469212398862685,2.52774164583531e-05,299,299,299 -"830","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701854186634233,0.0715583354856421,0.00149905296281753,0.05,0.05,0.05,0.00403493989933669,0.0129671102252917,1.23364517371494e-05,299,299,299 -"831","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.05,0.05,0.05,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 -"832","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.05,0.05,0.05,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 -"833","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.05,0.05,0.05,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 -"834","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.05,0.05,0.05,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 -"835","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.05,0.05,0.05,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 -"836","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.177581724321138,0.43065718969884,0.00125654974398315,0.05,0.05,0.05,0.165637117410062,0.745081523961432,0.000402663506351594,299,299,299 -"837","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.176565399528607,0.0605254346275223,0.00126098577319189,0.05,0.05,0.05,0.0941306062972586,0.26112658574032,0.000185523030805802,299,299,299 -"838","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.169797776388179,0.0172281215928433,0.00126914664260273,0.05,0.05,0.05,0.0691911662849515,0.0530402156979167,0.000129620496323605,299,299,299 -"839","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156843915754002,0.0102744645346462,0.00128825630219321,0.05,0.05,0.05,0.0330983274466555,0.00280593527748534,6.19639236378919e-05,299,299,299 -"840","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151525028767084,0.0100578225668435,0.00129696544759154,0.05,0.05,0.05,0.0150042143805674,0.00127728832085491,2.90654102466401e-05,299,299,299 -"841","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.211255537581016,0.249229775871576,0.00250125413556506,0.05,0.05,0.05,0.261211569379197,0.559657730577179,0.000882896050374514,299,299,299 -"842","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.129163583048985,0.267009677446907,0.00288255604574022,0.05,0.05,0.05,0.17935605322893,0.595048801434633,0.000417501553796525,299,299,299 -"843","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.117317522254229,0.229011081795502,0.0029314606487806,0.05,0.05,0.05,0.148570783679304,0.554095364539563,0.000298907038283006,299,299,299 -"844","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.116118730669429,0.0999844203861992,0.00294503908419238,0.05,0.05,0.05,0.115927313526193,0.331589357967683,0.000200447722297107,299,299,299 -"845","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0985240401785247,0.0153444939154568,0.00296476284362889,0.05,0.05,0.05,0.0771271956803151,0.0234254542116207,0.000123398388298247,299,299,299 -"846","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.05,0.05,0.05,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 -"847","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.05,0.05,0.05,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 -"848","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.05,0.05,0.05,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 -"849","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.05,0.05,0.05,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 -"850","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.05,0.05,0.05,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 -"851","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.05,0.05,0.05,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 -"852","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.05,0.05,0.05,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 -"853","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.05,0.05,0.05,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 -"854","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.05,0.05,0.05,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 -"855","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.05,0.05,0.05,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 -"856","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",10,0.69,0.029,0.00131,0.694246360658053,0.0332125553132146,0.00115663016547754,0.05,0.05,0.05,0.110159259316649,0.0193048143897897,0.000818020512686296,299,299,299 -"857","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",30,0.69,0.029,0.00131,0.690033088055209,0.0293545333482025,0.00129905906199326,0.05,0.05,0.05,0.0360830894438484,0.00362952375376617,0.000284878708553556,299,299,299 -"858","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",50,0.69,0.029,0.00131,0.689921486203945,0.0291386488646149,0.00130314885737654,0.05,0.05,0.05,0.0213772482384634,0.00213834833191147,0.00016610478799147,299,299,299 -"859","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",100,0.69,0.029,0.00131,0.689787379406689,0.0291336831256088,0.00130679586340067,0.05,0.05,0.05,0.0108805102554908,0.0012833541569494,8.28438476605137e-05,299,299,299 -"860","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",200,0.69,0.029,0.00131,0.689676541245555,0.0290763054757247,0.00130801778345195,0.05,0.05,0.05,0.00583322921862559,0.000767400913297244,4.21803596038404e-05,299,299,299 -"861","OGC_AmsterdamUMC_Bayesian_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.252378410002267,0.233718646050262,0.00119059786898657,0.05,0.05,0.05,0.143855248399429,0.502476062586288,0.000408972864282049,299,299,299 -"862","OGC_AmsterdamUMC_Bayesian_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206891201646101,0.0391651098808692,0.00128264117770245,0.05,0.05,0.05,0.0390714113206133,0.0577794578547973,0.000116384817598468,299,299,299 -"863","OGC_AmsterdamUMC_Bayesian_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202242372508398,0.0312880376598558,0.00129258240323802,0.05,0.05,0.05,0.0221743225017492,0.00880333853639113,6.60228502625122e-05,299,299,299 -"864","OGC_AmsterdamUMC_Bayesian_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200493108698575,0.0302484422333146,0.00129737230400495,0.05,0.05,0.05,0.0107432935350786,0.00383175326077784,3.20545640691115e-05,299,299,299 -"865","OGC_AmsterdamUMC_Bayesian_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.2000920443937,0.0300527202364231,0.00129896878525322,0.05,0.05,0.05,0.00532447796635576,0.00186704596028927,1.58938321517461e-05,299,299,299 -"866","OGC_AmsterdamUMC_Bayesian_biexp","st wall",10,0.3,0.012,0.0015,0.342171653732148,0.169021111769008,0.00137658979771026,0.05,0.05,0.05,0.209121239054118,0.464911517650575,0.000634230099480539,299,299,299 -"867","OGC_AmsterdamUMC_Bayesian_biexp","st wall",30,0.3,0.012,0.0015,0.322622542108482,0.0163119559447378,0.00144210772050894,0.05,0.05,0.05,0.0995249294874889,0.0358945966856197,0.000264951211719173,299,299,299 -"868","OGC_AmsterdamUMC_Bayesian_biexp","st wall",50,0.3,0.012,0.0015,0.307380239713298,0.0123840142302169,0.00147963560215619,0.05,0.05,0.05,0.0543986230945646,0.00311908608212234,0.000143578936921841,299,299,299 -"869","OGC_AmsterdamUMC_Bayesian_biexp","st wall",100,0.3,0.012,0.0015,0.301693691231062,0.0120871111509783,0.00149429686700861,0.05,0.05,0.05,0.0263415216139092,0.00143226934515234,6.96702203754273e-05,299,299,299 -"870","OGC_AmsterdamUMC_Bayesian_biexp","st wall",200,0.3,0.012,0.0015,0.300260349126461,0.0120289058061544,0.00149847883633801,0.05,0.05,0.05,0.0131909252941061,0.000701134900800486,3.49408339753062e-05,299,299,299 -"871","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694259683027242,0.0332121262581744,0.00115651817908036,0.05,0.05,0.05,0.11017656415909,0.0193052051533991,0.000818178301615205,299,299,299 -"872","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.690033167699518,0.0293545217522552,0.00129905853784076,0.05,0.05,0.05,0.036083058729084,0.00362951389776666,0.000284878311839241,299,299,299 -"873","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689921506074573,0.0291386465936453,0.0013031486571486,0.05,0.05,0.05,0.0213772426772885,0.00213834747992634,0.000166104827306889,299,299,299 -"874","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689705435319841,0.0291477639759397,0.00130805336484234,0.05,0.05,0.05,0.0108250110017957,0.0012912220707904,8.27806112880171e-05,299,299,299 -"875","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689703364774609,0.0290729200975083,0.0013079275799941,0.05,0.05,0.05,0.0057973136397047,0.000764637348817088,4.20153078500508e-05,299,299,299 -"876","OGC_AmsterdamUMC_Bayesian_biexp","Vein",10,1,0.1,0.00299999999999999,0.914295867026791,0.124952449208066,0.000341386376995397,0.05,0.05,0.05,0.033870556357192,0.0264921360903649,0.000759818054968653,299,299,299 -"877","OGC_AmsterdamUMC_Bayesian_biexp","Vein",30,1,0.1,0.00299999999999999,0.973099780568972,0.107393408056422,0.000232219949442385,0.05,0.05,0.05,0.00780476201787954,0.00748295051395532,0.000430417878162574,299,299,299 -"878","OGC_AmsterdamUMC_Bayesian_biexp","Vein",50,1,0.1,0.00299999999999999,0.984111118518383,0.104286700344162,0.000213374328770124,0.05,0.05,0.05,0.00467685321257514,0.00434424421111718,0.000410079679040286,299,299,299 -"879","OGC_AmsterdamUMC_Bayesian_biexp","Vein",100,1,0.1,0.00299999999999999,0.992309696276133,0.102047954866857,0.000179453478078494,0.05,0.05,0.05,0.00230377417751352,0.00212580311791353,0.000377336365917817,299,299,299 -"880","OGC_AmsterdamUMC_Bayesian_biexp","Vein",200,1,0.1,0.00299999999999999,0.996293961868916,0.100989052773125,0.000153682306312602,0.05,0.05,0.05,0.00114635413380225,0.0010530293970243,0.000356019850089775,299,299,299 -"881","OGC_AmsterdamUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.05,0.05,0.05,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 -"882","OGC_AmsterdamUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.05,0.05,0.05,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 -"883","OGC_AmsterdamUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.05,0.05,0.05,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 -"884","OGC_AmsterdamUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.05,0.05,0.05,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 -"885","OGC_AmsterdamUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.05,0.05,0.05,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 -"886","OGC_AmsterdamUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694830688531838,0.0326249863604666,0.00114655138542055,0.05,0.05,0.05,0.0978007798077074,0.0170421542867141,0.00074426190292453,299,299,299 -"887","OGC_AmsterdamUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.689570850554634,0.0293846834593745,0.00130099623058546,0.05,0.05,0.05,0.0358332140742521,0.00328309904723427,0.000279782024748395,299,299,299 -"888","OGC_AmsterdamUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.68982569362266,0.0291500977518991,0.00130432508924539,0.05,0.05,0.05,0.0213881941208833,0.0019024829657527,0.000166083415100297,299,299,299 -"889","OGC_AmsterdamUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689946565171096,0.0290467790735175,0.00130699632921778,0.05,0.05,0.05,0.0106631625297783,0.000938640327346139,8.26562863313582e-05,299,299,299 -"890","OGC_AmsterdamUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689981335122987,0.0290165319422673,0.00130845678093965,0.05,0.05,0.05,0.00532704595643484,0.00046772177618261,4.12831236659919e-05,299,299,299 -"891","OGC_AmsterdamUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.05,0.05,0.05,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 -"892","OGC_AmsterdamUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.05,0.05,0.05,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 -"893","OGC_AmsterdamUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.05,0.05,0.05,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 -"894","OGC_AmsterdamUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.05,0.05,0.05,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 -"895","OGC_AmsterdamUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.05,0.05,0.05,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 -"896","OGC_AmsterdamUMC_biexp","Blood RV",10,1,0.1,0.003,0.916551204477061,0.122369011950598,0.000273066803012016,0.05,0.05,0.05,0.0227251914120853,0.0234330403592379,0.000525988248231766,299,299,299 -"897","OGC_AmsterdamUMC_biexp","Blood RV",30,1,0.1,0.003,0.973161260787835,0.106546698466594,0.000228130843033075,0.05,0.05,0.05,0.0078285922138933,0.00645782890351296,0.000431214372101425,299,299,299 -"898","OGC_AmsterdamUMC_biexp","Blood RV",50,1,0.1,0.003,0.984189738173453,0.103791606376294,0.000208198245221205,0.05,0.05,0.05,0.00468303351061325,0.00375278684341751,0.000406133457828171,299,299,299 -"899","OGC_AmsterdamUMC_biexp","Blood RV",100,1,0.1,0.003,0.992359928406606,0.101811171259488,0.000175728107883654,0.05,0.05,0.05,0.00229602425602299,0.00183520810771947,0.000373114811370238,299,299,299 -"900","OGC_AmsterdamUMC_biexp","Blood RV",200,1,0.1,0.003,0.996323154043503,0.100873285154226,0.000149761334226485,0.05,0.05,0.05,0.0011362202179319,0.000908483065035726,0.000352386145881468,299,299,299 -"901","OGC_AmsterdamUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694830688306291,0.0326249863621617,0.00114655138827578,0.05,0.05,0.05,0.0978007793640295,0.0170421542714422,0.000744261900488319,299,299,299 -"902","OGC_AmsterdamUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.689570850526864,0.029384683464532,0.0013009962306133,0.05,0.05,0.05,0.0358332145166679,0.00328309907506283,0.000279782027560119,299,299,299 -"903","OGC_AmsterdamUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689825693551577,0.0291500977561171,0.00130432508986481,0.05,0.05,0.05,0.0213881941750843,0.00190248296579918,0.00016608341577808,299,299,299 -"904","OGC_AmsterdamUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689946565084964,0.0290467790793416,0.00130699633001302,0.05,0.05,0.05,0.0106631624492495,0.000938640323571297,8.26562859037306e-05,299,299,299 -"905","OGC_AmsterdamUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689981335136009,0.0290165319415151,0.00130845678084101,0.05,0.05,0.05,0.0053270460155283,0.000467721779019385,4.12831240551719e-05,299,299,299 -"906","OGC_AmsterdamUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.05,0.05,0.05,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 -"907","OGC_AmsterdamUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.05,0.05,0.05,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 -"908","OGC_AmsterdamUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.05,0.05,0.05,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 -"909","OGC_AmsterdamUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.05,0.05,0.05,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 -"910","OGC_AmsterdamUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.05,0.05,0.05,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 -"911","OGC_AmsterdamUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.05,0.05,0.05,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 -"912","OGC_AmsterdamUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.05,0.05,0.05,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 -"913","OGC_AmsterdamUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.05,0.05,0.05,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 -"914","OGC_AmsterdamUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.05,0.05,0.05,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 -"915","OGC_AmsterdamUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.05,0.05,0.05,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 -"916","OGC_AmsterdamUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.05,0.05,0.05,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 -"917","OGC_AmsterdamUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.05,0.05,0.05,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 -"918","OGC_AmsterdamUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.05,0.05,0.05,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 -"919","OGC_AmsterdamUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.05,0.05,0.05,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 -"920","OGC_AmsterdamUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.05,0.05,0.05,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 -"921","OGC_AmsterdamUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.05,0.05,0.05,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 -"922","OGC_AmsterdamUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.05,0.05,0.05,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 -"923","OGC_AmsterdamUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.05,0.05,0.05,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 -"924","OGC_AmsterdamUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.05,0.05,0.05,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 -"925","OGC_AmsterdamUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.05,0.05,0.05,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 -"926","OGC_AmsterdamUMC_biexp","Liver",10,0.11,0.1,0.0015,0.168781483710098,0.0998946664266393,0.0013498050183832,0.05,0.05,0.05,0.122995139274488,0.0772265009198665,0.000337252957986261,299,299,299 -"927","OGC_AmsterdamUMC_biexp","Liver",30,0.11,0.1,0.0015,0.114188731736888,0.115331619534224,0.00148632594936495,0.05,0.05,0.05,0.0216959423795506,0.0557579468019812,8.43750873327471e-05,299,299,299 -"928","OGC_AmsterdamUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111084793289577,0.110147712355781,0.00149517257250774,0.05,0.05,0.05,0.01183413282986,0.0399148213895639,4.8761702300905e-05,299,299,299 -"929","OGC_AmsterdamUMC_biexp","Liver",100,0.11,0.1,0.0015,0.110231190403675,0.103476574388879,0.0014982923573173,0.05,0.05,0.05,0.00588808517047419,0.0205159283218359,2.43744136435469e-05,299,299,299 -"930","OGC_AmsterdamUMC_biexp","Liver",200,0.11,0.1,0.0015,0.1100470782725,0.101125031030003,0.00149929708375471,0.05,0.05,0.05,0.00293209185601329,0.00988546801948204,1.21465617474882e-05,299,299,299 -"931","OGC_AmsterdamUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.05,0.05,0.05,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 -"932","OGC_AmsterdamUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.05,0.05,0.05,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 -"933","OGC_AmsterdamUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.05,0.05,0.05,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 -"934","OGC_AmsterdamUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.05,0.05,0.05,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 -"935","OGC_AmsterdamUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.05,0.05,0.05,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 -"936","OGC_AmsterdamUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.140842582474029,0.0815154419321809,0.00133683779290497,0.05,0.05,0.05,0.133651654726981,0.0787637500133576,0.000337383058598956,299,299,299 -"937","OGC_AmsterdamUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0829284043873291,0.0925385612868686,0.00146970569880693,0.05,0.05,0.05,0.040894147264683,0.0669997325413034,0.00010234659109373,299,299,299 -"938","OGC_AmsterdamUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.072923245672355,0.086543488787249,0.00149141826884349,0.05,0.05,0.05,0.0155435838870278,0.050860948922495,5.15890939821251e-05,299,299,299 -"939","OGC_AmsterdamUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.070524437875184,0.0753318595008239,0.00149772019600704,0.05,0.05,0.05,0.00682514888448031,0.025139239611477,2.45968000885053e-05,299,299,299 -"940","OGC_AmsterdamUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701212467432704,0.0714929242888122,0.00149916064828103,0.05,0.05,0.05,0.00338190541112971,0.0111832331213025,1.22606190149771e-05,299,299,299 -"941","OGC_AmsterdamUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.05,0.05,0.05,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 -"942","OGC_AmsterdamUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.05,0.05,0.05,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 -"943","OGC_AmsterdamUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.05,0.05,0.05,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 -"944","OGC_AmsterdamUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.05,0.05,0.05,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 -"945","OGC_AmsterdamUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.05,0.05,0.05,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 -"946","OGC_AmsterdamUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.184853535610611,0.0474378705656416,0.00120984216661857,0.05,0.05,0.05,0.161104187646429,0.0669702421956942,0.000392891369414266,299,299,299 -"947","OGC_AmsterdamUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.1758987150233,0.0213648978673952,0.0012561175701719,0.05,0.05,0.05,0.0959617612998877,0.0372699012998766,0.00018463821702496,299,299,299 -"948","OGC_AmsterdamUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.166798142533227,0.0139339848239637,0.00127239422373439,0.05,0.05,0.05,0.0681687338425591,0.0204281200559457,0.000125570308752639,299,299,299 -"949","OGC_AmsterdamUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.155050447560094,0.0103148716578063,0.00129097893352421,0.05,0.05,0.05,0.0319693578528234,0.00247522256148057,5.97694054006783e-05,299,299,299 -"950","OGC_AmsterdamUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151155511078491,0.0100771654020746,0.00129758916819627,0.05,0.05,0.05,0.01486591983984,0.00114131889925594,2.84629910683132e-05,299,299,299 -"951","OGC_AmsterdamUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.262616475802028,0.0308625180597483,0.00230293995321135,0.05,0.05,0.05,0.288611721740561,0.0557288601070258,0.000959963395181612,299,299,299 -"952","OGC_AmsterdamUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171752736546838,0.0258191200871392,0.00279901103476943,0.05,0.05,0.05,0.188837545487512,0.0473569013409168,0.000422023702062297,299,299,299 -"953","OGC_AmsterdamUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.154585152777794,0.0269701085601376,0.00286376703903012,0.05,0.05,0.05,0.156425793643098,0.0489644773433195,0.000304246897964977,299,299,299 -"954","OGC_AmsterdamUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.130337929311287,0.0221023076365671,0.00291708995451447,0.05,0.05,0.05,0.119422596085694,0.0390373666690182,0.000200857412897068,299,299,299 -"955","OGC_AmsterdamUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0981124920664315,0.01363368266491,0.00296220821462304,0.05,0.05,0.05,0.0749749651464143,0.0203675508518603,0.000119612766836194,299,299,299 -"956","OGC_AmsterdamUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.05,0.05,0.05,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 -"957","OGC_AmsterdamUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.05,0.05,0.05,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 -"958","OGC_AmsterdamUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.05,0.05,0.05,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 -"959","OGC_AmsterdamUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.05,0.05,0.05,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 -"960","OGC_AmsterdamUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.05,0.05,0.05,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 -"961","OGC_AmsterdamUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.05,0.05,0.05,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 -"962","OGC_AmsterdamUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.05,0.05,0.05,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 -"963","OGC_AmsterdamUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.05,0.05,0.05,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 -"964","OGC_AmsterdamUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.05,0.05,0.05,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 -"965","OGC_AmsterdamUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.05,0.05,0.05,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 -"966","OGC_AmsterdamUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.694830687906111,0.0326249863850724,0.001146551391007,0.05,0.05,0.05,0.0978007791606039,0.0170421543207036,0.000744261895530268,299,299,299 -"967","OGC_AmsterdamUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.689570850315831,0.0293846834755066,0.00130099623277285,0.05,0.05,0.05,0.0358332141325587,0.00328309905455554,0.000279782025078523,299,299,299 -"968","OGC_AmsterdamUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.689825693573063,0.0291500977548317,0.0013043250896893,0.05,0.05,0.05,0.0213881941310553,0.00190248296633076,0.000166083414640446,299,299,299 -"969","OGC_AmsterdamUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.68994656517302,0.0290467790735891,0.00130699632918918,0.05,0.05,0.05,0.0106631625130881,0.000938640325588028,8.26562859975714e-05,299,299,299 -"970","OGC_AmsterdamUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.689981335140809,0.0290165319414175,0.00130845678076352,0.05,0.05,0.05,0.00532704601832268,0.000467721780395998,4.1283123962599e-05,299,299,299 -"971","OGC_AmsterdamUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.248565345872263,0.0568790590809539,0.00117109082310806,0.05,0.05,0.05,0.138108152592245,0.0614284067605453,0.000385048669212005,299,299,299 -"972","OGC_AmsterdamUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.204799212322826,0.0344032230756975,0.00128537474230259,0.05,0.05,0.05,0.0373889502807019,0.0196932990153424,0.000109827153921283,299,299,299 -"973","OGC_AmsterdamUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201678467795085,0.0312420978469793,0.00129383894795446,0.05,0.05,0.05,0.0214546726422535,0.0077523763498131,6.40824451508019e-05,299,299,299 -"974","OGC_AmsterdamUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.20040747359065,0.0303107930918353,0.00129785077922554,0.05,0.05,0.05,0.0104719587309842,0.00342852469585086,3.15725299307934e-05,299,299,299 -"975","OGC_AmsterdamUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.200098827653497,0.0300920084049103,0.00129915169076204,0.05,0.05,0.05,0.00519380978047521,0.00166907680512249,1.57069706717535e-05,299,299,299 -"976","OGC_AmsterdamUMC_biexp","st wall",10,0.3,0.012,0.0015,0.361593393686145,0.0323328748012714,0.00130132220666322,0.05,0.05,0.05,0.208350215148267,0.0514342217408351,0.000612311819072441,299,299,299 -"977","OGC_AmsterdamUMC_biexp","st wall",30,0.3,0.012,0.0015,0.316719659160763,0.0137022551884621,0.00145359061242711,0.05,0.05,0.05,0.0970529464093194,0.00856485498776069,0.000254686991328844,299,299,299 -"978","OGC_AmsterdamUMC_biexp","st wall",50,0.3,0.012,0.0015,0.305193533818909,0.0124323700210719,0.00148436640149277,0.05,0.05,0.05,0.053613759973711,0.00282298876439099,0.000140362193961726,299,299,299 -"979","OGC_AmsterdamUMC_biexp","st wall",100,0.3,0.012,0.0015,0.3011193322049,0.0121135942239775,0.00149571619204976,0.05,0.05,0.05,0.0261843319002159,0.00129074569132032,6.85575356626846e-05,299,299,299 -"980","OGC_AmsterdamUMC_biexp","st wall",200,0.3,0.012,0.0015,0.300225825318409,0.0120334534978712,0.00149864155647832,0.05,0.05,0.05,0.0130262845926758,0.000630340215988195,3.40956211098914e-05,299,299,299 -"981","OGC_AmsterdamUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694830688564467,0.032624986312475,0.00114655138620799,0.05,0.05,0.05,0.0978007790483066,0.017042154071943,0.000744261894497508,299,299,299 -"982","OGC_AmsterdamUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689570850550309,0.0293846834605323,0.00130099623067048,0.05,0.05,0.05,0.03583321437894,0.00328309906489773,0.000279782027780018,299,299,299 -"983","OGC_AmsterdamUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689825693412246,0.0291500977660697,0.00130432509126435,0.05,0.05,0.05,0.0213881942331915,0.00190248296909735,0.000166083415658577,299,299,299 -"984","OGC_AmsterdamUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689946565157839,0.0290467790741476,0.00130699632927992,0.05,0.05,0.05,0.0106631624923704,0.000938640325039952,8.2656285973903e-05,299,299,299 -"985","OGC_AmsterdamUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689981335112322,0.0290165319430504,0.00130845678104043,0.05,0.05,0.05,0.00532704598651555,0.000467721780481497,4.1283123603074e-05,299,299,299 -"986","OGC_AmsterdamUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.916551204244533,0.122369011974545,0.000273066816835779,0.05,0.05,0.05,0.022725191121915,0.0234330403198178,0.000525988259691735,299,299,299 -"987","OGC_AmsterdamUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.973161261240563,0.106546698361441,0.000228130761062279,0.05,0.05,0.05,0.00782859243617106,0.0064578289415521,0.000431214198209649,299,299,299 -"988","OGC_AmsterdamUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.984189738028885,0.103791606406811,0.000208198255818229,0.05,0.05,0.05,0.00468303362319796,0.00375278684718259,0.000406133264965843,299,299,299 -"989","OGC_AmsterdamUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.992359928276546,0.101811171283772,0.000175728187662851,0.05,0.05,0.05,0.00229602432637319,0.00183520806791812,0.000373115337318807,299,299,299 -"990","OGC_AmsterdamUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996323153986104,0.100873285167583,0.000149761440764175,0.05,0.05,0.05,0.00113622001644103,0.00090848307766313,0.000352385760028282,299,299,299 -"991","OGC_AmsterdamUMC_biexp_segmented","Artery",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 -"992","OGC_AmsterdamUMC_biexp_segmented","Artery",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 -"993","OGC_AmsterdamUMC_biexp_segmented","Artery",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 -"994","OGC_AmsterdamUMC_biexp_segmented","Artery",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 -"995","OGC_AmsterdamUMC_biexp_segmented","Artery",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 -"996","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390180236,0.00131067694624179,0.05,0.05,0.05,0.143273359410903,0.00746591757058437,0.000965452623261198,299,299,299 -"997","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091792,0.00136286457292459,0.05,0.05,0.05,0.0442643529688101,0.000185589786252479,0.000322790073010869,299,299,299 -"998","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.05,0.05,0.05,0.0260317923438205,1.40320085058926e-10,0.000190041408090366,299,299,299 -"999","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.05,0.05,0.05,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 -"1000","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.05,0.05,0.05,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 -"1001","OGC_AmsterdamUMC_biexp_segmented","Blood RA",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 -"1002","OGC_AmsterdamUMC_biexp_segmented","Blood RA",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 -"1003","OGC_AmsterdamUMC_biexp_segmented","Blood RA",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 -"1004","OGC_AmsterdamUMC_biexp_segmented","Blood RA",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 -"1005","OGC_AmsterdamUMC_biexp_segmented","Blood RA",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 -"1006","OGC_AmsterdamUMC_biexp_segmented","Blood RV",10,1,0.1,0.003,0.89187652895809,0.130371770521945,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595995146847,0.000876166916139467,299,299,299 -"1007","OGC_AmsterdamUMC_biexp_segmented","Blood RV",30,1,0.1,0.003,0.963958649017849,0.108709609162974,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200609997,0.000876181456030473,299,299,299 -"1008","OGC_AmsterdamUMC_biexp_segmented","Blood RV",50,1,0.1,0.003,0.97816921696173,0.105139058114271,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.0046898167166192,0.000912813853531625,299,299,299 -"1009","OGC_AmsterdamUMC_biexp_segmented","Blood RV",100,1,0.1,0.003,0.989084383490558,0.102522060782086,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175040105,0.000912855515978945,299,299,299 -"1010","OGC_AmsterdamUMC_biexp_segmented","Blood RV",200,1,0.1,0.003,0.994541921036986,0.10125504286489,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352008543,0.000913010145476883,299,299,299 -"1011","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",10,0.69,0.029,0.00131,0.661034109543676,0.0519537390427511,0.00131067694617946,0.05,0.05,0.05,0.143273359483562,0.00746591763226972,0.000965452623351917,299,299,299 -"1012","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",30,0.69,0.029,0.00131,0.677766188255513,0.0500107152093789,0.00136286457330544,0.05,0.05,0.05,0.0442643529054461,0.00018558978971045,0.000322790072591844,299,299,299 -"1013","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",50,0.69,0.029,0.00131,0.68022868657494,0.0500000000118474,0.00135564782184761,0.05,0.05,0.05,0.0260317923174537,1.4032007815239e-10,0.000190041407906453,299,299,299 -"1014","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",100,0.69,0.029,0.00131,0.6813744273752,0.0500000000003099,0.00135334951488224,0.05,0.05,0.05,0.0128991835089443,1.00907554152635e-12,9.41499540600846e-05,299,299,299 -"1015","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",200,0.69,0.029,0.00131,0.681731199292581,0.0500000000001251,0.0013531962138951,0.05,0.05,0.05,0.0064313384229787,1.04042230662964e-13,4.6928581419636e-05,299,299,299 -"1016","OGC_AmsterdamUMC_biexp_segmented","esophagus",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.05,0.05,0.05,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 -"1017","OGC_AmsterdamUMC_biexp_segmented","esophagus",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.05,0.05,0.05,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 -"1018","OGC_AmsterdamUMC_biexp_segmented","esophagus",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.05,0.05,0.05,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 -"1019","OGC_AmsterdamUMC_biexp_segmented","esophagus",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.05,0.05,0.05,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 -"1020","OGC_AmsterdamUMC_biexp_segmented","esophagus",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.05,0.05,0.05,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 -"1021","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.05,0.05,0.05,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 -"1022","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.05,0.05,0.05,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 -"1023","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.05,0.05,0.05,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 -"1024","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.05,0.05,0.05,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 -"1025","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.05,0.05,0.05,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 -"1026","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.05,0.05,0.05,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 -"1027","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.05,0.05,0.05,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 -"1028","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.05,0.05,0.05,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 -"1029","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.05,0.05,0.05,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 -"1030","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.05,0.05,0.05,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 -"1031","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.05,0.05,0.05,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 -"1032","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.05,0.05,0.05,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 -"1033","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.05,0.05,0.05,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 -"1034","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.05,0.05,0.05,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 -"1035","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.05,0.05,0.05,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 -"1036","OGC_AmsterdamUMC_biexp_segmented","Liver",10,0.11,0.1,0.0015,0.0972321801659825,0.35559843435101,0.00150859052204052,0.05,0.05,0.05,0.134839808929966,0.632502439816993,0.000367327987709817,299,299,299 -"1037","OGC_AmsterdamUMC_biexp_segmented","Liver",30,0.11,0.1,0.0015,0.107694887153018,0.226173724263367,0.00150016928920599,0.05,0.05,0.05,0.0451472711617818,0.380098790845709,0.000121950650671429,299,299,299 -"1038","OGC_AmsterdamUMC_biexp_segmented","Liver",50,0.11,0.1,0.0015,0.108918954664912,0.137632134381599,0.00149957574189822,0.05,0.05,0.05,0.0269925765528699,0.173220331526938,7.29050804512238e-05,299,299,299 -"1039","OGC_AmsterdamUMC_biexp_segmented","Liver",100,0.11,0.1,0.0015,0.109571576926182,0.10728000421186,0.00149959253645644,0.05,0.05,0.05,0.0134700792856065,0.0365535919006858,3.63764396721475e-05,299,299,299 -"1040","OGC_AmsterdamUMC_biexp_segmented","Liver",200,0.11,0.1,0.0015,0.109813662467211,0.102101719440497,0.00149974766327095,0.05,0.05,0.05,0.00672998368978822,0.0157372078248851,1.81728271900004e-05,299,299,299 -"1041","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.05,0.05,0.05,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 -"1042","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.05,0.05,0.05,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 -"1043","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.05,0.05,0.05,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 -"1044","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.05,0.05,0.05,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 -"1045","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.05,0.05,0.05,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 -"1046","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",10,0.07,0.07,0.0015,0.0578936886535005,0.331287936090609,0.00150745703740933,0.05,0.05,0.05,0.133663508201973,0.620007223240229,0.000349561522849492,299,299,299 -"1047","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",30,0.07,0.07,0.0015,0.0677475633979726,0.252860531918122,0.00150007469297444,0.05,0.05,0.05,0.0451277322847106,0.462488933259553,0.000116654443267633,299,299,299 -"1048","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",50,0.07,0.07,0.0015,0.068936524801532,0.153221079980056,0.00149956512826645,0.05,0.05,0.05,0.0269874814666128,0.288290130918818,6.97554513344443e-05,299,299,299 -"1049","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",100,0.07,0.07,0.0015,0.0695745982637905,0.0851832608134713,0.00149960544347793,0.05,0.05,0.05,0.0134691574388598,0.0574276101213015,3.48091848323947e-05,299,299,299 -"1050","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",200,0.07,0.07,0.0015,0.0698130767438865,0.0732437488492484,0.00149975991644965,0.05,0.05,0.05,0.00672980083126172,0.0176595729765593,1.73906364708644e-05,299,299,299 -"1051","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.05,0.05,0.05,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 -"1052","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.05,0.05,0.05,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 -"1053","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.05,0.05,0.05,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 -"1054","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.05,0.05,0.05,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 -"1055","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.05,0.05,0.05,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 -"1056","OGC_AmsterdamUMC_biexp_segmented","pancreas",10,0.15,0.01,0.00129999999999999,0.100244765420066,0.266741520832647,0.00137548084876521,0.05,0.05,0.05,0.129912389751765,0.562164105737666,0.000344116696880167,299,299,299 -"1057","OGC_AmsterdamUMC_biexp_segmented","pancreas",30,0.15,0.01,0.00129999999999999,0.110360760973366,0.0661716722087468,0.00136667398578444,0.05,0.05,0.05,0.0433110167586883,0.140789670312433,0.000113720557310474,299,299,299 -"1058","OGC_AmsterdamUMC_biexp_segmented","pancreas",50,0.15,0.01,0.00129999999999999,0.111480583752563,0.0539705038259079,0.00136624929746589,0.05,0.05,0.05,0.0259040670714904,0.0479429254670281,6.80011412344266e-05,299,299,299 -"1059","OGC_AmsterdamUMC_biexp_segmented","pancreas",100,0.15,0.01,0.00129999999999999,0.112080763535825,0.0500000065580185,0.00136632895052346,0.05,0.05,0.05,0.0129294848715759,1.69774639357237e-08,3.39338191967857e-05,299,299,299 -"1060","OGC_AmsterdamUMC_biexp_segmented","pancreas",200,0.15,0.01,0.00129999999999999,0.112304748300198,0.050000000728181,0.0013664952449501,0.05,0.05,0.05,0.00646040206372423,6.32502873391021e-09,1.69533243857183e-05,299,299,299 -"1061","OGC_AmsterdamUMC_biexp_segmented","pericardium",10,0.07,0.00999999999999999,0.003,0.0520383050852133,0.17871463052579,0.00290810073173622,0.05,0.05,0.05,0.209231800764477,0.422831401538199,0.000739849912636431,299,299,299 -"1062","OGC_AmsterdamUMC_biexp_segmented","pericardium",30,0.07,0.00999999999999999,0.003,0.0344582030632704,0.193439082301208,0.00306329837568757,0.05,0.05,0.05,0.0804795684271075,0.466549615994945,0.000279719698417709,299,299,299 -"1063","OGC_AmsterdamUMC_biexp_segmented","pericardium",50,0.07,0.00999999999999999,0.003,0.0370860589999383,0.183326258829341,0.00306223557955883,0.05,0.05,0.05,0.0479655490509802,0.442363330135666,0.000167660569102541,299,299,299 -"1064","OGC_AmsterdamUMC_biexp_segmented","pericardium",100,0.07,0.00999999999999999,0.003,0.0387485065804243,0.106024067573401,0.00306070920381438,0.05,0.05,0.05,0.023849433162107,0.267496955607805,8.35301202824561e-05,299,299,299 -"1065","OGC_AmsterdamUMC_biexp_segmented","pericardium",200,0.07,0.00999999999999999,0.003,0.0393008418149469,0.0500135454072159,0.00306053200851328,0.05,0.05,0.05,0.0118997768390481,0.000219338674816968,4.17111224394722e-05,299,299,299 -"1066","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.05,0.05,0.05,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 -"1067","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.05,0.05,0.05,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 -"1068","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.05,0.05,0.05,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 -"1069","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.05,0.05,0.05,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 -"1070","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.05,0.05,0.05,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 -"1071","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.05,0.05,0.05,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 -"1072","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.05,0.05,0.05,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 -"1073","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.05,0.05,0.05,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 -"1074","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.05,0.05,0.05,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 -"1075","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.05,0.05,0.05,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 -"1076","OGC_AmsterdamUMC_biexp_segmented","small intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390164872,0.00131067694624179,0.05,0.05,0.05,0.143273359410903,0.0074659175711477,0.000965452623261198,299,299,299 -"1077","OGC_AmsterdamUMC_biexp_segmented","small intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091894,0.00136286457292459,0.05,0.05,0.05,0.0442643529688101,0.000185589786428744,0.000322790073010869,299,299,299 -"1078","OGC_AmsterdamUMC_biexp_segmented","small intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.05,0.05,0.05,0.0260317923438205,1.40320084211226e-10,0.000190041408090366,299,299,299 -"1079","OGC_AmsterdamUMC_biexp_segmented","small intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.05,0.05,0.05,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 -"1080","OGC_AmsterdamUMC_biexp_segmented","small intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.05,0.05,0.05,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 -"1081","OGC_AmsterdamUMC_biexp_segmented","spleen",10,0.2,0.03,0.00129999999999999,0.18520392281551,0.209255851356637,0.00131436647515706,0.05,0.05,0.05,0.128284620714988,0.43795050055203,0.000366856183513939,299,299,299 -"1082","OGC_AmsterdamUMC_biexp_segmented","spleen",30,0.2,0.03,0.00129999999999999,0.195921638044614,0.0570791154895169,0.00130408703951844,0.05,0.05,0.05,0.0419884764569373,0.0531685484918258,0.000119667429133032,299,299,299 -"1083","OGC_AmsterdamUMC_biexp_segmented","spleen",50,0.2,0.03,0.00129999999999999,0.197041413325606,0.0504893716375674,0.00130363013865361,0.05,0.05,0.05,0.0251082366944411,0.00383960153192709,7.15383551583112e-05,299,299,299 -"1084","OGC_AmsterdamUMC_biexp_segmented","spleen",100,0.2,0.03,0.00129999999999999,0.197638649057216,0.0500000097397441,0.0013037149142624,0.05,0.05,0.05,0.0125312243299692,1.90669760189101e-08,3.5694004704467e-05,299,299,299 -"1085","OGC_AmsterdamUMC_biexp_segmented","spleen",200,0.2,0.03,0.00129999999999999,0.197860311649606,0.050000009538866,0.00130389290756918,0.05,0.05,0.05,0.00626126043010556,1.66111763089958e-08,1.78317987728703e-05,299,299,299 -"1086","OGC_AmsterdamUMC_biexp_segmented","st wall",10,0.3,0.012,0.0015,0.224968563584563,0.152728411143095,0.00164792160735107,0.05,0.05,0.05,0.147842246989045,0.375057604026138,0.000489535231234454,299,299,299 -"1087","OGC_AmsterdamUMC_biexp_segmented","st wall",30,0.3,0.012,0.0015,0.238787520936113,0.0523502353354238,0.00163390334662365,0.05,0.05,0.05,0.048525316538426,0.0309648568654976,0.000160157639209458,299,299,299 -"1088","OGC_AmsterdamUMC_biexp_segmented","st wall",50,0.3,0.012,0.0015,0.240378264028766,0.0500000002507408,0.00163237397051999,0.05,0.05,0.05,0.0289474376095694,2.28400922500028e-09,9.5559900702868e-05,299,299,299 -"1089","OGC_AmsterdamUMC_biexp_segmented","st wall",100,0.3,0.012,0.0015,0.241188415913859,0.0500000000085327,0.00163207076247144,0.05,0.05,0.05,0.0144296581809571,2.55196631854657e-11,4.76338814555705e-05,299,299,299 -"1090","OGC_AmsterdamUMC_biexp_segmented","st wall",200,0.3,0.012,0.0015,0.241472821664073,0.050000000003392,0.00163218547366257,0.05,0.05,0.05,0.00720667286447567,2.68542354759096e-12,2.37887610442069e-05,299,299,299 -"1091","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.661034109428733,0.051953739032677,0.00131067694715308,0.05,0.05,0.05,0.143273359446166,0.00746591768148673,0.000965452622732951,299,299,299 -"1092","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.677766188297563,0.0500107152094703,0.00136286457295964,0.05,0.05,0.05,0.0442643528902771,0.000185589791293374,0.000322790072283088,299,299,299 -"1093","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.680228686551908,0.0500000000118474,0.00135564782204329,0.05,0.05,0.05,0.0260317923637547,1.40320090168179e-10,0.000190041408458065,299,299,299 -"1094","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.681374427368473,0.0500000000003099,0.00135334951494511,0.05,0.05,0.05,0.0128991835128633,1.00907554152635e-12,9.41499541220862e-05,299,299,299 -"1095","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.681731199274704,0.0500000000001251,0.00135319621405087,0.05,0.05,0.05,0.00643133843132689,1.04042199865913e-13,4.69285814418112e-05,299,299,299 -"1096","OGC_AmsterdamUMC_biexp_segmented","Vein",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770524695,0.000532739646128184,0.05,0.05,0.05,0.0603329212170224,0.0338595995383155,0.000876166916139467,299,299,299 -"1097","OGC_AmsterdamUMC_biexp_segmented","Vein",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163886,0.000532747467797313,0.05,0.05,0.05,0.0201116860529649,0.00814087200746512,0.000876181456030473,299,299,299 -"1098","OGC_AmsterdamUMC_biexp_segmented","Vein",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114482,0.000549427490684811,0.05,0.05,0.05,0.0125526161570658,0.00468981671679721,0.000912813853531625,299,299,299 -"1099","OGC_AmsterdamUMC_biexp_segmented","Vein",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060782067,0.000549477159445701,0.05,0.05,0.05,0.00627640558821837,0.00226259175037519,0.000912855515978945,299,299,299 -"1100","OGC_AmsterdamUMC_biexp_segmented","Vein",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864984,0.000549569685652002,0.05,0.05,0.05,0.00313858362490246,0.00111235352002846,0.000913010145476883,299,299,299 -"1101","PV_MUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.05,0.05,0.05,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 -"1102","PV_MUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.05,0.05,0.05,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 -"1103","PV_MUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.05,0.05,0.05,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 -"1104","PV_MUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.05,0.05,0.05,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 -"1105","PV_MUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.05,0.05,0.05,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 -"1106","PV_MUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.691470348442192,0.0320827827770493,0.00124871997099421,0.05,0.05,0.05,0.105711327862916,0.0160018733645475,0.000901831520780432,299,299,299 -"1107","PV_MUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.688093183614171,0.0294562213763849,0.00132700814797154,0.05,0.05,0.05,0.0452600702218041,0.00371662172542782,0.00039381399431472,299,299,299 -"1108","PV_MUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.688966038440429,0.029199601596073,0.00131674145667986,0.05,0.05,0.05,0.0271841976242685,0.0021834868114162,0.000231514013534254,299,299,299 -"1109","PV_MUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689413085208427,0.0290804523150075,0.00131311782214893,0.05,0.05,0.05,0.0135989073526535,0.00108324352490203,0.000114727925771987,299,299,299 -"1110","PV_MUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689573180926678,0.0290430944880149,0.00131259557708985,0.05,0.05,0.05,0.00680047675905179,0.000540559071221946,5.72226175968247e-05,299,299,299 -"1111","PV_MUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.05,0.05,0.05,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 -"1112","PV_MUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.05,0.05,0.05,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 -"1113","PV_MUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.05,0.05,0.05,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 -"1114","PV_MUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.05,0.05,0.05,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 -"1115","PV_MUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.05,0.05,0.05,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 -"1116","PV_MUMC_biexp","Blood RV",10,1,0.1,0.003,0.911157661205427,0.123643660013595,0.000607355415641274,0.05,0.05,0.05,0.0263704296062989,0.0234808191539726,0.000781512767273926,299,299,299 -"1117","PV_MUMC_biexp","Blood RV",30,1,0.1,0.003,0.971237368284705,0.106940870680865,0.000607372598717673,0.05,0.05,0.05,0.00908754537244282,0.00648210009371694,0.000781528535341981,299,299,299 -"1118","PV_MUMC_biexp","Blood RV",50,1,0.1,0.003,0.982984250166763,0.104032609128906,0.000607380534286713,0.05,0.05,0.05,0.00546001928424493,0.00376732124561751,0.000781521963607196,299,299,299 -"1119","PV_MUMC_biexp","Blood RV",100,1,0.1,0.003,0.991733932625732,0.101934073427047,0.000607404386458529,0.05,0.05,0.05,0.00268925596027005,0.00184607816688224,0.000781542209010902,299,299,299 -"1120","PV_MUMC_biexp","Blood RV",200,1,0.1,0.003,0.996022656879395,0.100931454917885,0.000607227933379224,0.05,0.05,0.05,0.00133610299058227,0.00091514738792123,0.000780813589540255,299,299,299 -"1121","PV_MUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.691470348438474,0.0320827827803892,0.00124871997066846,0.05,0.05,0.05,0.105711327913523,0.0160018733571079,0.000901831520760143,299,299,299 -"1122","PV_MUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.688093183608034,0.029456221376894,0.0013270081480873,0.05,0.05,0.05,0.0452600702369857,0.00371662172759421,0.000393813994419125,299,299,299 -"1123","PV_MUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.688966038440901,0.0291996015957491,0.00131674145666527,0.05,0.05,0.05,0.0271841976084912,0.00218348680950215,0.000231514013492556,299,299,299 -"1124","PV_MUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689413085205758,0.0290804523152126,0.00131311782216352,0.05,0.05,0.05,0.0135989073563255,0.00108324352514479,0.00011472792578306,299,299,299 -"1125","PV_MUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689573180931052,0.0290430944877037,0.00131259557707978,0.05,0.05,0.05,0.00680047675835751,0.000540559071153575,5.72226175969141e-05,299,299,299 -"1126","PV_MUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.05,0.05,0.05,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 -"1127","PV_MUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.05,0.05,0.05,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 -"1128","PV_MUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.05,0.05,0.05,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 -"1129","PV_MUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.05,0.05,0.05,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 -"1130","PV_MUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.05,0.05,0.05,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 -"1131","PV_MUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.05,0.05,0.05,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 -"1132","PV_MUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.05,0.05,0.05,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 -"1133","PV_MUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.05,0.05,0.05,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 -"1134","PV_MUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.05,0.05,0.05,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 -"1135","PV_MUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.05,0.05,0.05,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 -"1136","PV_MUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.05,0.05,0.05,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 -"1137","PV_MUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.05,0.05,0.05,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 -"1138","PV_MUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.05,0.05,0.05,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 -"1139","PV_MUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.05,0.05,0.05,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 -"1140","PV_MUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.05,0.05,0.05,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 -"1141","PV_MUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.05,0.05,0.05,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 -"1142","PV_MUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.05,0.05,0.05,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 -"1143","PV_MUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.05,0.05,0.05,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 -"1144","PV_MUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.05,0.05,0.05,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 -"1145","PV_MUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.05,0.05,0.05,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 -"1146","PV_MUMC_biexp","Liver",10,0.11,0.1,0.0015,0.156096041950495,0.103004334953046,0.00143196282270513,0.05,0.05,0.05,0.110349251520112,0.0779961628143732,0.000358196217736956,299,299,299 -"1147","PV_MUMC_biexp","Liver",30,0.11,0.1,0.0015,0.116101779636099,0.1138229593791,0.00149777113036028,0.05,0.05,0.05,0.034776317507387,0.0600988513603365,0.000144925790948956,299,299,299 -"1148","PV_MUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111612534570894,0.109841008435211,0.00150002526959645,0.05,0.05,0.05,0.0190068115405264,0.0441056576363389,9.05346431726557e-05,299,299,299 -"1149","PV_MUMC_biexp","Liver",100,0.11,0.1,0.0015,0.11025104441505,0.103810736875319,0.00149980894457395,0.05,0.05,0.05,0.00905977798222036,0.0236768256802226,4.54189359484425e-05,299,299,299 -"1150","PV_MUMC_biexp","Liver",200,0.11,0.1,0.0015,0.110022352713976,0.101269696328069,0.0014998347111719,0.05,0.05,0.05,0.0044943742719744,0.0114224658712206,2.26988794968306e-05,299,299,299 -"1151","PV_MUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.05,0.05,0.05,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 -"1152","PV_MUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.05,0.05,0.05,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 -"1153","PV_MUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.05,0.05,0.05,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 -"1154","PV_MUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.05,0.05,0.05,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 -"1155","PV_MUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.05,0.05,0.05,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 -"1156","PV_MUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.128345687194747,0.0825316505228132,0.00140833862248053,0.05,0.05,0.05,0.114737913407162,0.0798040133006487,0.000322847727404802,299,299,299 -"1157","PV_MUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0808769411594791,0.093179188822108,0.00149089305452715,0.05,0.05,0.05,0.0404412487711946,0.0680662255269266,0.000129511673752725,299,299,299 -"1158","PV_MUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0738186548068268,0.0870087926746789,0.00149857823558983,0.05,0.05,0.05,0.023244544317497,0.0544978802925074,8.40169485215999e-05,299,299,299 -"1159","PV_MUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0707073237714697,0.0759757339514294,0.0014998056841726,0.05,0.05,0.05,0.0105581939281603,0.0292975136083979,4.34633510601474e-05,299,299,299 -"1160","PV_MUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070115739623736,0.0717332279515257,0.00149983895466135,0.05,0.05,0.05,0.00507917209030401,0.0131396922117831,2.17222451683666e-05,299,299,299 -"1161","PV_MUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.05,0.05,0.05,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 -"1162","PV_MUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.05,0.05,0.05,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 -"1163","PV_MUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.05,0.05,0.05,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 -"1164","PV_MUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.05,0.05,0.05,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 -"1165","PV_MUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.05,0.05,0.05,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 -"1166","PV_MUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.170823203204389,0.0484396671293969,0.00128341130108195,0.05,0.05,0.05,0.135276785103213,0.0693648067906324,0.000342833111852961,299,299,299 -"1167","PV_MUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.139357428753803,0.0211791605193582,0.00132956207649237,0.05,0.05,0.05,0.0600015004474031,0.0343714821910045,0.000136158605057219,299,299,299 -"1168","PV_MUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.136832912331991,0.0133451533082555,0.00132993178960967,0.05,0.05,0.05,0.0378707541645237,0.0118353435907057,8.31807200994293e-05,299,299,299 -"1169","PV_MUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.13591079011917,0.011464130733693,0.00132978574256788,0.05,0.05,0.05,0.019496680742444,0.00219037196718289,4.15321836208148e-05,299,299,299 -"1170","PV_MUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.135796421465576,0.0111580957885994,0.00132987960122183,0.05,0.05,0.05,0.00982799371378257,0.000979299181915567,2.07569431281731e-05,299,299,299 -"1171","PV_MUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.391019540038776,0.044643914104375,0.00245103379176744,0.05,0.05,0.05,0.345288990615877,0.0685553221727792,0.000589805944574225,299,299,299 -"1172","PV_MUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.279254963167638,0.0272516182326572,0.00286523068505902,0.05,0.05,0.05,0.326984869731808,0.0497742750374417,0.000202391605500055,299,299,299 -"1173","PV_MUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.197907121793284,0.0171779174735046,0.00292567942662698,0.05,0.05,0.05,0.257892241602723,0.0314712950254075,0.000122141208493828,299,299,299 -"1174","PV_MUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.101454392147406,0.0102999034458522,0.0029683983156719,0.05,0.05,0.05,0.0986460636016255,0.00484404848123746,5.80586216740766e-05,299,299,299 -"1175","PV_MUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0764077555060485,0.0099589090676984,0.00298894164686365,0.05,0.05,0.05,0.016170934406564,0.00205930827894513,2.4606310997004e-05,299,299,299 -"1176","PV_MUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.05,0.05,0.05,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 -"1177","PV_MUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.05,0.05,0.05,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 -"1178","PV_MUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.05,0.05,0.05,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 -"1179","PV_MUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.05,0.05,0.05,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 -"1180","PV_MUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.05,0.05,0.05,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 -"1181","PV_MUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.05,0.05,0.05,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 -"1182","PV_MUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.05,0.05,0.05,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 -"1183","PV_MUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.05,0.05,0.05,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 -"1184","PV_MUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.05,0.05,0.05,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 -"1185","PV_MUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.05,0.05,0.05,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 -"1186","PV_MUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.691470348425927,0.0320827827806415,0.00124871997099421,0.05,0.05,0.05,0.105711327887533,0.016001873378134,0.000901831520780432,299,299,299 -"1187","PV_MUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.688093183610048,0.0294562213769231,0.00132700814797154,0.05,0.05,0.05,0.0452600702287884,0.0037166217265589,0.00039381399431472,299,299,299 -"1188","PV_MUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.688966038442785,0.0291996015955794,0.00131674145667986,0.05,0.05,0.05,0.027184197603594,0.00218348680956759,0.000231514013534254,299,299,299 -"1189","PV_MUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.689413085207519,0.0290804523150365,0.00131311782214893,0.05,0.05,0.05,0.0135989073510044,0.00108324352463396,0.000114727925771987,299,299,299 -"1190","PV_MUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.68957318092911,0.0290430944878304,0.00131259557708985,0.05,0.05,0.05,0.0068004767604521,0.000540559071379342,5.72226175968247e-05,299,299,299 -"1191","PV_MUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.225876447681667,0.0575696359776324,0.00127966060384555,0.05,0.05,0.05,0.118602073944037,0.062520158480083,0.000393628482668222,299,299,299 -"1192","PV_MUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.203121072306131,0.0348456914497528,0.00130102510958467,0.05,0.05,0.05,0.0446268922956713,0.0210587094438441,0.000147164603791659,299,299,299 -"1193","PV_MUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201082893667275,0.0314005146720823,0.00130009513988208,0.05,0.05,0.05,0.0267655318154766,0.0084356309709076,8.81308491758965e-05,299,299,299 -"1194","PV_MUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200152032734671,0.0303879420503012,0.00129992844970833,0.05,0.05,0.05,0.0133442316652335,0.00389581230793204,4.39969606570532e-05,299,299,299 -"1195","PV_MUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.199941650919663,0.0301350345500522,0.00130002908549186,0.05,0.05,0.05,0.00666620755141141,0.00192377586272549,2.19877190353903e-05,299,299,299 -"1196","PV_MUMC_biexp","st wall",10,0.3,0.012,0.0015,0.298023904016928,0.0321774338838152,0.00153452580530155,0.05,0.05,0.05,0.161634014328888,0.0492747590086314,0.000533257004546953,299,299,299 -"1197","PV_MUMC_biexp","st wall",30,0.3,0.012,0.0015,0.282564165732307,0.0143589906421383,0.0015521476980438,0.05,0.05,0.05,0.0672954043174911,0.00604975921241117,0.000195511671547606,299,299,299 -"1198","PV_MUMC_biexp","st wall",50,0.3,0.012,0.0015,0.282485950207945,0.0132910251735412,0.00154952110824206,0.05,0.05,0.05,0.0414670585791545,0.00269394728308602,0.000116680545563146,299,299,299 -"1199","PV_MUMC_biexp","st wall",100,0.3,0.012,0.0015,0.282721607034729,0.0128953989042575,0.00154867348929894,0.05,0.05,0.05,0.0210071304061686,0.00120056802082814,5.81997124889235e-05,299,299,299 -"1200","PV_MUMC_biexp","st wall",200,0.3,0.012,0.0015,0.282901507396517,0.0127926313384841,0.00154860370649833,0.05,0.05,0.05,0.0105397038722219,0.000580337571786342,2.9079611017769e-05,299,299,299 -"1201","PV_MUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69147034850835,0.0320827827705391,0.00124871997062398,0.05,0.05,0.05,0.105711327778677,0.0160018733594873,0.000901831520052427,299,299,299 -"1202","PV_MUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688093183592201,0.0294562213780215,0.0013270081480987,0.05,0.05,0.05,0.0452600702314974,0.0037166217263804,0.00039381399452838,299,299,299 -"1203","PV_MUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688966038447113,0.0291996015955392,0.00131674145662316,0.05,0.05,0.05,0.0271841976254947,0.00218348681124656,0.000231514013569066,299,299,299 -"1204","PV_MUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689413085205192,0.0290804523152176,0.00131311782217142,0.05,0.05,0.05,0.0135989073535134,0.00108324352525754,0.000114727925798872,299,299,299 -"1205","PV_MUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689573180928788,0.0290430944879027,0.00131259557706545,0.05,0.05,0.05,0.00680047676072954,0.000540559071296888,5.72226175924109e-05,299,299,299 -"1206","PV_MUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.911157661201933,0.123643660019881,0.000607355415641274,0.05,0.05,0.05,0.0263704296071724,0.0234808191547324,0.000781512767273926,299,299,299 -"1207","PV_MUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.971237368284223,0.106940870680377,0.000607372598717673,0.05,0.05,0.05,0.00908754536827744,0.00648210009257791,0.000781528535341981,299,299,299 -"1208","PV_MUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.982984250165467,0.104032609129434,0.000607380534286713,0.05,0.05,0.05,0.00546001928016874,0.00376732124549515,0.000781521963607196,299,299,299 -"1209","PV_MUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.991733932627642,0.101934073426748,0.000607404386458529,0.05,0.05,0.05,0.00268925596046031,0.00184607816687764,0.000781542209010902,299,299,299 -"1210","PV_MUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996022656879185,0.100931454917881,0.000607227933379224,0.05,0.05,0.05,0.00133610299004237,0.00091514738790242,0.000780813589540255,299,299,299 -"1211","PvH_KB_NKI_IVIMfit","Artery",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1212","PvH_KB_NKI_IVIMfit","Artery",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1213","PvH_KB_NKI_IVIMfit","Artery",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1214","PvH_KB_NKI_IVIMfit","Artery",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1215","PvH_KB_NKI_IVIMfit","Artery",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 -"1216","PvH_KB_NKI_IVIMfit","asc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.05,0.05,0.05,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 -"1217","PvH_KB_NKI_IVIMfit","asc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 -"1218","PvH_KB_NKI_IVIMfit","asc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 -"1219","PvH_KB_NKI_IVIMfit","asc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1220","PvH_KB_NKI_IVIMfit","asc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 -"1221","PvH_KB_NKI_IVIMfit","Blood RA",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1222","PvH_KB_NKI_IVIMfit","Blood RA",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1223","PvH_KB_NKI_IVIMfit","Blood RA",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1224","PvH_KB_NKI_IVIMfit","Blood RA",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1225","PvH_KB_NKI_IVIMfit","Blood RA",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 -"1226","PvH_KB_NKI_IVIMfit","Blood RV",10,1,0.1,0.003,0.925854765740672,0.122594446175349,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1227","PvH_KB_NKI_IVIMfit","Blood RV",30,1,0.1,0.003,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1228","PvH_KB_NKI_IVIMfit","Blood RV",50,1,0.1,0.003,0.985264177302766,0.103511662747401,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1229","PvH_KB_NKI_IVIMfit","Blood RV",100,1,0.1,0.003,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1230","PvH_KB_NKI_IVIMfit","Blood RV",200,1,0.1,0.003,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 -"1231","PvH_KB_NKI_IVIMfit","desc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494931,0.00145020569396961,0.05,0.05,0.05,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 -"1232","PvH_KB_NKI_IVIMfit","desc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.0659651209936009,0.0695342477735909,0.000430833853766582,299,299,299 -"1233","PvH_KB_NKI_IVIMfit","desc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 -"1234","PvH_KB_NKI_IVIMfit","desc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.030464931163596,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1235","PvH_KB_NKI_IVIMfit","desc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620521,5.2174106371215e-05,299,299,299 -"1236","PvH_KB_NKI_IVIMfit","esophagus",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.05,0.05,0.05,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 -"1237","PvH_KB_NKI_IVIMfit","esophagus",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.05,0.05,0.05,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 -"1238","PvH_KB_NKI_IVIMfit","esophagus",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.05,0.05,0.05,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 -"1239","PvH_KB_NKI_IVIMfit","esophagus",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.05,0.05,0.05,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 -"1240","PvH_KB_NKI_IVIMfit","esophagus",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.05,0.05,0.05,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 -"1241","PvH_KB_NKI_IVIMfit","esophagus cont",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.05,0.05,0.05,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 -"1242","PvH_KB_NKI_IVIMfit","esophagus cont",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.05,0.05,0.05,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 -"1243","PvH_KB_NKI_IVIMfit","esophagus cont",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.05,0.05,0.05,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 -"1244","PvH_KB_NKI_IVIMfit","esophagus cont",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.05,0.05,0.05,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 -"1245","PvH_KB_NKI_IVIMfit","esophagus cont",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.05,0.05,0.05,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 -"1246","PvH_KB_NKI_IVIMfit","Left kidney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.05,0.05,0.05,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 -"1247","PvH_KB_NKI_IVIMfit","Left kidney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.05,0.05,0.05,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 -"1248","PvH_KB_NKI_IVIMfit","Left kidney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.05,0.05,0.05,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 -"1249","PvH_KB_NKI_IVIMfit","Left kidney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.05,0.05,0.05,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 -"1250","PvH_KB_NKI_IVIMfit","Left kidney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.05,0.05,0.05,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 -"1251","PvH_KB_NKI_IVIMfit","left kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.05,0.05,0.05,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 -"1252","PvH_KB_NKI_IVIMfit","left kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.05,0.05,0.05,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 -"1253","PvH_KB_NKI_IVIMfit","left kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.05,0.05,0.05,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 -"1254","PvH_KB_NKI_IVIMfit","left kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.05,0.05,0.05,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 -"1255","PvH_KB_NKI_IVIMfit","left kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.05,0.05,0.05,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 -"1256","PvH_KB_NKI_IVIMfit","Liver",10,0.11,0.1,0.0015,0.130553125135909,0.0509693625828437,0.0016065178196472,0.05,0.05,0.05,0.129706715815292,0.792719308738518,0.000572920768415419,299,299,299 -"1257","PvH_KB_NKI_IVIMfit","Liver",30,0.11,0.1,0.0015,0.110278145674883,0.149442129088004,0.00150011017405457,0.05,0.05,0.05,0.0601392900256081,0.625749782983355,0.000145272381840614,299,299,299 -"1258","PvH_KB_NKI_IVIMfit","Liver",50,0.11,0.1,0.0015,0.110399658585875,0.156527047310139,0.00149684450774862,0.05,0.05,0.05,0.0376036872310902,0.425066413433666,8.60313303494503e-05,299,299,299 -"1259","PvH_KB_NKI_IVIMfit","Liver",100,0.11,0.1,0.0015,0.110613242728435,0.113081530764667,0.00149725968516574,0.05,0.05,0.05,0.0187819737007067,0.139029982910973,4.28771429001848e-05,299,299,299 -"1260","PvH_KB_NKI_IVIMfit","Liver",200,0.11,0.1,0.0015,0.110409079705549,0.104936964791345,0.00149834160010346,0.05,0.05,0.05,0.00940444951440735,0.0672001936578303,2.14439959817085e-05,299,299,299 -"1261","PvH_KB_NKI_IVIMfit","Myocardium LV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.05,0.05,0.05,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 -"1262","PvH_KB_NKI_IVIMfit","Myocardium LV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.05,0.05,0.05,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 -"1263","PvH_KB_NKI_IVIMfit","Myocardium LV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.05,0.05,0.05,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 -"1264","PvH_KB_NKI_IVIMfit","Myocardium LV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.05,0.05,0.05,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 -"1265","PvH_KB_NKI_IVIMfit","Myocardium LV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.05,0.05,0.05,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 -"1266","PvH_KB_NKI_IVIMfit","myocardium ra",10,0.07,0.07,0.0015,0.104891587924175,0.00607975763165955,0.0016006526233169,0.05,0.05,0.05,0.118242882720712,0.784263691811179,0.000552215395037113,299,299,299 -"1267","PvH_KB_NKI_IVIMfit","myocardium ra",30,0.07,0.07,0.0015,0.0739083859817402,0.0645768275334392,0.0014995372849829,0.05,0.05,0.05,0.0552732082517841,0.772165078977779,0.000138751825608962,299,299,299 -"1268","PvH_KB_NKI_IVIMfit","myocardium ra",50,0.07,0.07,0.0015,0.0708663136362167,0.123754667071953,0.00149678850563412,0.05,0.05,0.05,0.0370810778303522,0.731555137917985,8.22913661782403e-05,299,299,299 -"1269","PvH_KB_NKI_IVIMfit","myocardium ra",100,0.07,0.07,0.0015,0.0706249468151481,0.0952858250331106,0.00149733160718627,0.05,0.05,0.05,0.0189664010793653,0.232113078306709,4.10318998599181e-05,299,299,299 -"1270","PvH_KB_NKI_IVIMfit","myocardium ra",200,0.07,0.07,0.0015,0.0704117897329917,0.0782860101683691,0.00149840262255921,0.05,0.05,0.05,0.00949705354554412,0.104550226230099,2.052244821904e-05,299,299,299 -"1271","PvH_KB_NKI_IVIMfit","myocardium RV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.05,0.05,0.05,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 -"1272","PvH_KB_NKI_IVIMfit","myocardium RV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.05,0.05,0.05,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 -"1273","PvH_KB_NKI_IVIMfit","myocardium RV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.05,0.05,0.05,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 -"1274","PvH_KB_NKI_IVIMfit","myocardium RV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.05,0.05,0.05,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 -"1275","PvH_KB_NKI_IVIMfit","myocardium RV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.05,0.05,0.05,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 -"1276","PvH_KB_NKI_IVIMfit","pancreas",10,0.15,0.01,0.00129999999999999,0.136937978548182,0.00740651793198569,0.0014215214212872,0.05,0.05,0.05,0.127266105496299,0.732213635772408,0.000486503747187268,299,299,299 -"1277","PvH_KB_NKI_IVIMfit","pancreas",30,0.15,0.01,0.00129999999999999,0.121887930651615,0.0763137640180288,0.00133959929142515,0.05,0.05,0.05,0.0568364469705239,0.636807478517948,0.000126780491704173,299,299,299 -"1278","PvH_KB_NKI_IVIMfit","pancreas",50,0.15,0.01,0.00129999999999999,0.122753935187266,0.0341776204631551,0.00133777754178323,0.05,0.05,0.05,0.0342667143936854,0.25609885196659,7.54325143220183e-05,299,299,299 -"1279","PvH_KB_NKI_IVIMfit","pancreas",100,0.15,0.01,0.00129999999999999,0.122866903165779,0.0198817713875208,0.00133844951393785,0.05,0.05,0.05,0.0171420721199015,0.115209943762463,3.76500896537364e-05,299,299,299 -"1280","PvH_KB_NKI_IVIMfit","pancreas",200,0.15,0.01,0.00129999999999999,0.122698908969178,0.0153586053551514,0.00133941675752602,0.05,0.05,0.05,0.00858477069866618,0.0566470440677396,1.8833704996794e-05,299,299,299 -"1281","PvH_KB_NKI_IVIMfit","pericardium",10,0.07,0.00999999999999999,0.003,0.200345432832572,0.0186626001573525,0.00287291963623568,0.05,0.05,0.05,0.191226965934387,0.511499382712566,0.000944685697624608,299,299,299 -"1282","PvH_KB_NKI_IVIMfit","pericardium",30,0.07,0.00999999999999999,0.003,0.0875410442211974,0.0439264206482478,0.00319637616853394,0.05,0.05,0.05,0.0985206186954527,0.520788624543118,0.000739212332980352,299,299,299 -"1283","PvH_KB_NKI_IVIMfit","pericardium",50,0.07,0.00999999999999999,0.003,0.0713588507505067,0.0343763501514692,0.0030838364312501,0.05,0.05,0.05,0.0723755425130893,0.468187571504604,0.000430508407815945,299,299,299 -"1284","PvH_KB_NKI_IVIMfit","pericardium",100,0.07,0.00999999999999999,0.003,0.0593432428582622,0.0319897344925359,0.00302450453014257,0.05,0.05,0.05,0.0457502568825803,0.346527742871074,0.000170492747418252,299,299,299 -"1285","PvH_KB_NKI_IVIMfit","pericardium",200,0.07,0.00999999999999999,0.003,0.0541407860947715,0.0270422083825517,0.00301893623987703,0.05,0.05,0.05,0.0277552901447244,0.292432776404661,8.24583932743335e-05,299,299,299 -"1286","PvH_KB_NKI_IVIMfit","right kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.05,0.05,0.05,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 -"1287","PvH_KB_NKI_IVIMfit","right kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.05,0.05,0.05,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 -"1288","PvH_KB_NKI_IVIMfit","right kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.05,0.05,0.05,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 -"1289","PvH_KB_NKI_IVIMfit","right kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.05,0.05,0.05,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 -"1290","PvH_KB_NKI_IVIMfit","right kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.05,0.05,0.05,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 -"1291","PvH_KB_NKI_IVIMfit","Right kydney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.05,0.05,0.05,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 -"1292","PvH_KB_NKI_IVIMfit","Right kydney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.05,0.05,0.05,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 -"1293","PvH_KB_NKI_IVIMfit","Right kydney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.05,0.05,0.05,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 -"1294","PvH_KB_NKI_IVIMfit","Right kydney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.05,0.05,0.05,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 -"1295","PvH_KB_NKI_IVIMfit","Right kydney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.05,0.05,0.05,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 -"1296","PvH_KB_NKI_IVIMfit","small intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.05,0.05,0.05,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 -"1297","PvH_KB_NKI_IVIMfit","small intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 -"1298","PvH_KB_NKI_IVIMfit","small intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 -"1299","PvH_KB_NKI_IVIMfit","small intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1300","PvH_KB_NKI_IVIMfit","small intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 -"1301","PvH_KB_NKI_IVIMfit","spleen",10,0.2,0.03,0.00129999999999999,0.19599662156176,0.0613021299109845,0.00140454927731428,0.05,0.05,0.05,0.142733288723022,0.865447287904048,0.000582749143091828,299,299,299 -"1302","PvH_KB_NKI_IVIMfit","spleen",30,0.2,0.03,0.00129999999999999,0.197871845000451,0.0577937712781124,0.00130150037459746,0.05,0.05,0.05,0.055408133031037,0.277217446552304,0.00013547179107877,299,299,299 -"1303","PvH_KB_NKI_IVIMfit","spleen",50,0.2,0.03,0.00129999999999999,0.199033284978018,0.0416870355859719,0.00129916879604953,0.05,0.05,0.05,0.0330237742731732,0.145965289641754,8.0485438606961e-05,299,299,299 -"1304","PvH_KB_NKI_IVIMfit","spleen",100,0.2,0.03,0.00129999999999999,0.19917657455647,0.0350155098095822,0.00129971733953303,0.05,0.05,0.05,0.0165151433454204,0.0707993903611688,4.01541066264376e-05,299,299,299 -"1305","PvH_KB_NKI_IVIMfit","spleen",200,0.2,0.03,0.00129999999999999,0.199026311814169,0.0324096874623236,0.00130069837749038,0.05,0.05,0.05,0.00827092761229601,0.0352168114201335,2.00852625417637e-05,299,299,299 -"1306","PvH_KB_NKI_IVIMfit","st wall",10,0.3,0.012,0.0015,0.248638297229233,0.036411695424523,0.00172921114226417,0.05,0.05,0.05,0.166347389770017,0.707332243192263,0.000685672723936133,299,299,299 -"1307","PvH_KB_NKI_IVIMfit","st wall",30,0.3,0.012,0.0015,0.258772026363496,0.0293822581865603,0.00157517600100472,0.05,0.05,0.05,0.0644388435309329,0.202407559113073,0.000186844089466446,299,299,299 -"1308","PvH_KB_NKI_IVIMfit","st wall",50,0.3,0.012,0.0015,0.261282486348394,0.0209857397911496,0.00156758941794651,0.05,0.05,0.05,0.0377177202881088,0.108793385587951,0.000109279996332855,299,299,299 -"1309","PvH_KB_NKI_IVIMfit","st wall",100,0.3,0.012,0.0015,0.261756786309685,0.0167953481082953,0.00156685824436581,0.05,0.05,0.05,0.0187674242305055,0.0531745626261237,5.42621275679737e-05,299,299,299 -"1310","PvH_KB_NKI_IVIMfit","st wall",200,0.3,0.012,0.0015,0.261595673443184,0.0150031541093374,0.00156794185426091,0.05,0.05,0.05,0.00939312930329243,0.0264999219499804,2.71220994549821e-05,299,299,299 -"1311","PvH_KB_NKI_IVIMfit","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.680218362444095,0.0500663182494929,0.00145020569396961,0.05,0.05,0.05,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 -"1312","PvH_KB_NKI_IVIMfit","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.676680511546324,0.03411776348862,0.00139504564681615,0.05,0.05,0.05,0.0659651209936008,0.0695342477735909,0.000430833853766582,299,299,299 -"1313","PvH_KB_NKI_IVIMfit","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.683651184865244,0.0318790831019141,0.00134158593671561,0.05,0.05,0.05,0.031483838344407,0.0409943521607107,0.000218127540832124,299,299,299 -"1314","PvH_KB_NKI_IVIMfit","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.685021723698742,0.030464931163596,0.00132963191638665,0.05,0.05,0.05,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1315","PvH_KB_NKI_IVIMfit","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.685125407692503,0.0298136345250442,0.00132919801634713,0.05,0.05,0.05,0.00755023567893948,0.0102124659620522,5.2174106371215e-05,299,299,299 -"1316","PvH_KB_NKI_IVIMfit","Vein",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.05,0.05,0.05,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1317","PvH_KB_NKI_IVIMfit","Vein",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.05,0.05,0.05,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1318","PvH_KB_NKI_IVIMfit","Vein",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.05,0.05,0.05,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1319","PvH_KB_NKI_IVIMfit","Vein",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.05,0.05,0.05,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1320","PvH_KB_NKI_IVIMfit","Vein",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.05,0.05,0.05,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1","ETP_SRI_LinearFitting","Artery",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 +"2","ETP_SRI_LinearFitting","Artery",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 +"3","ETP_SRI_LinearFitting","Artery",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 +"4","ETP_SRI_LinearFitting","Artery",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 +"5","ETP_SRI_LinearFitting","Artery",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"6","ETP_SRI_LinearFitting","asc lower intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 +"7","ETP_SRI_LinearFitting","asc lower intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,1.76780563288555,0.0425455021045266,0.00106933510259241,299,299,299 +"8","ETP_SRI_LinearFitting","asc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094785,0.000565757923733332,299,299,299 +"9","ETP_SRI_LinearFitting","asc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.45,0.45,0.45,0.0657882130636678,0.0129318475024161,0.000272558015550553,299,299,299 +"10","ETP_SRI_LinearFitting","asc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.45,0.45,0.45,0.0318472093243258,0.00994517539003604,0.000135584729312215,299,299,299 +"11","ETP_SRI_LinearFitting","Blood RA",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 +"12","ETP_SRI_LinearFitting","Blood RA",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 +"13","ETP_SRI_LinearFitting","Blood RA",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 +"14","ETP_SRI_LinearFitting","Blood RA",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 +"15","ETP_SRI_LinearFitting","Blood RA",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"16","ETP_SRI_LinearFitting","Blood RV",10,1,0.1,0.003,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 +"17","ETP_SRI_LinearFitting","Blood RV",30,1,0.1,0.003,0.593621105303909,0.0382494989565618,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335538,0.00202899165966831,299,299,299 +"18","ETP_SRI_LinearFitting","Blood RV",50,1,0.1,0.003,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 +"19","ETP_SRI_LinearFitting","Blood RV",100,1,0.1,0.003,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 +"20","ETP_SRI_LinearFitting","Blood RV",200,1,0.1,0.003,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"21","ETP_SRI_LinearFitting","desc lower intestine",10,0.69,0.029,0.00131,-1.78046847362474,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,15.8239651221778,0.0700506422948962,0.00211653751766345,299,299,299 +"22","ETP_SRI_LinearFitting","desc lower intestine",30,0.69,0.029,0.00131,0.475373627248901,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,1.76780563288553,0.0425455021045259,0.00106933510259241,299,299,299 +"23","ETP_SRI_LinearFitting","desc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094785,0.000565757923733331,299,299,299 +"24","ETP_SRI_LinearFitting","desc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.018072945218478,0.00128589506813888,0.45,0.45,0.45,0.0657882130636677,0.012931847502416,0.000272558015550553,299,299,299 +"25","ETP_SRI_LinearFitting","desc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447003,0.001295710009054,0.45,0.45,0.45,0.0318472093243258,0.00994517539003595,0.000135584729312215,299,299,299 +"26","ETP_SRI_LinearFitting","esophagus",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.45,0.45,0.45,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 +"27","ETP_SRI_LinearFitting","esophagus",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.45,0.45,0.45,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 +"28","ETP_SRI_LinearFitting","esophagus",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.45,0.45,0.45,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 +"29","ETP_SRI_LinearFitting","esophagus",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.45,0.45,0.45,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 +"30","ETP_SRI_LinearFitting","esophagus",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.45,0.45,0.45,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 +"31","ETP_SRI_LinearFitting","esophagus cont",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.45,0.45,0.45,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 +"32","ETP_SRI_LinearFitting","esophagus cont",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.45,0.45,0.45,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 +"33","ETP_SRI_LinearFitting","esophagus cont",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.45,0.45,0.45,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 +"34","ETP_SRI_LinearFitting","esophagus cont",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.45,0.45,0.45,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 +"35","ETP_SRI_LinearFitting","esophagus cont",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.45,0.45,0.45,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 +"36","ETP_SRI_LinearFitting","Left kidney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.45,0.45,0.45,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 +"37","ETP_SRI_LinearFitting","Left kidney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.45,0.45,0.45,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 +"38","ETP_SRI_LinearFitting","Left kidney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.45,0.45,0.45,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 +"39","ETP_SRI_LinearFitting","Left kidney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.45,0.45,0.45,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 +"40","ETP_SRI_LinearFitting","Left kidney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.45,0.45,0.45,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 +"41","ETP_SRI_LinearFitting","left kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.45,0.45,0.45,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 +"42","ETP_SRI_LinearFitting","left kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.45,0.45,0.45,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 +"43","ETP_SRI_LinearFitting","left kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.45,0.45,0.45,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 +"44","ETP_SRI_LinearFitting","left kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.45,0.45,0.45,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 +"45","ETP_SRI_LinearFitting","left kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.45,0.45,0.45,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 +"46","ETP_SRI_LinearFitting","Liver",10,0.11,0.1,0.0015,-3.67105854933764,0.0103322924138449,0.00161495986282209,0.45,0.45,0.45,50.5725151160169,0.100845172822066,0.00140857424525187,299,299,299 +"47","ETP_SRI_LinearFitting","Liver",30,0.11,0.1,0.0015,0.0969318407879205,0.0145642929149208,0.00147246699637093,0.45,0.45,0.45,0.269776485804268,0.0971893509566391,0.000377588902171262,299,299,299 +"48","ETP_SRI_LinearFitting","Liver",50,0.11,0.1,0.0015,0.112644420990274,0.0988492551721873,0.0014787002760584,0.45,0.45,0.45,0.150827871968332,0.380693459960368,0.000223664227770201,299,299,299 +"49","ETP_SRI_LinearFitting","Liver",100,0.11,0.1,0.0015,0.114915102854363,0.0889095920483081,0.00148764168516119,0.45,0.45,0.45,0.0738473058377525,0.328370788509957,0.000111502995637712,299,299,299 +"50","ETP_SRI_LinearFitting","Liver",200,0.11,0.1,0.0015,0.113341186733021,0.0725340532416588,0.00149339727236951,0.45,0.45,0.45,0.0368404978098108,0.138234643262059,5.57744401860227e-05,299,299,299 +"51","ETP_SRI_LinearFitting","Myocardium LV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.45,0.45,0.45,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 +"52","ETP_SRI_LinearFitting","Myocardium LV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.45,0.45,0.45,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 +"53","ETP_SRI_LinearFitting","Myocardium LV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.45,0.45,0.45,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 +"54","ETP_SRI_LinearFitting","Myocardium LV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.45,0.45,0.45,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 +"55","ETP_SRI_LinearFitting","Myocardium LV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.45,0.45,0.45,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 +"56","ETP_SRI_LinearFitting","myocardium ra",10,0.07,0.07,0.0015,-1.65951665423363,0.0177238771115808,0.00160957265059348,0.45,0.45,0.45,13.1554017697515,0.183131672721427,0.00136088593186554,299,299,299 +"57","ETP_SRI_LinearFitting","myocardium ra",30,0.07,0.07,0.0015,0.0589564569081104,0.0296093937203642,0.00147279822346654,0.45,0.45,0.45,0.266937871380083,0.242638673913433,0.000360646166742376,299,299,299 +"58","ETP_SRI_LinearFitting","myocardium ra",50,0.07,0.07,0.0015,0.0732759014900858,0.0328371698735262,0.00147933187029512,0.45,0.45,0.45,0.1504150174967,0.216423076996624,0.000213945675661325,299,299,299 +"59","ETP_SRI_LinearFitting","myocardium ra",100,0.07,0.07,0.0015,0.075067261558205,0.0677774461043471,0.00148810347075861,0.45,0.45,0.45,0.0738177865239001,0.269492649198698,0.000106705818256413,299,299,299 +"60","ETP_SRI_LinearFitting","myocardium ra",200,0.07,0.07,0.0015,0.0733792311780607,0.0623676153801111,0.00149366381082312,0.45,0.45,0.45,0.0368411946796926,0.237445081999106,5.33779360572001e-05,299,299,299 +"61","ETP_SRI_LinearFitting","myocardium RV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.45,0.45,0.45,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 +"62","ETP_SRI_LinearFitting","myocardium RV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.45,0.45,0.45,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 +"63","ETP_SRI_LinearFitting","myocardium RV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.45,0.45,0.45,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 +"64","ETP_SRI_LinearFitting","myocardium RV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.45,0.45,0.45,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 +"65","ETP_SRI_LinearFitting","myocardium RV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.45,0.45,0.45,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 +"66","ETP_SRI_LinearFitting","pancreas",10,0.15,0.01,0.00129999999999999,-0.650527215028878,0.00373368564161748,0.00138866565214997,0.45,0.45,0.45,4.93667394171624,0.00722474221217601,0.00119248691671331,299,299,299 +"67","ETP_SRI_LinearFitting","pancreas",30,0.15,0.01,0.00129999999999999,0.141181390443557,0.0571022180430843,0.00127631910355573,0.45,0.45,0.45,0.223328699407368,0.30235917617171,0.000329779178430446,299,299,299 +"68","ETP_SRI_LinearFitting","pancreas",50,0.15,0.01,0.00129999999999999,0.1510036083282,0.0152944083015561,0.00128385681159516,0.45,0.45,0.45,0.127982122939212,0.126325868230149,0.000196269231755713,299,299,299 +"69","ETP_SRI_LinearFitting","pancreas",100,0.15,0.01,0.00129999999999999,0.151847983395745,0.0131626451974964,0.00129232113375324,0.45,0.45,0.45,0.0631293755739931,0.0377927362687652,9.79894642257458e-05,299,299,299 +"70","ETP_SRI_LinearFitting","pancreas",200,0.15,0.01,0.00129999999999999,0.150332194355078,0.0109445926132955,0.00129741584499017,0.45,0.45,0.45,0.0315327839698718,0.00587272237819955,4.90247818549865e-05,299,299,299 +"71","ETP_SRI_LinearFitting","pericardium",10,0.07,0.00999999999999999,0.003,-1.71069455396435,0.00413806480279475,0.00222002363044559,0.45,0.45,0.45,11.3461458015308,0.00796330900457343,0.00214350424805972,299,299,299 +"72","ETP_SRI_LinearFitting","pericardium",30,0.07,0.00999999999999999,0.003,-2.91527744837181,0.00507173294709184,0.00321986504376209,0.45,0.45,0.45,18.8162955606326,0.0031589206110522,0.00176542899681745,299,299,299 +"73","ETP_SRI_LinearFitting","pericardium",50,0.07,0.00999999999999999,0.003,-0.725107480466489,0.0146143161821091,0.00308436166182826,0.45,0.45,0.45,5.02892397652847,0.139670661799305,0.0011228429935268,299,299,299 +"74","ETP_SRI_LinearFitting","pericardium",100,0.07,0.00999999999999999,0.003,0.0395072922651046,0.00739762781595787,0.00298132773142143,0.45,0.45,0.45,0.337660314112399,0.026548244280092,0.000442399989892903,299,299,299 +"75","ETP_SRI_LinearFitting","pericardium",200,0.07,0.00999999999999999,0.003,0.0717940918714239,0.0314985196375023,0.00298144117966044,0.45,0.45,0.45,0.139726244311711,0.210455939290863,0.000213771886702303,299,299,299 +"76","ETP_SRI_LinearFitting","right kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.45,0.45,0.45,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 +"77","ETP_SRI_LinearFitting","right kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.45,0.45,0.45,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 +"78","ETP_SRI_LinearFitting","right kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.45,0.45,0.45,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 +"79","ETP_SRI_LinearFitting","right kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.45,0.45,0.45,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 +"80","ETP_SRI_LinearFitting","right kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.45,0.45,0.45,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 +"81","ETP_SRI_LinearFitting","Right kydney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.45,0.45,0.45,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 +"82","ETP_SRI_LinearFitting","Right kydney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.45,0.45,0.45,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 +"83","ETP_SRI_LinearFitting","Right kydney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.45,0.45,0.45,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 +"84","ETP_SRI_LinearFitting","Right kydney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.45,0.45,0.45,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 +"85","ETP_SRI_LinearFitting","Right kydney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.45,0.45,0.45,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 +"86","ETP_SRI_LinearFitting","small intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 +"87","ETP_SRI_LinearFitting","small intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,1.76780563288555,0.0425455021045267,0.00106933510259241,299,299,299 +"88","ETP_SRI_LinearFitting","small intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094786,0.000565757923733332,299,299,299 +"89","ETP_SRI_LinearFitting","small intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.45,0.45,0.45,0.0657882130636678,0.0129318475024162,0.000272558015550553,299,299,299 +"90","ETP_SRI_LinearFitting","small intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.45,0.45,0.45,0.0318472093243258,0.00994517539003606,0.000135584729312215,299,299,299 +"91","ETP_SRI_LinearFitting","spleen",10,0.2,0.03,0.00129999999999999,-3.3740132522231,0.00553618298512768,0.00143433710820903,0.45,0.45,0.45,32.2937373001832,0.0199199575648861,0.00143622539626405,299,299,299 +"92","ETP_SRI_LinearFitting","spleen",30,0.2,0.03,0.00129999999999999,0.191616803068673,0.0524339373886503,0.00127246317690968,0.45,0.45,0.45,0.225231222917192,0.241188205504064,0.000351229948037188,299,299,299 +"93","ETP_SRI_LinearFitting","spleen",50,0.2,0.03,0.00129999999999999,0.202791755119256,0.039825290894353,0.0012798791928558,0.45,0.45,0.45,0.128062905075638,0.160615566355117,0.000208715871266267,299,299,299 +"94","ETP_SRI_LinearFitting","spleen",100,0.2,0.03,0.00129999999999999,0.204134185690545,0.0296901197338264,0.00128864343929708,0.45,0.45,0.45,0.063013883604555,0.059005431253839,0.000104155540475188,299,299,299 +"95","ETP_SRI_LinearFitting","spleen",200,0.2,0.03,0.00129999999999999,0.202743964725328,0.0217979487010552,0.0012939998603653,0.45,0.45,0.45,0.0314614070504959,0.0204643988878911,5.21071683813949e-05,299,299,299 +"96","ETP_SRI_LinearFitting","st wall",10,0.3,0.012,0.0015,-1.64610469307265,0.00469872580015407,0.0016722712729154,0.45,0.45,0.45,15.8055997491259,0.0116896306708749,0.00158171276921857,299,299,299 +"97","ETP_SRI_LinearFitting","st wall",30,0.3,0.012,0.0015,0.270890694864435,0.0145946544452255,0.00147533983907024,0.45,0.45,0.45,0.296176769896366,0.0644575311240057,0.000487785371238241,299,299,299 +"98","ETP_SRI_LinearFitting","st wall",50,0.3,0.012,0.0015,0.29676404903463,0.0206118664406517,0.00147812190285612,0.45,0.45,0.45,0.154483980727086,0.138058215589313,0.000285387872646462,299,299,299 +"99","ETP_SRI_LinearFitting","st wall",100,0.3,0.012,0.0015,0.302162253072998,0.0127072898874613,0.00148765340763967,0.45,0.45,0.45,0.0742535435648724,0.00999336152068087,0.000141764252457752,299,299,299 +"100","ETP_SRI_LinearFitting","st wall",200,0.3,0.012,0.0015,0.301306786736074,0.0115839512910052,0.00149453131653136,0.45,0.45,0.45,0.0369195438104536,0.0039251958924262,7.08740730226027e-05,299,299,299 +"101","ETP_SRI_LinearFitting","trans lower intestine",10,0.69,0.029,0.00130999999999999,-1.78046847362465,0.0165222897448011,0.0016441792429181,0.45,0.45,0.45,15.8239651221768,0.0700506422948976,0.00211653751766344,299,299,299 +"102","ETP_SRI_LinearFitting","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.475373627248902,0.0224567876012169,0.00136414593549871,0.45,0.45,0.45,1.7678056328855,0.042545502104526,0.00106933510259241,299,299,299 +"103","ETP_SRI_LinearFitting","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094783,0.000565757923733331,299,299,299 +"104","ETP_SRI_LinearFitting","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689682968828103,0.018072945218478,0.00128589506813888,0.45,0.45,0.45,0.0657882130636677,0.0129318475024159,0.000272558015550553,299,299,299 +"105","ETP_SRI_LinearFitting","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.6916765650872,0.0183295045447003,0.001295710009054,0.45,0.45,0.45,0.0318472093243257,0.00994517539003592,0.000135584729312215,299,299,299 +"106","ETP_SRI_LinearFitting","Vein",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 +"107","ETP_SRI_LinearFitting","Vein",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335514,0.00202899165966831,299,299,299 +"108","ETP_SRI_LinearFitting","Vein",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 +"109","ETP_SRI_LinearFitting","Vein",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 +"110","ETP_SRI_LinearFitting","Vein",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"111","IAR_LU_biexp","Artery",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.45,0.45,0.45,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 +"112","IAR_LU_biexp","Artery",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.45,0.45,0.45,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 +"113","IAR_LU_biexp","Artery",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.45,0.45,0.45,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 +"114","IAR_LU_biexp","Artery",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.45,0.45,0.45,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 +"115","IAR_LU_biexp","Artery",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.45,0.45,0.45,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 +"116","IAR_LU_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.697212667896394,0.0325023737565882,0.00113782850824108,0.45,0.45,0.45,0.0969149603369071,0.0150873113090282,0.00075651551093642,299,299,299 +"117","IAR_LU_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690042687609969,0.0293408736715589,0.00129733848997831,0.45,0.45,0.45,0.0360947595237916,0.00363625975881636,0.000283880194097926,299,299,299 +"118","IAR_LU_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.690035517241786,0.0291115984791372,0.00130238538452424,0.45,0.45,0.45,0.0214722239467864,0.00211805849668056,0.000167872936460034,299,299,299 +"119","IAR_LU_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.69001659059687,0.0290241717802667,0.00130617192275866,0.45,0.45,0.45,0.0106870876911403,0.00104662367079566,8.33919719679096e-05,299,299,299 +"120","IAR_LU_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.690006715696218,0.0290045215204471,0.001308087187188,0.45,0.45,0.45,0.00533599564952396,0.000521521540722386,4.16245932209183e-05,299,299,299 +"121","IAR_LU_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.45,0.45,0.45,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 +"122","IAR_LU_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.45,0.45,0.45,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 +"123","IAR_LU_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.45,0.45,0.45,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 +"124","IAR_LU_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.45,0.45,0.45,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 +"125","IAR_LU_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.45,0.45,0.45,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 +"126","IAR_LU_biexp","Blood RV",10,1,0.1,0.003,0.92647069528709,0.0982613762257002,0.000127034347081598,0.45,0.45,0.45,0.0215210674974187,0.0049615271733654,0.000371973812375611,299,299,299 +"127","IAR_LU_biexp","Blood RV",30,1,0.1,0.003,0.977495351986575,0.0994484053261729,8.6776830208335e-05,0.45,0.45,0.45,0.00692461752875168,0.00165005168400417,0.00029552015946517,299,299,299 +"128","IAR_LU_biexp","Blood RV",50,1,0.1,0.003,0.986847787847024,0.0996578523977876,7.50360360821851e-05,0.45,0.45,0.45,0.00411089364523165,0.00101750527880633,0.000278518469327793,299,299,299 +"129","IAR_LU_biexp","Blood RV",100,1,0.1,0.003,0.993665235855317,0.0998164880990098,5.78826114675235e-05,0.45,0.45,0.45,0.0020037885125151,0.000529926879857713,0.000263826199490928,299,299,299 +"130","IAR_LU_biexp","Blood RV",200,1,0.1,0.003,0.996952138241195,0.09990235409644,4.82142679154876e-05,0.45,0.45,0.45,0.000991618405480444,0.000274814551227168,0.000256559602777668,299,299,299 +"131","IAR_LU_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.697212667300357,0.0325023737719409,0.00113782851118961,0.45,0.45,0.45,0.0969149608678149,0.0150873112968303,0.00075651551240572,299,299,299 +"132","IAR_LU_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690042687627665,0.0293408736706232,0.00129733848988675,0.45,0.45,0.45,0.0360947594628279,0.00363625975619238,0.00028388019375974,299,299,299 +"133","IAR_LU_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.690035515572817,0.0291115986604859,0.00130238539842299,0.45,0.45,0.45,0.0214722257649461,0.002118058553172,0.000167872962249228,299,299,299 +"134","IAR_LU_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.690016590562107,0.0290241717827196,0.00130617192299434,0.45,0.45,0.45,0.0106870876869911,0.00104662367148246,8.33919720257604e-05,299,299,299 +"135","IAR_LU_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.690006715693301,0.0290045215206338,0.00130808718720708,0.45,0.45,0.45,0.00533599565206864,0.000521521540571046,4.1624593218652e-05,299,299,299 +"136","IAR_LU_biexp","esophagus",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.45,0.45,0.45,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 +"137","IAR_LU_biexp","esophagus",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.45,0.45,0.45,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 +"138","IAR_LU_biexp","esophagus",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.45,0.45,0.45,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 +"139","IAR_LU_biexp","esophagus",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.45,0.45,0.45,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 +"140","IAR_LU_biexp","esophagus",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.45,0.45,0.45,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 +"141","IAR_LU_biexp","esophagus cont",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.45,0.45,0.45,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 +"142","IAR_LU_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.45,0.45,0.45,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 +"143","IAR_LU_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.45,0.45,0.45,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 +"144","IAR_LU_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.45,0.45,0.45,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 +"145","IAR_LU_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.45,0.45,0.45,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 +"146","IAR_LU_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.45,0.45,0.45,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 +"147","IAR_LU_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.45,0.45,0.45,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 +"148","IAR_LU_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.45,0.45,0.45,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 +"149","IAR_LU_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.45,0.45,0.45,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 +"150","IAR_LU_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.45,0.45,0.45,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 +"151","IAR_LU_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.45,0.45,0.45,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 +"152","IAR_LU_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.45,0.45,0.45,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 +"153","IAR_LU_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.45,0.45,0.45,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 +"154","IAR_LU_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.45,0.45,0.45,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 +"155","IAR_LU_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.45,0.45,0.45,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 +"156","IAR_LU_biexp","Liver",10,0.11,0.1,0.0015,0.17150503347828,0.0585894869688638,0.00133082929506349,0.45,0.45,0.45,0.136516097304139,0.040090038616655,0.000354915450632941,299,299,299 +"157","IAR_LU_biexp","Liver",30,0.11,0.1,0.0015,0.116524922609641,0.0797461322710395,0.00147039590886351,0.45,0.45,0.45,0.0333445716851057,0.0273586641563357,9.54315771325179e-05,299,299,299 +"158","IAR_LU_biexp","Liver",50,0.11,0.1,0.0015,0.111213985993271,0.0871710843301268,0.00148797791711182,0.45,0.45,0.45,0.0154006163091042,0.0181177747169451,4.76546785250623e-05,299,299,299 +"159","IAR_LU_biexp","Liver",100,0.11,0.1,0.0015,0.110305056949762,0.0927872237401196,0.00149443585404214,0.45,0.45,0.45,0.00760367346398485,0.010636984816954,2.3490644652322e-05,299,299,299 +"160","IAR_LU_biexp","Liver",200,0.11,0.1,0.0015,0.110083101922637,0.0961088632553183,0.00149729667035132,0.45,0.45,0.45,0.00377409246386361,0.00589352197554721,1.16519052488367e-05,299,299,299 +"161","IAR_LU_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.45,0.45,0.45,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 +"162","IAR_LU_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.45,0.45,0.45,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 +"163","IAR_LU_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.45,0.45,0.45,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 +"164","IAR_LU_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.45,0.45,0.45,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 +"165","IAR_LU_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.45,0.45,0.45,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 +"166","IAR_LU_biexp","myocardium ra",10,0.07,0.07,0.0015,0.14434529830722,0.0496160441966283,0.00132998441282674,0.45,0.45,0.45,0.140855149533486,0.0404605423176663,0.000341449090754878,299,299,299 +"167","IAR_LU_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884934019340212,0.0605990186959302,0.00145501083368677,0.45,0.45,0.45,0.0492325838484117,0.0351976192418362,0.000113777290620505,299,299,299 +"168","IAR_LU_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0758647169781666,0.06791650050496,0.00148333041539624,0.45,0.45,0.45,0.0230456661351546,0.0291001629249576,5.93738477118657e-05,299,299,299 +"169","IAR_LU_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0708749125967571,0.0711936438005044,0.00149642377167344,0.45,0.45,0.45,0.00816500710666416,0.0192721206922887,2.43863373496943e-05,299,299,299 +"170","IAR_LU_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070182595378895,0.0711717683305259,0.00149896894166523,0.45,0.45,0.45,0.00403298414730219,0.0119620121584671,1.22446271475917e-05,299,299,299 +"171","IAR_LU_biexp","myocardium RV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.45,0.45,0.45,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 +"172","IAR_LU_biexp","myocardium RV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.45,0.45,0.45,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 +"173","IAR_LU_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.45,0.45,0.45,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 +"174","IAR_LU_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.45,0.45,0.45,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 +"175","IAR_LU_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.45,0.45,0.45,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 +"176","IAR_LU_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.194101487815807,0.0312758838743002,0.00120526646626578,0.45,0.45,0.45,0.163835605660646,0.0351134171828845,0.000389002224095764,299,299,299 +"177","IAR_LU_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.18057781110752,0.0172903815631494,0.00125161129207905,0.45,0.45,0.45,0.0946201475796243,0.0207613933514163,0.000184226392073428,299,299,299 +"178","IAR_LU_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.172218377812807,0.0122015061567802,0.00126461919523248,0.45,0.45,0.45,0.0680057817004279,0.0102895468472958,0.000126280292095513,299,299,299 +"179","IAR_LU_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156814390417323,0.010276360650811,0.00128831420397952,0.45,0.45,0.45,0.0330925441819963,0.00280594101449204,6.19579959599574e-05,299,299,299 +"180","IAR_LU_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151550794401852,0.0100513328503536,0.00129688092235998,0.45,0.45,0.45,0.0150249218350546,0.00127661999397567,2.91039408170828e-05,299,299,299 +"181","IAR_LU_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.285492213115468,0.0190670326981962,0.00226157462609275,0.45,0.45,0.45,0.295897833443307,0.0281974740030665,0.000970921790568731,299,299,299 +"182","IAR_LU_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171300202118549,0.0176658968150002,0.00279755619927794,0.45,0.45,0.45,0.192343219823375,0.0249759051303956,0.000428028390979465,299,299,299 +"183","IAR_LU_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.150556932149508,0.0186673286620893,0.00287029554388432,0.45,0.45,0.45,0.153716456740351,0.024823540168741,0.000300739466996796,299,299,299 +"184","IAR_LU_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.137271520897935,0.0160473990749268,0.00290927547149749,0.45,0.45,0.45,0.117893566693985,0.0195152724982985,0.000196241930893257,299,299,299 +"185","IAR_LU_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.102312394147559,0.0125930930414983,0.00295777596823617,0.45,0.45,0.45,0.0785041069510577,0.0109051130123374,0.000124246519340491,299,299,299 +"186","IAR_LU_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.45,0.45,0.45,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 +"187","IAR_LU_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.45,0.45,0.45,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 +"188","IAR_LU_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.45,0.45,0.45,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 +"189","IAR_LU_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.45,0.45,0.45,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 +"190","IAR_LU_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.45,0.45,0.45,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 +"191","IAR_LU_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.45,0.45,0.45,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 +"192","IAR_LU_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.45,0.45,0.45,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 +"193","IAR_LU_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.45,0.45,0.45,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 +"194","IAR_LU_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.45,0.45,0.45,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 +"195","IAR_LU_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.45,0.45,0.45,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 +"196","IAR_LU_biexp","small intestine",10,0.69,0.029,0.00131,0.697212667324408,0.0325023737670926,0.00113782851099832,0.45,0.45,0.45,0.0969149608580876,0.0150873112899437,0.000756515511829932,299,299,299 +"197","IAR_LU_biexp","small intestine",30,0.69,0.029,0.00131,0.690042687647921,0.0293408736692245,0.0012973384897293,0.45,0.45,0.45,0.0360947594630489,0.00363625975813661,0.000283880193523868,299,299,299 +"198","IAR_LU_biexp","small intestine",50,0.69,0.029,0.00131,0.690035515564786,0.0291115986613112,0.00130238539849337,0.45,0.45,0.45,0.0214722257688065,0.00211805855379368,0.000167872962555997,299,299,299 +"199","IAR_LU_biexp","small intestine",100,0.69,0.029,0.00131,0.690016590577353,0.0290241717816333,0.00130617192289034,0.45,0.45,0.45,0.0106870876894146,0.00104662367040614,8.33919719690564e-05,299,299,299 +"200","IAR_LU_biexp","small intestine",200,0.69,0.029,0.00131,0.690006715703415,0.0290045215198542,0.00130808718713812,0.45,0.45,0.45,0.00533599564919373,0.000521521540682779,4.16245931960093e-05,299,299,299 +"201","IAR_LU_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.258238381169185,0.0415855486936915,0.001156583030263,0.45,0.45,0.45,0.138972935730348,0.033199359136067,0.000392002777022699,299,299,299 +"202","IAR_LU_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206967214328514,0.0338919578464336,0.00128156423965599,0.45,0.45,0.45,0.0387633481889241,0.0175409201633337,0.000113885202343254,299,299,299 +"203","IAR_LU_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202249286598062,0.0312833908166694,0.00129256952434829,0.45,0.45,0.45,0.0221581511313069,0.00879736911181636,6.60123263011774e-05,299,299,299 +"204","IAR_LU_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200487080304842,0.0302504275785877,0.0012973937314337,0.45,0.45,0.45,0.0107457183685509,0.00383295563309727,3.20648907780344e-05,299,299,299 +"205","IAR_LU_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.20009205584711,0.030052736227119,0.00129897493246634,0.45,0.45,0.45,0.00531656690976873,0.00186528647470474,1.58727384991494e-05,299,299,299 +"206","IAR_LU_biexp","st wall",10,0.3,0.012,0.0015,0.361045681611347,0.0252956083225308,0.00131717399629326,0.45,0.45,0.45,0.20326722786523,0.0285647281439496,0.000612145460756818,299,299,299 +"207","IAR_LU_biexp","st wall",30,0.3,0.012,0.0015,0.323962428710257,0.0134193933845625,0.00143886841292422,0.45,0.45,0.45,0.0982083290063556,0.00798933272515384,0.000260082486221727,299,299,299 +"208","IAR_LU_biexp","st wall",50,0.3,0.012,0.0015,0.307361980831941,0.012384744394028,0.00147968648747327,0.45,0.45,0.45,0.0543906266860356,0.00311905673053413,0.000143561177270617,299,299,299 +"209","IAR_LU_biexp","st wall",100,0.3,0.012,0.0015,0.301677558443888,0.0120878361093821,0.00149434290424516,0.45,0.45,0.45,0.0263384511959087,0.0014322760683357,6.96636660243356e-05,299,299,299 +"210","IAR_LU_biexp","st wall",200,0.3,0.012,0.0015,0.300399087873271,0.0120193042665729,0.0014981386774852,0.45,0.45,0.45,0.0130979678723596,0.000698591450954127,3.46398328200195e-05,299,299,299 +"211","IAR_LU_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.697212667722101,0.0325023737662354,0.0011378285095022,0.45,0.45,0.45,0.0969149605281008,0.0150873112941006,0.00075651551328862,299,299,299 +"212","IAR_LU_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.69004268765537,0.0293408736684314,0.00129733848966368,0.45,0.45,0.45,0.0360947595155316,0.00363625976077757,0.000283880194085563,299,299,299 +"213","IAR_LU_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.690035515530053,0.0291115986633909,0.00130238539872579,0.45,0.45,0.45,0.0214722257310754,0.00211805855231437,0.00016787296220424,299,299,299 +"214","IAR_LU_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.690016590592847,0.0290241717807258,0.00130617192278856,0.45,0.45,0.45,0.0106870876903053,0.00104662367103972,8.33919719260138e-05,299,299,299 +"215","IAR_LU_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.690006715695885,0.0290045215203316,0.00130808718718679,0.45,0.45,0.45,0.00533599564581372,0.000521521540492688,4.16245931726914e-05,299,299,299 +"216","IAR_LU_biexp","Vein",10,1,0.1,0.00299999999999999,0.926470695260705,0.0982613762253741,0.000127034347223934,0.45,0.45,0.45,0.0215210674937771,0.00496152716857027,0.000371973810625793,299,299,299 +"217","IAR_LU_biexp","Vein",30,1,0.1,0.00299999999999999,0.977495351988701,0.0994484053257689,8.67768297506284e-05,0.45,0.45,0.45,0.00692461752649988,0.00165005168479494,0.000295520156728701,299,299,299 +"218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.45,0.45,0.45,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 +"219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.45,0.45,0.45,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 +"220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.45,0.45,0.45,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 +"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.93357125756588,0.0981824057921137,9.70556655449764e-05,0.45,0.45,0.45,0.0215315134276721,0.00482303584793265,0.000274616763185764,299,299,299 +"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660110268935,0.0989272085933608,0.000105473809804581,0.45,0.45,0.45,0.00718047466118973,0.00255361316987879,0.000389583944857625,299,299,299 +"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987514103349888,0.0993260391298794,0.000148072202348357,0.45,0.45,0.45,0.00427636510594884,0.00160588551097448,0.000555365246863575,299,299,299 +"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993793307849017,0.0996313448733502,0.000655254255029264,0.45,0.45,0.45,0.00223734437145938,0.000849556669685874,0.000800760137727388,299,299,299 +"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.99684405668737,0.0998137178793031,0.000906836378548677,0.45,0.45,0.45,0.00122808782928517,0.000406425988856157,0.000905488912443852,299,299,299 +"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701153882747051,0.037677879418835,0.00123508518796054,0.45,0.45,0.45,0.083853137361322,0.0142605766805178,0.000698497407638553,299,299,299 +"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689271724678096,0.030568203138744,0.00132582632252109,0.45,0.45,0.45,0.0343156090089035,0.00387566884564754,0.000274550449659142,299,299,299 +"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689073105444599,0.0296140415443145,0.00131663493702091,0.45,0.45,0.45,0.0211213893218192,0.00231682080582957,0.000165695600936479,299,299,299 +"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689265158634317,0.0291644597762591,0.00131220109986762,0.45,0.45,0.45,0.0106117507761787,0.00118686819615474,8.31671782954059e-05,299,299,299 +"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566447613064,0.0290654340531287,0.00131121369876702,0.45,0.45,0.45,0.00531431427053799,0.000596547047186578,4.16133352129848e-05,299,299,299 +"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933568915804888,0.0981815937937353,9.71488766917606e-05,0.45,0.45,0.45,0.0215361602153026,0.00482243091883048,0.000276382702854826,299,299,299 +"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978668554100672,0.09892459231783,0.000104649751533448,0.45,0.45,0.45,0.00717199477241337,0.00256579266357723,0.000388120676954327,299,299,299 +"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987499890059773,0.0993268562116793,0.000131500308633551,0.45,0.45,0.45,0.0042311511500056,0.00160458520709858,0.000496367352128361,299,299,299 +"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790992815501,0.0996356224488253,0.000677954139424538,0.45,0.45,0.45,0.00224609436717979,0.000848842434195585,0.00084302370139269,299,299,299 +"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996842913497317,0.0998091622675121,0.000941428392822257,0.45,0.45,0.45,0.00123388162122495,0.000427256038723588,0.000904896076246016,299,299,299 +"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.93358308708098,0.098165877792147,9.69042470108521e-05,0.45,0.45,0.45,0.0215425402730198,0.0048255909004563,0.000274579098493578,299,299,299 +"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978680186830582,0.0989258565451091,0.00011822526423205,0.45,0.45,0.45,0.00719781182261384,0.00255991496055216,0.000449639777751245,299,299,299 +"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987519685564835,0.0993174961989465,0.00015556222732223,0.45,0.45,0.45,0.00427794032284088,0.00163167598089201,0.00057511924957297,299,299,299 +"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993788312565995,0.0996310500024382,0.000669650273773522,0.45,0.45,0.45,0.00226173234937702,0.000847082809629555,0.000800879682365674,299,299,299 +"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996852398204192,0.099806343658245,0.000935560984427118,0.45,0.45,0.45,0.0012250133834896,0.000445707744182514,0.000929970791555061,299,299,299 +"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701167268748306,0.0376557028697764,0.00123545028911568,0.45,0.45,0.45,0.0837572509930543,0.0142030501638213,0.000699607339104532,299,299,299 +"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689297249700858,0.030567007394227,0.00132576568546701,0.45,0.45,0.45,0.0343109923359163,0.00387454213929185,0.000274566392816788,299,299,299 +"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689083359079487,0.0296132551807272,0.00131658256107176,0.45,0.45,0.45,0.0211177455608938,0.00231679298754261,0.000165656452857739,299,299,299 +"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689242744963318,0.0291667234515168,0.00131235700166641,0.45,0.45,0.45,0.0105967248433205,0.00118321919949295,8.30363527638792e-05,299,299,299 +"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689571332166992,0.029065184485476,0.0013112007081306,0.45,0.45,0.45,0.00530674678926696,0.00059401011661812,4.15650879294298e-05,299,299,299 +"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.401348332338983,0.0443068426146696,0.00153897276631267,0.45,0.45,0.45,0.10231849355244,0.0257186377650331,0.000432787613477337,299,299,299 +"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337494416126886,0.0333320931172689,0.00164838967947682,0.45,0.45,0.45,0.0404553801582183,0.00974663084357603,0.000155234018001702,299,299,299 +"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327733069208594,0.031294054995077,0.00165951829034375,0.45,0.45,0.45,0.0251850625356227,0.00505150492935743,9.38160268196753e-05,299,299,299 +"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.321539248423835,0.0303875052451309,0.0016673077586464,0.45,0.45,0.45,0.0130520719565539,0.00247661253754486,4.74051429857883e-05,299,299,299 +"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.319954019986516,0.030129188309861,0.00166961661468074,0.45,0.45,0.45,0.00671482007534348,0.00124908665253888,2.38145942456643e-05,299,299,299 +"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.401117895996408,0.0445006714864347,0.00153993656349967,0.45,0.45,0.45,0.10251903001171,0.0258556224622928,0.000432378852467023,299,299,299 +"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337486040702455,0.0333277888555187,0.00164841371587985,0.45,0.45,0.45,0.0404331931709914,0.00971548914978589,0.00015505648707373,299,299,299 +"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.3276954530205,0.0313060455554659,0.00165968347470075,0.45,0.45,0.45,0.0252274807431153,0.00504595524945946,9.39935630581377e-05,299,299,299 +"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321602382596772,0.0303697957051882,0.00166707905178584,0.45,0.45,0.45,0.013022737224839,0.00246765998644714,4.73779280742386e-05,299,299,299 +"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319928506079778,0.0301341833093661,0.00166968503900113,0.45,0.45,0.45,0.00673309903308556,0.00124507252231446,2.38699573898028e-05,299,299,299 +"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.251433691433464,0.04718602711686,0.00187394235156353,0.45,0.45,0.45,0.153084018704544,0.0327311939963684,0.000510272364755671,299,299,299 +"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152054871769993,0.0339424263187974,0.00204264722710367,0.45,0.45,0.45,0.0760703623790001,0.0273536018482561,0.000194150716769437,299,299,299 +"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125815626397911,0.0289115874193625,0.00208024763111182,0.45,0.45,0.45,0.0480015283098486,0.0222289479413338,0.000120319947911555,299,299,299 +"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.10930971344899,0.0209563752629134,0.00210010169059032,0.45,0.45,0.45,0.0201809889404505,0.00813377585502031,5.49503210802345e-05,299,299,299 +"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.102557979182238,0.0195492891069927,0.0021091688721948,0.45,0.45,0.45,0.0098860569885803,0.00303931508795855,2.70453744227864e-05,299,299,299 +"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.28810889290007,0.0468579466072958,0.00187351885565154,0.45,0.45,0.45,0.153733255614966,0.0329378323483128,0.00054591315065378,299,299,299 +"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.195294690699443,0.0296691527732733,0.00204280342161752,0.45,0.45,0.45,0.0710720655630101,0.0217103256834568,0.000203928411277656,299,299,299 +"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174270972233881,0.0242566041304212,0.0020724552660825,0.45,0.45,0.45,0.0416217104499037,0.012983631619332,0.00012176413615959,299,299,299 +"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163286897343228,0.0203075707276222,0.00208416333368101,0.45,0.45,0.45,0.0210425102873922,0.00392351379926325,6.10837071385173e-05,299,299,299 +"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158920127120984,0.0194342060732113,0.00208908709103361,0.45,0.45,0.45,0.0109982798193607,0.00196019636191494,3.13876828444379e-05,299,299,299 +"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.240713234074954,0.0643515982610474,0.00133075351235401,0.45,0.45,0.45,0.10083923728493,0.0343182289130771,0.000298708310668488,299,299,299 +"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140980773897648,0.0799869945494431,0.00145814043815725,0.45,0.45,0.45,0.0327060470077203,0.0262013071999071,8.88827031007845e-05,299,299,299 +"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.123095260001383,0.0869747499143492,0.00148128682442063,0.45,0.45,0.45,0.0184366399112419,0.0178772212058813,4.84685872198609e-05,299,299,299 +"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113748535028757,0.0925349904053821,0.00149249438096273,0.45,0.45,0.45,0.00971704577356645,0.0104829346282735,2.39448524712466e-05,299,299,299 +"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111149845686814,0.0957804886944311,0.00149660018797951,0.45,0.45,0.45,0.00523750465183297,0.00572764608914371,1.19291653696488e-05,299,299,299 +"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.291564767292008,0.063532806280998,0.00207458044633807,0.45,0.45,0.45,0.126699986383466,0.0336105404937815,0.000516812708964973,299,299,299 +"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177682223490815,0.0766941218720376,0.00234675263428843,0.45,0.45,0.45,0.0363954094796405,0.0240906819280758,0.0001522269320299,299,299,299 +"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160887379705585,0.0793177246207811,0.00237830824589721,0.45,0.45,0.45,0.0207575826665988,0.0182673651214206,8.78297335057793e-05,299,299,299 +"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152009784324078,0.0806527732544861,0.00239457286984621,0.45,0.45,0.45,0.010862303260046,0.0120040798123006,4.42993562823217e-05,299,299,299 +"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.15022425223167,0.0804191141048672,0.00239850236398185,0.45,0.45,0.45,0.00574178432916829,0.00695781774794095,2.25943861318448e-05,299,299,299 +"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.216943117192828,0.0555806274869532,0.00133174561199934,0.45,0.45,0.45,0.106950833833174,0.0338122250617546,0.000296488298499381,299,299,299 +"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114246761368671,0.0611443318832659,0.00144608111899403,0.45,0.45,0.45,0.0410924579737273,0.0318708637105381,9.69273404098012e-05,299,299,299 +"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906884465398401,0.0663674045854295,0.00147516344497932,0.45,0.45,0.45,0.0230352360440237,0.0267918440114683,5.63997822878352e-05,299,299,299 +"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0764240040377867,0.0701908475640152,0.00149197646409364,0.45,0.45,0.45,0.0111566819054461,0.020719638071576,2.77939968263688e-05,299,299,299 +"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711460544040154,0.0711697149197762,0.00149830682957115,0.45,0.45,0.45,0.00549025852877168,0.0123859848752068,1.32079889993739e-05,299,299,299 +"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.292676509733734,0.0628308941986845,0.00207075244924492,0.45,0.45,0.45,0.126989401532164,0.0336225056228985,0.000516687693216435,299,299,299 +"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.177626519755466,0.0767361190056652,0.00234694551031708,0.45,0.45,0.45,0.0363751749099445,0.0240258916112023,0.000151971097364274,299,299,299 +"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.16092478337997,0.0792437555380092,0.00237816913420684,0.45,0.45,0.45,0.0207841005571506,0.0182539685113319,8.79239017119467e-05,299,299,299 +"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152022734528309,0.0806240685248349,0.00239452307618176,0.45,0.45,0.45,0.0108853273378637,0.0119950076559221,4.43602511430181e-05,299,299,299 +"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201860515418,0.0804718479325828,0.00239858867446421,0.45,0.45,0.45,0.00573245608358257,0.00697178946535427,2.25462252722093e-05,299,299,299 +"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.250117783205428,0.0430145385041461,0.001233392739257,0.45,0.45,0.45,0.126865840514046,0.0330380781682586,0.000345008314499143,299,299,299 +"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.183147173359499,0.0218944634602871,0.00127837966982928,0.45,0.45,0.45,0.0710255618968277,0.0221029293062734,0.000149862796337412,299,299,299 +"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170095061035692,0.0142818280482212,0.0012845516145822,0.45,0.45,0.45,0.0496553470110429,0.0104565857739364,9.93729022744642e-05,299,299,299 +"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156792382358262,0.0112560176296832,0.00129557097207587,0.45,0.45,0.45,0.0275403363717371,0.00279448217865639,5.3624873800157e-05,299,299,299 +"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151382338405453,0.010446491873233,0.00129982651077626,0.45,0.45,0.45,0.0140601033702455,0.00130683104985259,2.72532380611039e-05,299,299,299 +"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.258157091081439,0.0470155643015073,0.00249721149290686,0.45,0.45,0.45,0.212525237472612,0.0335219157163406,0.00081405118655344,299,299,299 +"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.152185774432951,0.0360554795643403,0.00284115383580455,0.45,0.45,0.45,0.158229553482523,0.0308790268701099,0.000396051854748563,299,299,299 +"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.134316805802551,0.032334895050825,0.00289214756479077,0.45,0.45,0.45,0.137098452317649,0.0312345769322997,0.000290948400860348,299,299,299 +"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.118519413196598,0.0221717191704132,0.00293163954096316,0.45,0.45,0.45,0.105607876167745,0.0255796319959072,0.000189833178966201,299,299,299 +"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0993372549574482,0.0124668429100087,0.00295804649559184,0.45,0.45,0.45,0.0709523775787972,0.00985652336246177,0.00011832159811549,299,299,299 +"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.287551878127385,0.0466858396560634,0.0018747019387436,0.45,0.45,0.45,0.154364549230104,0.032736967342244,0.000549946579855602,299,299,299 +"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194997842982468,0.0298067532882456,0.00204372392640597,0.45,0.45,0.45,0.0710286711490384,0.0217668318545726,0.000204077002523849,299,299,299 +"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174283358638892,0.0242499436400705,0.002072486552713,0.45,0.45,0.45,0.0416188408712607,0.0129884488485282,0.000121619597592877,299,299,299 +"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163285984880146,0.0203081548623067,0.00208415004704966,0.45,0.45,0.45,0.0210870722311707,0.003921529998946,6.11172067758032e-05,299,299,299 +"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.158942258093868,0.0194245432411219,0.00208903078297127,0.45,0.45,0.45,0.0109463379788263,0.00193091071529793,3.11524879514303e-05,299,299,299 +"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248873725195769,0.047996659374673,0.00188339556611961,0.45,0.45,0.45,0.149313763204719,0.0331320650423645,0.00050321463833507,299,299,299 +"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.15215758371251,0.0341077091916034,0.00204227524597511,0.45,0.45,0.45,0.0767274700225168,0.0272208534081652,0.000194912068404044,299,299,299 +"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125594235789353,0.0291148652885148,0.00208075394921138,0.45,0.45,0.45,0.047923436634871,0.0224446091027042,0.00012030056832824,299,299,299 +"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109367433991571,0.0209357388138711,0.0020999888623546,0.45,0.45,0.45,0.0202634089239477,0.00815736340342668,5.50503270697327e-05,299,299,299 +"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.10276826147688,0.0194615527681688,0.0021086759908194,0.45,0.45,0.45,0.00959345475031173,0.00296003721780637,2.66507245885503e-05,299,299,299 +"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701222093031369,0.0376573243204067,0.00123522200914479,0.45,0.45,0.45,0.083821891621118,0.0142347122686887,0.000699757862549052,299,299,299 +"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689248383604906,0.0305726777608476,0.00132602854952806,0.45,0.45,0.45,0.0343368562916266,0.00388093347991032,0.000274580747606178,299,299,299 +"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689059298868095,0.0296152528040005,0.0013167001600601,0.45,0.45,0.45,0.0211100355325202,0.00231623097039335,0.000165590617950021,299,299,299 +"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689257789390009,0.0291652570752426,0.00131226270039138,0.45,0.45,0.45,0.0106083270549541,0.00118455986988015,8.31695903142742e-05,299,299,299 +"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689563836909958,0.0290656606913855,0.00131122341894688,0.45,0.45,0.45,0.00531727145181668,0.000596339182443615,4.16105434890594e-05,299,299,299 +"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.30734073778793,0.0474265708388755,0.00118146394276549,0.45,0.45,0.45,0.0992197524985585,0.029567967208592,0.000310430603272232,299,299,299 +"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.2267296957555,0.0357545770793252,0.00127423477945577,0.45,0.45,0.45,0.0384811656373676,0.0166246694163928,0.00010604973308596,299,299,299 +"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212835050121119,0.0322186457621597,0.0012872737771478,0.45,0.45,0.45,0.0240164483400916,0.0084621764386231,6.46344239905471e-05,299,299,299 +"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203904571097261,0.0305952461464594,0.00129565709726008,0.45,0.45,0.45,0.0124093006007493,0.00376953295665766,3.24142808590257e-05,299,299,299 +"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200600595724158,0.0301748142832744,0.00129894859398528,0.45,0.45,0.45,0.00657659349981071,0.00188470012274508,1.64103765409298e-05,299,299,299 +"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.362781911976871,0.0340311223599806,0.00144953286468647,0.45,0.45,0.45,0.149311839641177,0.0281015491564776,0.000521202377661773,299,299,299 +"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.30883563566145,0.0166068831883409,0.00151085331596662,0.45,0.45,0.45,0.0726296261657129,0.00802518068130869,0.000207444437824182,299,299,299 +"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300652637586296,0.0141425380258619,0.00151424601811367,0.45,0.45,0.45,0.0460905409855043,0.00348324812251533,0.000127680264509092,299,299,299 +"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.298671731734528,0.0127459140095052,0.00150803459150432,0.45,0.45,0.45,0.0247120383656466,0.00159567927393779,6.65934613734605e-05,299,299,299 +"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.298450618695395,0.012253948572961,0.0015044383071657,0.45,0.45,0.45,0.012830006430066,0.000752738191197432,3.39327042827762e-05,299,299,299 +"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701184260467898,0.0376737102089551,0.0012350457467426,0.45,0.45,0.45,0.0837975464441198,0.0142696180955637,0.00069830711301017,299,299,299 +"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689282338065983,0.0305681166785389,0.00132582547193319,0.45,0.45,0.45,0.0342934823108316,0.00387429914578415,0.000274349189569308,299,299,299 +"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689082235857123,0.0296123280266747,0.00131652217178431,0.45,0.45,0.45,0.0211208123683363,0.002317039374728,0.000165678643347599,299,299,299 +"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689250336828392,0.0291658422028105,0.00131229563467827,0.45,0.45,0.45,0.0106001818251014,0.0011852240490074,8.30867665649776e-05,299,299,299 +"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689568018721775,0.0290652596335112,0.00131120209108787,0.45,0.45,0.45,0.00530918334066781,0.000595034380020002,4.15809160244039e-05,299,299,299 +"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933569110357815,0.0981835406129829,9.69548902358382e-05,0.45,0.45,0.45,0.0215402532787278,0.00481432877877674,0.000274729102833124,299,299,299 +"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978666396174865,0.0989243913022118,0.00010485583201623,0.45,0.45,0.45,0.00717419721294456,0.00256557664331277,0.000387765107847003,299,299,299 +"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987503315693407,0.0993331051337483,0.000111204899205781,0.45,0.45,0.45,0.00423943071628697,0.00159594297096,0.00042488761578149,299,299,299 +"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993781769224997,0.0996376044412155,0.00067687744221044,0.45,0.45,0.45,0.00226030795219935,0.000833875391060671,0.000818867866154746,299,299,299 +"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996848510099491,0.0998113020733052,0.000952371074665549,0.45,0.45,0.45,0.00122993253484535,0.000429856534294685,0.000897485935426085,299,299,299 +"331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 +"332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 +"333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 +"334","IAR_LU_modified_topopro","Artery",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.45,0.45,0.45,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 +"335","IAR_LU_modified_topopro","Artery",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.45,0.45,0.45,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 +"336","IAR_LU_modified_topopro","asc lower intestine",10,0.69,0.029,0.00131,0.693578780504134,0.0415355532662142,0.00128103308321534,0.45,0.45,0.45,0.0970509533929983,0.0236823442169324,0.000819226976703706,299,299,299 +"337","IAR_LU_modified_topopro","asc lower intestine",30,0.69,0.029,0.00131,0.687810582166082,0.0307536147510959,0.0013382900074825,0.45,0.45,0.45,0.0353144143147495,0.00435917556566684,0.000286310629098516,299,299,299 +"338","IAR_LU_modified_topopro","asc lower intestine",50,0.69,0.029,0.00131,0.688721295105845,0.0296257289906534,0.00131893797782168,0.45,0.45,0.45,0.0212465084180936,0.00249048940612626,0.000169271398329773,299,299,299 +"339","IAR_LU_modified_topopro","asc lower intestine",100,0.69,0.029,0.00131,0.689845828253077,0.0290894790629384,0.001307501525805,0.45,0.45,0.45,0.0107195144339221,0.00127256025225725,8.483351662592e-05,299,299,299 +"340","IAR_LU_modified_topopro","asc lower intestine",200,0.69,0.029,0.00131,0.689825939977317,0.0290142120213539,0.00130847683836763,0.45,0.45,0.45,0.00555750265488881,0.000601294931615333,4.25435274843115e-05,299,299,299 +"341","IAR_LU_modified_topopro","Blood RA",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 +"342","IAR_LU_modified_topopro","Blood RA",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 +"343","IAR_LU_modified_topopro","Blood RA",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 +"344","IAR_LU_modified_topopro","Blood RA",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.45,0.45,0.45,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 +"345","IAR_LU_modified_topopro","Blood RA",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.45,0.45,0.45,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 +"346","IAR_LU_modified_topopro","Blood RV",10,1,0.1,0.003,0.920296650622447,0.125293033588126,0.000183447331029076,0.45,0.45,0.45,0.0226806331224816,0.0244333472528567,0.000584106662250704,299,299,299 +"347","IAR_LU_modified_topopro","Blood RV",30,1,0.1,0.003,0.974303991283049,0.106099273671618,0.000177399100029965,0.45,0.45,0.45,0.00748957829912673,0.00829547736585587,0.000678897095895847,299,299,299 +"348","IAR_LU_modified_topopro","Blood RV",50,1,0.1,0.003,0.984941578599012,0.103360682474306,0.000155910408472978,0.45,0.45,0.45,0.00447576585770208,0.00495498740401099,0.000644237899348858,299,299,299 +"349","IAR_LU_modified_topopro","Blood RV",100,1,0.1,0.003,0.992841726733044,0.101349324599851,0.000128756832432632,0.45,0.45,0.45,0.00221528951841681,0.00248392277283552,0.000596162471686369,299,299,299 +"350","IAR_LU_modified_topopro","Blood RV",200,1,0.1,0.003,0.996733416462042,0.100300501347642,0.000119817129447202,0.45,0.45,0.45,0.00117145369846812,0.00100883159979159,0.000632414305364842,299,299,299 +"351","IAR_LU_modified_topopro","desc lower intestine",10,0.69,0.029,0.00131,0.69353255335075,0.0415612047930334,0.00128569612698868,0.45,0.45,0.45,0.0970827204927868,0.0237638891843294,0.000822921583808708,299,299,299 +"352","IAR_LU_modified_topopro","desc lower intestine",30,0.69,0.029,0.00131,0.687529033131503,0.0307864248323058,0.00133992030563751,0.45,0.45,0.45,0.035340761383201,0.00434360018542071,0.00028557595909565,299,299,299 +"353","IAR_LU_modified_topopro","desc lower intestine",50,0.69,0.029,0.00131,0.688938060964252,0.0296002490456439,0.00131726956556521,0.45,0.45,0.45,0.0212284246706342,0.00247366753913384,0.000167933611102375,299,299,299 +"354","IAR_LU_modified_topopro","desc lower intestine",100,0.69,0.029,0.00131,0.689803781014276,0.0290940234426647,0.00130741787888986,0.45,0.45,0.45,0.0110120008034572,0.00127088911766303,8.45797308420218e-05,299,299,299 +"355","IAR_LU_modified_topopro","desc lower intestine",200,0.69,0.029,0.00131,0.689784230390506,0.0290189623695888,0.00130868523568613,0.45,0.45,0.45,0.00553639486233176,0.000608258415769342,4.23025595359244e-05,299,299,299 +"356","IAR_LU_modified_topopro","esophagus",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.45,0.45,0.45,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 +"357","IAR_LU_modified_topopro","esophagus",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.45,0.45,0.45,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 +"358","IAR_LU_modified_topopro","esophagus",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.45,0.45,0.45,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 +"359","IAR_LU_modified_topopro","esophagus",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.45,0.45,0.45,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 +"360","IAR_LU_modified_topopro","esophagus",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.45,0.45,0.45,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 +"361","IAR_LU_modified_topopro","esophagus cont",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.45,0.45,0.45,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 +"362","IAR_LU_modified_topopro","esophagus cont",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.45,0.45,0.45,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 +"363","IAR_LU_modified_topopro","esophagus cont",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.45,0.45,0.45,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 +"364","IAR_LU_modified_topopro","esophagus cont",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.45,0.45,0.45,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 +"365","IAR_LU_modified_topopro","esophagus cont",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.45,0.45,0.45,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 +"366","IAR_LU_modified_topopro","Left kidney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.45,0.45,0.45,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 +"367","IAR_LU_modified_topopro","Left kidney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.45,0.45,0.45,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 +"368","IAR_LU_modified_topopro","Left kidney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.45,0.45,0.45,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 +"369","IAR_LU_modified_topopro","Left kidney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.45,0.45,0.45,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 +"370","IAR_LU_modified_topopro","Left kidney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.45,0.45,0.45,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 +"371","IAR_LU_modified_topopro","left kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.45,0.45,0.45,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 +"372","IAR_LU_modified_topopro","left kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.45,0.45,0.45,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 +"373","IAR_LU_modified_topopro","left kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.45,0.45,0.45,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 +"374","IAR_LU_modified_topopro","left kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.45,0.45,0.45,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 +"375","IAR_LU_modified_topopro","left kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.45,0.45,0.45,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 +"376","IAR_LU_modified_topopro","Liver",10,0.11,0.1,0.0015,0.255827144238669,0.0957949328224053,0.00130092643991093,0.45,0.45,0.45,0.133644073612816,0.0684386590799032,0.000379476628758943,299,299,299 +"377","IAR_LU_modified_topopro","Liver",30,0.11,0.1,0.0015,0.133802596180871,0.121405497015874,0.00147252862365529,0.45,0.45,0.45,0.0323313786170407,0.0504511851101522,8.92081827197948e-05,299,299,299 +"378","IAR_LU_modified_topopro","Liver",50,0.11,0.1,0.0015,0.118729927642186,0.11773946935276,0.00148881545258651,0.45,0.45,0.45,0.0167411687834778,0.0426333639052342,4.73600868068698e-05,299,299,299 +"379","IAR_LU_modified_topopro","Liver",100,0.11,0.1,0.0015,0.112266606855168,0.105433216396753,0.00149419894599423,0.45,0.45,0.45,0.00902108432024771,0.030662316383553,2.42747200177698e-05,299,299,299 +"380","IAR_LU_modified_topopro","Liver",200,0.11,0.1,0.0015,0.110995126491855,0.0973924440504551,0.00149623920986603,0.45,0.45,0.45,0.00518590399827883,0.0106183419451747,1.20619999134246e-05,299,299,299 +"381","IAR_LU_modified_topopro","Myocardium LV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.45,0.45,0.45,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 +"382","IAR_LU_modified_topopro","Myocardium LV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.45,0.45,0.45,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 +"383","IAR_LU_modified_topopro","Myocardium LV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.45,0.45,0.45,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 +"384","IAR_LU_modified_topopro","Myocardium LV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.45,0.45,0.45,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 +"385","IAR_LU_modified_topopro","Myocardium LV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.45,0.45,0.45,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 +"386","IAR_LU_modified_topopro","myocardium ra",10,0.07,0.07,0.0015,0.233345797803224,0.0758206228669585,0.00130187536524909,0.45,0.45,0.45,0.133957644380287,0.066388571559589,0.000363650445363682,299,299,299 +"387","IAR_LU_modified_topopro","myocardium ra",30,0.07,0.07,0.0015,0.108856126532739,0.0964456670697446,0.0014567334689066,0.45,0.45,0.45,0.0440157368882964,0.0596090389915254,0.000103224107835832,299,299,299 +"388","IAR_LU_modified_topopro","myocardium ra",50,0.07,0.07,0.0015,0.0854880561907263,0.0973144944749237,0.00148281482291791,0.45,0.45,0.45,0.0207373834323344,0.0497994361924948,5.42735308861248e-05,299,299,299 +"389","IAR_LU_modified_topopro","myocardium ra",100,0.07,0.07,0.0015,0.0745374604485976,0.0807036222064792,0.00149478405306962,0.45,0.45,0.45,0.00997544057913432,0.0315117637210663,2.58398414525695e-05,299,299,299 +"390","IAR_LU_modified_topopro","myocardium ra",200,0.07,0.07,0.0015,0.070924223444913,0.0715684911066608,0.00149809258018433,0.45,0.45,0.45,0.00539980707410929,0.0133990279370298,1.28312643370667e-05,299,299,299 +"391","IAR_LU_modified_topopro","myocardium RV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.45,0.45,0.45,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 +"392","IAR_LU_modified_topopro","myocardium RV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.45,0.45,0.45,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 +"393","IAR_LU_modified_topopro","myocardium RV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.45,0.45,0.45,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 +"394","IAR_LU_modified_topopro","myocardium RV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.45,0.45,0.45,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 +"395","IAR_LU_modified_topopro","myocardium RV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.45,0.45,0.45,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 +"396","IAR_LU_modified_topopro","pancreas",10,0.15,0.01,0.00129999999999999,0.280147618787791,0.0550963471623122,0.00116554559543274,0.45,0.45,0.45,0.154200671687761,0.0601150850496964,0.000411333431647301,299,299,299 +"397","IAR_LU_modified_topopro","pancreas",30,0.15,0.01,0.00129999999999999,0.180292442524659,0.0283670218235359,0.00128220682523432,0.45,0.45,0.45,0.0758183523997101,0.0373025951640522,0.000154889895612203,299,299,299 +"398","IAR_LU_modified_topopro","pancreas",50,0.15,0.01,0.00129999999999999,0.160883491285031,0.0172849139656884,0.00130037131461184,0.45,0.45,0.45,0.0520817767720244,0.0152607616127078,0.000103316331968376,299,299,299 +"399","IAR_LU_modified_topopro","pancreas",100,0.15,0.01,0.00129999999999999,0.154976949063361,0.0120069271284118,0.00129977292515898,0.45,0.45,0.45,0.0334646725252195,0.00446344579568468,6.40649593388859e-05,299,299,299 +"400","IAR_LU_modified_topopro","pancreas",200,0.15,0.01,0.00129999999999999,0.155286959430167,0.0101428890293175,0.00129270742735421,0.45,0.45,0.45,0.0172333080337744,0.00153439739326154,3.24157917287038e-05,299,299,299 +"401","IAR_LU_modified_topopro","pericardium",10,0.07,0.00999999999999999,0.003,0.304246595967149,0.0630491156685354,0.00235482700518371,0.45,0.45,0.45,0.260685324735516,0.0637178985095701,0.000993597879656733,299,299,299 +"402","IAR_LU_modified_topopro","pericardium",30,0.07,0.00999999999999999,0.003,0.176641493642551,0.0520279343575831,0.0028348649822054,0.45,0.45,0.45,0.207967296454401,0.0596888181268739,0.000571521838568284,299,299,299 +"403","IAR_LU_modified_topopro","pericardium",50,0.07,0.00999999999999999,0.003,0.146227380203304,0.042647287703342,0.00291329895112631,0.45,0.45,0.45,0.159901072514046,0.0522232847404345,0.000369579678167213,299,299,299 +"404","IAR_LU_modified_topopro","pericardium",100,0.07,0.00999999999999999,0.003,0.137535248314898,0.0274694017620213,0.0029193188543007,0.45,0.45,0.45,0.131305938197915,0.0405847885689576,0.000236989816000259,299,299,299 +"405","IAR_LU_modified_topopro","pericardium",200,0.07,0.00999999999999999,0.003,0.106876601462374,0.0141821859583173,0.00295175861415913,0.45,0.45,0.45,0.0866370026871013,0.0154683273621364,0.000137465282729351,299,299,299 +"406","IAR_LU_modified_topopro","right kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.45,0.45,0.45,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 +"407","IAR_LU_modified_topopro","right kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.45,0.45,0.45,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 +"408","IAR_LU_modified_topopro","right kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.45,0.45,0.45,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 +"409","IAR_LU_modified_topopro","right kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.45,0.45,0.45,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 +"410","IAR_LU_modified_topopro","right kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.45,0.45,0.45,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 +"411","IAR_LU_modified_topopro","Right kydney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.45,0.45,0.45,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 +"412","IAR_LU_modified_topopro","Right kydney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.45,0.45,0.45,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 +"413","IAR_LU_modified_topopro","Right kydney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.45,0.45,0.45,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 +"414","IAR_LU_modified_topopro","Right kydney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.45,0.45,0.45,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 +"415","IAR_LU_modified_topopro","Right kydney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.45,0.45,0.45,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 +"416","IAR_LU_modified_topopro","small intestine",10,0.69,0.029,0.00131,0.694262245048376,0.041376031786243,0.00127575746503216,0.45,0.45,0.45,0.0967837138191552,0.0233612728169214,0.000821652336598365,299,299,299 +"417","IAR_LU_modified_topopro","small intestine",30,0.69,0.029,0.00131,0.687722331121821,0.0307580006808991,0.00134021784981736,0.45,0.45,0.45,0.0351426096506969,0.00435469175637002,0.000284059232762604,299,299,299 +"418","IAR_LU_modified_topopro","small intestine",50,0.69,0.029,0.00131,0.68908448667331,0.0295719444686926,0.00131656193442396,0.45,0.45,0.45,0.0214793767768495,0.00247568869798116,0.000168319670616108,299,299,299 +"419","IAR_LU_modified_topopro","small intestine",100,0.69,0.029,0.00131,0.689765613332017,0.0290940329273443,0.00130808320972436,0.45,0.45,0.45,0.0109523316691925,0.00123761959754598,8.5316967356735e-05,299,299,299 +"420","IAR_LU_modified_topopro","small intestine",200,0.69,0.029,0.00131,0.689905499433019,0.0290056437597644,0.00130824381017983,0.45,0.45,0.45,0.00544972908667523,0.000598861686247944,4.18259481209846e-05,299,299,299 +"421","IAR_LU_modified_topopro","spleen",10,0.2,0.03,0.00129999999999999,0.319868006115112,0.063392313341736,0.00114701986395022,0.45,0.45,0.45,0.127028194828194,0.0542166947340963,0.000388299783289906,299,299,299 +"422","IAR_LU_modified_topopro","spleen",30,0.2,0.03,0.00129999999999999,0.215360997563175,0.0442606501281254,0.00130354720611688,0.45,0.45,0.45,0.0365624032335726,0.0261446003020259,0.000105551124736129,299,299,299 +"423","IAR_LU_modified_topopro","spleen",50,0.2,0.03,0.00129999999999999,0.208856498625777,0.0349379828827892,0.00129997254980305,0.45,0.45,0.45,0.0232436380421739,0.0134864153624437,6.61171024217637e-05,299,299,299 +"424","IAR_LU_modified_topopro","spleen",100,0.2,0.03,0.00129999999999999,0.204200673121755,0.0304239196137196,0.00129577459955986,0.45,0.45,0.45,0.0129647113395538,0.00465726530553315,3.35882997092888e-05,299,299,299 +"425","IAR_LU_modified_topopro","spleen",200,0.2,0.03,0.00129999999999999,0.200822327913181,0.0300525395093674,0.00129839806116424,0.45,0.45,0.45,0.00653017924354621,0.00186535860535101,1.63191536785758e-05,299,299,299 +"426","IAR_LU_modified_topopro","st wall",10,0.3,0.012,0.0015,0.398249536075877,0.0414327592705561,0.0013308464645949,0.45,0.45,0.45,0.179875566567662,0.0488900917459887,0.000607086675688919,299,299,299 +"427","IAR_LU_modified_topopro","st wall",30,0.3,0.012,0.0015,0.304981866410044,0.019062815360902,0.00152406395152592,0.45,0.45,0.45,0.0863985064932302,0.0159978388575776,0.000239113806683646,299,299,299 +"428","IAR_LU_modified_topopro","st wall",50,0.3,0.012,0.0015,0.303869758313058,0.0142369519703813,0.00151399551647258,0.45,0.45,0.45,0.05621027771121,0.00488788692716998,0.000149801012378724,299,299,299 +"429","IAR_LU_modified_topopro","st wall",100,0.3,0.012,0.0015,0.305112114866144,0.0122592880475803,0.00149760569421531,0.45,0.45,0.45,0.0273933903749877,0.00163482678247482,7.13546414172466e-05,299,299,299 +"430","IAR_LU_modified_topopro","st wall",200,0.3,0.012,0.0015,0.301896746555565,0.0120195655148351,0.00149805858945093,0.45,0.45,0.45,0.0139779415391202,0.000700939984225378,3.50081487540217e-05,299,299,299 +"431","IAR_LU_modified_topopro","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.693178885237798,0.0415791676918557,0.0012877057786336,0.45,0.45,0.45,0.0968563027027587,0.0237449984222352,0.000825061448241474,299,299,299 +"432","IAR_LU_modified_topopro","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.687355419209049,0.0307945973352347,0.00134083836319301,0.45,0.45,0.45,0.0346999752926432,0.00430590939666401,0.000281486176019419,299,299,299 +"433","IAR_LU_modified_topopro","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688922163392087,0.0295911195710815,0.00131794686365502,0.45,0.45,0.45,0.0211777668762992,0.0024591080293894,0.000167887957689605,299,299,299 +"434","IAR_LU_modified_topopro","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689976252210824,0.0290643775264531,0.00130712971409723,0.45,0.45,0.45,0.0111596605740458,0.00127230067708064,8.6055448007924e-05,299,299,299 +"435","IAR_LU_modified_topopro","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689888170406535,0.0290018785916859,0.00130847256340122,0.45,0.45,0.45,0.00546502050565497,0.000593775344251464,4.23249708031501e-05,299,299,299 +"436","IAR_LU_modified_topopro","Vein",10,1,0.1,0.00299999999999999,0.920340948544868,0.125267602952588,0.000182829755987327,0.45,0.45,0.45,0.0225948248460019,0.0244450623949952,0.000583405196732458,299,299,299 +"437","IAR_LU_modified_topopro","Vein",30,1,0.1,0.00299999999999999,0.974304007878179,0.106099271208312,0.00017739920965156,0.45,0.45,0.45,0.0074896310418671,0.00829547616520967,0.000678898150509279,299,299,299 +"438","IAR_LU_modified_topopro","Vein",50,1,0.1,0.00299999999999999,0.984941554598225,0.103360680622716,0.000155910848324994,0.45,0.45,0.45,0.00447571056831266,0.00495498786932744,0.000644242026928185,299,299,299 +"439","IAR_LU_modified_topopro","Vein",100,1,0.1,0.00299999999999999,0.992841725680271,0.101349324298109,0.000128757028592843,0.45,0.45,0.45,0.00221528819623711,0.0024839226995908,0.000596162110415501,299,299,299 +"440","IAR_LU_modified_topopro","Vein",200,1,0.1,0.00299999999999999,0.996733416187604,0.100300502391623,0.000119817078027757,0.45,0.45,0.45,0.00117146069783939,0.00100883111028152,0.000632413732960071,299,299,299 +"441","IAR_LU_segmented_2step","Artery",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.45,0.45,0.45,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 +"442","IAR_LU_segmented_2step","Artery",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.45,0.45,0.45,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 +"443","IAR_LU_segmented_2step","Artery",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.45,0.45,0.45,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 +"444","IAR_LU_segmented_2step","Artery",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.45,0.45,0.45,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 +"445","IAR_LU_segmented_2step","Artery",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.45,0.45,0.45,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 +"446","IAR_LU_segmented_2step","asc lower intestine",10,0.69,0.029,0.00131,0.690373035820094,0.0320610845759972,0.00128397090175435,0.45,0.45,0.45,0.111830765201228,0.0149363990134043,0.0010310750352814,299,299,299 +"447","IAR_LU_segmented_2step","asc lower intestine",30,0.69,0.029,0.00131,0.688190385607032,0.0294222676858039,0.00132700874616123,0.45,0.45,0.45,0.0448734637691971,0.00411936458229695,0.000393814792063893,299,299,299 +"448","IAR_LU_segmented_2step","asc lower intestine",50,0.69,0.029,0.00131,0.688983137072148,0.0291736871195673,0.00131674147785283,0.45,0.45,0.45,0.0269406505113919,0.00243185752511053,0.000231513954749497,299,299,299 +"449","IAR_LU_segmented_2step","asc lower intestine",100,0.69,0.029,0.00131,0.689404252989227,0.029066163092573,0.00131311787679812,0.45,0.45,0.45,0.0134745367049808,0.00120919315577138,0.000114727932084214,299,299,299 +"450","IAR_LU_segmented_2step","asc lower intestine",200,0.69,0.029,0.00131,0.689565491171274,0.0290364333672251,0.00131259560662869,0.45,0.45,0.45,0.00673757581944161,0.000603840898929335,5.72226395519967e-05,299,299,299 +"451","IAR_LU_segmented_2step","Blood RA",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.45,0.45,0.45,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 +"452","IAR_LU_segmented_2step","Blood RA",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.45,0.45,0.45,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 +"453","IAR_LU_segmented_2step","Blood RA",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.45,0.45,0.45,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 +"454","IAR_LU_segmented_2step","Blood RA",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.45,0.45,0.45,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 +"455","IAR_LU_segmented_2step","Blood RA",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.45,0.45,0.45,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 +"456","IAR_LU_segmented_2step","Blood RV",10,1,0.1,0.003,0.921258294005175,0.0983174229498556,0.000602377539314825,0.45,0.45,0.45,0.0258235599273312,0.0048817357689704,0.000954240122896554,299,299,299 +"457","IAR_LU_segmented_2step","Blood RV",30,1,0.1,0.003,0.976019933224227,0.0994829647759296,0.000602393052438452,0.45,0.45,0.45,0.0083310126686943,0.0016038596496585,0.000954268289514534,299,299,299 +"458","IAR_LU_segmented_2step","Blood RV",50,1,0.1,0.003,0.985994872256549,0.0996813109859528,0.000602405603200741,0.45,0.45,0.45,0.00494309801013262,0.000986358092526008,0.000954266532348308,299,299,299 +"459","IAR_LU_segmented_2step","Blood RV",100,1,0.1,0.003,0.993268900338895,0.0998299735833862,0.000602442811986694,0.45,0.45,0.45,0.00241285763266283,0.00051392104017594,0.000954286483399826,299,299,299 +"460","IAR_LU_segmented_2step","Blood RV",200,1,0.1,0.003,0.996782474408774,0.0999083722401707,0.000602417326124585,0.45,0.45,0.45,0.00119135923032626,0.000267557047652887,0.000954060412685357,299,299,299 +"461","IAR_LU_segmented_2step","desc lower intestine",10,0.69,0.029,0.00131,0.690373037187929,0.032061084511974,0.0012839709016351,0.45,0.45,0.45,0.111830764423804,0.0149363990086909,0.0010310750351664,299,299,299 +"462","IAR_LU_segmented_2step","desc lower intestine",30,0.69,0.029,0.00131,0.688190385604399,0.0294222676864886,0.00132700874615634,0.45,0.45,0.45,0.0448734637614442,0.00411936458331029,0.000393814791852722,299,299,299 +"463","IAR_LU_segmented_2step","desc lower intestine",50,0.69,0.029,0.00131,0.688983137070003,0.0291736871196476,0.00131674147781799,0.45,0.45,0.45,0.0269406505267064,0.00243185752517155,0.000231513954746746,299,299,299 +"464","IAR_LU_segmented_2step","desc lower intestine",100,0.69,0.029,0.00131,0.689404252988794,0.0290661630927041,0.00131311787679321,0.45,0.45,0.45,0.0134745367105457,0.00120919315606283,0.0001147279321005,299,299,299 +"465","IAR_LU_segmented_2step","desc lower intestine",200,0.69,0.029,0.00131,0.689565491168261,0.0290364333673394,0.00131259560662137,0.45,0.45,0.45,0.00673757582228583,0.000603840898965895,5.72226395589749e-05,299,299,299 +"466","IAR_LU_segmented_2step","esophagus",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.45,0.45,0.45,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 +"467","IAR_LU_segmented_2step","esophagus",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.45,0.45,0.45,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 +"468","IAR_LU_segmented_2step","esophagus",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.45,0.45,0.45,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 +"469","IAR_LU_segmented_2step","esophagus",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.45,0.45,0.45,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 +"470","IAR_LU_segmented_2step","esophagus",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.45,0.45,0.45,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 +"471","IAR_LU_segmented_2step","esophagus cont",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.45,0.45,0.45,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 +"472","IAR_LU_segmented_2step","esophagus cont",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.45,0.45,0.45,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 +"473","IAR_LU_segmented_2step","esophagus cont",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.45,0.45,0.45,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 +"474","IAR_LU_segmented_2step","esophagus cont",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.45,0.45,0.45,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 +"475","IAR_LU_segmented_2step","esophagus cont",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.45,0.45,0.45,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 +"476","IAR_LU_segmented_2step","Left kidney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.45,0.45,0.45,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 +"477","IAR_LU_segmented_2step","Left kidney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.45,0.45,0.45,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 +"478","IAR_LU_segmented_2step","Left kidney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.45,0.45,0.45,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 +"479","IAR_LU_segmented_2step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.45,0.45,0.45,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 +"480","IAR_LU_segmented_2step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.45,0.45,0.45,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 +"481","IAR_LU_segmented_2step","left kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.45,0.45,0.45,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 +"482","IAR_LU_segmented_2step","left kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.45,0.45,0.45,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 +"483","IAR_LU_segmented_2step","left kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.45,0.45,0.45,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 +"484","IAR_LU_segmented_2step","left kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.45,0.45,0.45,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 +"485","IAR_LU_segmented_2step","left kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.45,0.45,0.45,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 +"486","IAR_LU_segmented_2step","Liver",10,0.11,0.1,0.0015,0.144577570411426,0.0600041637865293,0.00152084809188092,0.45,0.45,0.45,0.123335225696709,0.0417372816084262,0.000472993211159269,299,299,299 +"487","IAR_LU_segmented_2step","Liver",30,0.11,0.1,0.0015,0.112815078932074,0.0768823300474684,0.00150154707211704,0.45,0.45,0.45,0.0402419901201215,0.0310439867234663,0.000152137743344338,299,299,299 +"488","IAR_LU_segmented_2step","Liver",50,0.11,0.1,0.0015,0.1099576380775,0.0845663044192014,0.00150017699860271,0.45,0.45,0.45,0.0218836166694104,0.022477885458141,9.09784274199351e-05,299,299,299 +"489","IAR_LU_segmented_2step","Liver",100,0.11,0.1,0.0015,0.10944935129917,0.0916622252527853,0.00149980895512081,0.45,0.45,0.45,0.010208281089791,0.0124943171981403,4.54189474712779e-05,299,299,299 +"490","IAR_LU_segmented_2step","Liver",200,0.11,0.1,0.0015,0.109652146434559,0.0956035913947621,0.00149983471124947,0.45,0.45,0.45,0.00504024948517217,0.00673413090644371,2.26988859055568e-05,299,299,299 +"491","IAR_LU_segmented_2step","Myocardium LV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.45,0.45,0.45,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 +"492","IAR_LU_segmented_2step","Myocardium LV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.45,0.45,0.45,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 +"493","IAR_LU_segmented_2step","Myocardium LV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.45,0.45,0.45,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 +"494","IAR_LU_segmented_2step","Myocardium LV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.45,0.45,0.45,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 +"495","IAR_LU_segmented_2step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.45,0.45,0.45,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 +"496","IAR_LU_segmented_2step","myocardium ra",10,0.07,0.07,0.0015,0.119350871187795,0.0526522113471146,0.00151975238387796,0.45,0.45,0.45,0.122175673607144,0.0433817113789841,0.000451902244673881,299,299,299 +"497","IAR_LU_segmented_2step","myocardium ra",30,0.07,0.07,0.0015,0.0792678235673555,0.0630122253969336,0.00150135088654914,0.45,0.45,0.45,0.0453965721112215,0.0370205317703307,0.000145531665798083,299,299,299 +"498","IAR_LU_segmented_2step","myocardium ra",50,0.07,0.07,0.0015,0.0732403881564398,0.0670725405856644,0.00150012323561766,0.45,0.45,0.45,0.0252082854080656,0.031219546230532,8.70510202022302e-05,299,299,299 +"499","IAR_LU_segmented_2step","myocardium ra",100,0.07,0.07,0.0015,0.0706178298624483,0.0704430265419414,0.00149980568738501,0.45,0.45,0.45,0.0111951905157038,0.0218907234720239,4.34633528226247e-05,299,299,299 +"500","IAR_LU_segmented_2step","myocardium ra",200,0.07,0.07,0.0015,0.0700882021755177,0.0711624170940203,0.00149983895305835,0.45,0.45,0.45,0.00530076418974235,0.0136048479725231,2.17222536755328e-05,299,299,299 +"501","IAR_LU_segmented_2step","myocardium RV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.45,0.45,0.45,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 +"502","IAR_LU_segmented_2step","myocardium RV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.45,0.45,0.45,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 +"503","IAR_LU_segmented_2step","myocardium RV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.45,0.45,0.45,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 +"504","IAR_LU_segmented_2step","myocardium RV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.45,0.45,0.45,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 +"505","IAR_LU_segmented_2step","myocardium RV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.45,0.45,0.45,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 +"506","IAR_LU_segmented_2step","pancreas",10,0.15,0.01,0.00129999999999999,0.167366769534782,0.0306978926979998,0.00134733544815708,0.45,0.45,0.45,0.138138076806016,0.0353119819659889,0.000431649675978663,299,299,299 +"507","IAR_LU_segmented_2step","pancreas",30,0.15,0.01,0.00129999999999999,0.141203985588467,0.0176354726093115,0.00133082551202286,0.45,0.45,0.45,0.0600511085386784,0.0196812578308465,0.000139043274945453,299,299,299 +"508","IAR_LU_segmented_2step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697420917372,0.0134860811681421,0.00132993185853207,0.45,0.45,0.45,0.0376186380241066,0.00990391939690809,8.31806812154377e-05,299,299,299 +"509","IAR_LU_segmented_2step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323219863,0.0115476660390234,0.00132978575875502,0.45,0.45,0.45,0.0195144380514801,0.00241788894796007,4.15321586456171e-05,299,299,299 +"510","IAR_LU_segmented_2step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024845707517,0.0112236005383082,0.00132987961477637,0.45,0.45,0.45,0.00985292081870204,0.00107217148365358,2.07569285081239e-05,299,299,299 +"511","IAR_LU_segmented_2step","pericardium",10,0.07,0.00999999999999999,0.003,0.22320565207551,0.0265364476482412,0.00273701082230784,0.45,0.45,0.45,0.23206537977111,0.0359088326115604,0.00088504212200084,299,299,299 +"512","IAR_LU_segmented_2step","pericardium",30,0.07,0.00999999999999999,0.003,0.104347274972772,0.0256374434531395,0.00304612925895245,0.45,0.45,0.45,0.114261684103799,0.0332933654950249,0.00039105626191339,299,299,299 +"513","IAR_LU_segmented_2step","pericardium",50,0.07,0.00999999999999999,0.003,0.0814011586963573,0.0244933209869785,0.00304009046144298,0.45,0.45,0.45,0.0795667664506302,0.0304103420804633,0.000238152536499515,299,299,299 +"514","IAR_LU_segmented_2step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642156773233244,0.0204405944701307,0.00303324788669806,0.45,0.45,0.45,0.0448553819665871,0.0232832527732592,0.000118500604743613,299,299,299 +"515","IAR_LU_segmented_2step","pericardium",200,0.07,0.00999999999999999,0.003,0.0580112863869371,0.0143446319848522,0.00303117957616411,0.45,0.45,0.45,0.0239540291900973,0.00980730019759861,5.91963411917844e-05,299,299,299 +"516","IAR_LU_segmented_2step","right kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.45,0.45,0.45,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 +"517","IAR_LU_segmented_2step","right kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.45,0.45,0.45,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 +"518","IAR_LU_segmented_2step","right kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.45,0.45,0.45,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 +"519","IAR_LU_segmented_2step","right kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.45,0.45,0.45,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 +"520","IAR_LU_segmented_2step","right kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.45,0.45,0.45,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 +"521","IAR_LU_segmented_2step","Right kydney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.45,0.45,0.45,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 +"522","IAR_LU_segmented_2step","Right kydney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.45,0.45,0.45,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 +"523","IAR_LU_segmented_2step","Right kydney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.45,0.45,0.45,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 +"524","IAR_LU_segmented_2step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.45,0.45,0.45,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 +"525","IAR_LU_segmented_2step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.45,0.45,0.45,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 +"526","IAR_LU_segmented_2step","small intestine",10,0.69,0.029,0.00131,0.690373037070898,0.0320610845226397,0.00128397090175435,0.45,0.45,0.45,0.111830764549477,0.0149363990351109,0.0010310750352814,299,299,299 +"527","IAR_LU_segmented_2step","small intestine",30,0.69,0.029,0.00131,0.688190385608461,0.0294222676855826,0.00132700874616123,0.45,0.45,0.45,0.0448734637901488,0.00411936458263747,0.000393814792063893,299,299,299 +"528","IAR_LU_segmented_2step","small intestine",50,0.69,0.029,0.00131,0.68898313707029,0.0291736871197262,0.00131674147785283,0.45,0.45,0.45,0.0269406505091751,0.00243185752491584,0.000231513954749497,299,299,299 +"529","IAR_LU_segmented_2step","small intestine",100,0.69,0.029,0.00131,0.68940425299248,0.0290661630924925,0.00131311787679812,0.45,0.45,0.45,0.0134745367108107,0.00120919315590461,0.000114727932084214,299,299,299 +"530","IAR_LU_segmented_2step","small intestine",200,0.69,0.029,0.00131,0.689565491157383,0.0290364333708514,0.00131259560662869,0.45,0.45,0.45,0.00673757580906278,0.000603840896646575,5.72226395519967e-05,299,299,299 +"531","IAR_LU_segmented_2step","spleen",10,0.2,0.03,0.00129999999999999,0.224602362890799,0.0422543737942781,0.00131869223769686,0.45,0.45,0.45,0.127234911609303,0.0341611217172608,0.000459161541284809,299,299,299 +"532","IAR_LU_segmented_2step","spleen",30,0.2,0.03,0.00129999999999999,0.203576863495816,0.0339539200173157,0.00130108907088979,0.45,0.45,0.45,0.044331214464624,0.017617566481108,0.000147366538355311,299,299,299 +"533","IAR_LU_segmented_2step","spleen",50,0.2,0.03,0.00129999999999999,0.201083469438403,0.0314320549693185,0.00130009526398064,0.45,0.45,0.45,0.0264945321235979,0.00973436499772472,8.81308203353264e-05,299,299,299 +"534","IAR_LU_segmented_2step","spleen",100,0.2,0.03,0.00129999999999999,0.20007115163649,0.0303418337778117,0.001299928493873,0.45,0.45,0.45,0.0131754362709165,0.00435303846028546,4.39969723252588e-05,299,299,299 +"535","IAR_LU_segmented_2step","spleen",200,0.2,0.03,0.00129999999999999,0.199885784150361,0.0301070126211822,0.00130002911399547,0.45,0.45,0.45,0.00657087134211547,0.00215138858402903,2.19877335574001e-05,299,299,299 +"536","IAR_LU_segmented_2step","st wall",10,0.3,0.012,0.0015,0.297910726506523,0.0238987755166635,0.00157773932710541,0.45,0.45,0.45,0.166898578530855,0.026413197787185,0.000614593950499859,299,299,299 +"537","IAR_LU_segmented_2step","st wall",30,0.3,0.012,0.0015,0.283533465909088,0.0146267868916472,0.00155214816764873,0.45,0.45,0.45,0.0667707036118569,0.0078453694765802,0.00019551156370717,299,299,299 +"538","IAR_LU_segmented_2step","st wall",50,0.3,0.012,0.0015,0.282913643368102,0.0133565032690983,0.00154952132488848,0.45,0.45,0.45,0.0412585327424046,0.0029662403323633,0.00011668052444887,299,299,299 +"539","IAR_LU_segmented_2step","st wall",100,0.3,0.012,0.0015,0.282957489855073,0.0129414790127824,0.0015486735829641,0.45,0.45,0.45,0.0209295866586312,0.00131275199125169,5.81996976856253e-05,299,299,299 +"540","IAR_LU_segmented_2step","st wall",200,0.3,0.012,0.0015,0.283111805846317,0.0128396414258269,0.00154860379618769,0.45,0.45,0.45,0.010504025040381,0.000633726930733129,2.90796048726369e-05,299,299,299 +"541","IAR_LU_segmented_2step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69037303749125,0.0320610844836358,0.00128397090178629,0.45,0.45,0.45,0.111830763771563,0.0149363989976124,0.00103107503559299,299,299,299 +"542","IAR_LU_segmented_2step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190385593539,0.0294222676872454,0.00132700874615982,0.45,0.45,0.45,0.0448734637558478,0.00411936458168369,0.000393814791967693,299,299,299 +"543","IAR_LU_segmented_2step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.68898313706239,0.0291736871209134,0.00131674147788471,0.45,0.45,0.45,0.0269406505338101,0.0024318575254413,0.000231513954838717,299,299,299 +"544","IAR_LU_segmented_2step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404252989508,0.0290661630925507,0.00131311787679501,0.45,0.45,0.45,0.0134745367049696,0.00120919315574895,0.000114727932099834,299,299,299 +"545","IAR_LU_segmented_2step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565491165205,0.0290364333675362,0.0013125956066485,0.45,0.45,0.45,0.00673757582406111,0.000603840899001961,5.72226395704009e-05,299,299,299 +"546","IAR_LU_segmented_2step","Vein",10,1,0.1,0.00299999999999999,0.921258294006205,0.0983174229514582,0.000602377539365262,0.45,0.45,0.45,0.0258235599431163,0.00488173576858925,0.000954240122974581,299,299,299 +"547","IAR_LU_segmented_2step","Vein",30,1,0.1,0.00299999999999999,0.976019933221361,0.0994829647765158,0.00060239305244365,0.45,0.45,0.45,0.00833101267682292,0.00160385964963576,0.000954268289514292,299,299,299 +"548","IAR_LU_segmented_2step","Vein",50,1,0.1,0.00299999999999999,0.98599487225747,0.0996813109862223,0.000602405603200741,0.45,0.45,0.45,0.00494309800725367,0.00098635809134973,0.000954266532348308,299,299,299 +"549","IAR_LU_segmented_2step","Vein",100,1,0.1,0.00299999999999999,0.993268900336901,0.0998299735834051,0.000602442811986694,0.45,0.45,0.45,0.00241285763307656,0.000513921040160147,0.000954286483399826,299,299,299 +"550","IAR_LU_segmented_2step","Vein",200,1,0.1,0.00299999999999999,0.996782474408715,0.099908372240112,0.000602417326124585,0.45,0.45,0.45,0.00119135923034317,0.00026755704762974,0.000954060412685357,299,299,299 +"551","IAR_LU_segmented_3step","Artery",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.45,0.45,0.45,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 +"552","IAR_LU_segmented_3step","Artery",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.45,0.45,0.45,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 +"553","IAR_LU_segmented_3step","Artery",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.45,0.45,0.45,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 +"554","IAR_LU_segmented_3step","Artery",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.45,0.45,0.45,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 +"555","IAR_LU_segmented_3step","Artery",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.45,0.45,0.45,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 +"556","IAR_LU_segmented_3step","asc lower intestine",10,0.69,0.029,0.00131,0.690372912460308,0.0320609988287597,0.00128397090175435,0.45,0.45,0.45,0.111831070178776,0.0149362639331092,0.0010310750352814,299,299,299 +"557","IAR_LU_segmented_3step","asc lower intestine",30,0.69,0.029,0.00131,0.688190453018247,0.0294222458071772,0.00132700874616123,0.45,0.45,0.45,0.0448734379198449,0.00411935738276174,0.000393814792063893,299,299,299 +"558","IAR_LU_segmented_3step","asc lower intestine",50,0.69,0.029,0.00131,0.688983156886655,0.0291736810771982,0.00131674147785283,0.45,0.45,0.45,0.0269406517217619,0.00243185875713279,0.000231513954749497,299,299,299 +"559","IAR_LU_segmented_3step","asc lower intestine",100,0.69,0.029,0.00131,0.689404263283331,0.029066159884122,0.00131311787679812,0.45,0.45,0.45,0.013474531543109,0.00120919095640661,0.000114727932084214,299,299,299 +"560","IAR_LU_segmented_3step","asc lower intestine",200,0.69,0.029,0.00131,0.689565493192121,0.0290364327596902,0.00131259560662869,0.45,0.45,0.45,0.00673757540019296,0.000603840709682258,5.72226395519967e-05,299,299,299 +"561","IAR_LU_segmented_3step","Blood RA",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.45,0.45,0.45,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 +"562","IAR_LU_segmented_3step","Blood RA",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.45,0.45,0.45,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 +"563","IAR_LU_segmented_3step","Blood RA",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.45,0.45,0.45,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 +"564","IAR_LU_segmented_3step","Blood RA",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.45,0.45,0.45,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 +"565","IAR_LU_segmented_3step","Blood RA",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.45,0.45,0.45,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 +"566","IAR_LU_segmented_3step","Blood RV",10,1,0.1,0.003,0.921258295752512,0.0983173943497697,0.000602377539314825,0.45,0.45,0.45,0.0258235874592633,0.00488176105309786,0.000954240122896554,299,299,299 +"567","IAR_LU_segmented_3step","Blood RV",30,1,0.1,0.003,0.976019921589139,0.0994829388944177,0.000602393052438452,0.45,0.45,0.45,0.00833093061417054,0.00160385306136018,0.000954268289514534,299,299,299 +"568","IAR_LU_segmented_3step","Blood RV",50,1,0.1,0.003,0.985994865012998,0.0996813363124673,0.000602405603200741,0.45,0.45,0.45,0.00494311872708252,0.000986368951628139,0.000954266532348308,299,299,299 +"569","IAR_LU_segmented_3step","Blood RV",100,1,0.1,0.003,0.993268930010737,0.0998299053836721,0.000602442811986694,0.45,0.45,0.45,0.00241282801400462,0.00051390736455086,0.000954286483399826,299,299,299 +"570","IAR_LU_segmented_3step","Blood RV",200,1,0.1,0.003,0.996782670893716,0.0999081619681687,0.000602417326124585,0.45,0.45,0.45,0.00119125287335306,0.000267526451785148,0.000954060412685357,299,299,299 +"571","IAR_LU_segmented_3step","desc lower intestine",10,0.69,0.029,0.00131,0.690372912834237,0.0320609988208121,0.0012839709016351,0.45,0.45,0.45,0.111831069984292,0.014936263933469,0.0010310750351664,299,299,299 +"572","IAR_LU_segmented_3step","desc lower intestine",30,0.69,0.029,0.00131,0.688190453039754,0.0294222458055492,0.00132700874615634,0.45,0.45,0.45,0.0448734379014875,0.00411935738152716,0.000393814791852722,299,299,299 +"573","IAR_LU_segmented_3step","desc lower intestine",50,0.69,0.029,0.00131,0.68898315689181,0.0291736810768264,0.00131674147781799,0.45,0.45,0.45,0.026940651717003,0.00243185875705343,0.000231513954746746,299,299,299 +"574","IAR_LU_segmented_3step","desc lower intestine",100,0.69,0.029,0.00131,0.689404263283869,0.0290661598843801,0.00131311787679321,0.45,0.45,0.45,0.0134745315463702,0.00120919095682723,0.0001147279321005,299,299,299 +"575","IAR_LU_segmented_3step","desc lower intestine",200,0.69,0.029,0.00131,0.689565493196492,0.0290364327594458,0.00131259560662137,0.45,0.45,0.45,0.00673757540289692,0.000603840709761317,5.72226395589749e-05,299,299,299 +"576","IAR_LU_segmented_3step","esophagus",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.45,0.45,0.45,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 +"577","IAR_LU_segmented_3step","esophagus",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.45,0.45,0.45,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 +"578","IAR_LU_segmented_3step","esophagus",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.45,0.45,0.45,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 +"579","IAR_LU_segmented_3step","esophagus",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.45,0.45,0.45,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 +"580","IAR_LU_segmented_3step","esophagus",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.45,0.45,0.45,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 +"581","IAR_LU_segmented_3step","esophagus cont",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.45,0.45,0.45,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 +"582","IAR_LU_segmented_3step","esophagus cont",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.45,0.45,0.45,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 +"583","IAR_LU_segmented_3step","esophagus cont",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.45,0.45,0.45,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 +"584","IAR_LU_segmented_3step","esophagus cont",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.45,0.45,0.45,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 +"585","IAR_LU_segmented_3step","esophagus cont",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.45,0.45,0.45,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 +"586","IAR_LU_segmented_3step","Left kidney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.45,0.45,0.45,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 +"587","IAR_LU_segmented_3step","Left kidney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.45,0.45,0.45,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 +"588","IAR_LU_segmented_3step","Left kidney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.45,0.45,0.45,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 +"589","IAR_LU_segmented_3step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.45,0.45,0.45,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 +"590","IAR_LU_segmented_3step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.45,0.45,0.45,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 +"591","IAR_LU_segmented_3step","left kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.45,0.45,0.45,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 +"592","IAR_LU_segmented_3step","left kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.45,0.45,0.45,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 +"593","IAR_LU_segmented_3step","left kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.45,0.45,0.45,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 +"594","IAR_LU_segmented_3step","left kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.45,0.45,0.45,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 +"595","IAR_LU_segmented_3step","left kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.45,0.45,0.45,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 +"596","IAR_LU_segmented_3step","Liver",10,0.11,0.1,0.0015,0.146082882050709,0.0559478804902679,0.00152084809188092,0.45,0.45,0.45,0.12417523764379,0.0423510319114557,0.000472993211159269,299,299,299 +"597","IAR_LU_segmented_3step","Liver",30,0.11,0.1,0.0015,0.113015747107183,0.0764337988942673,0.00150154707211704,0.45,0.45,0.45,0.0404962619170089,0.0315961478906252,0.000152137743344338,299,299,299 +"598","IAR_LU_segmented_3step","Liver",50,0.11,0.1,0.0015,0.109957685341215,0.0845663398058661,0.00150017699860271,0.45,0.45,0.45,0.0218837188774183,0.0224781408265878,9.09784274199351e-05,299,299,299 +"599","IAR_LU_segmented_3step","Liver",100,0.11,0.1,0.0015,0.109449356101409,0.0916623226685859,0.00149980895512081,0.45,0.45,0.45,0.0102082812165326,0.0124943114146282,4.54189474712779e-05,299,299,299 +"600","IAR_LU_segmented_3step","Liver",200,0.11,0.1,0.0015,0.109652152384101,0.0956036971815278,0.00149983471124947,0.45,0.45,0.45,0.00504025274062746,0.00673413785148666,2.26988859055568e-05,299,299,299 +"601","IAR_LU_segmented_3step","Myocardium LV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.45,0.45,0.45,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 +"602","IAR_LU_segmented_3step","Myocardium LV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.45,0.45,0.45,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 +"603","IAR_LU_segmented_3step","Myocardium LV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.45,0.45,0.45,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 +"604","IAR_LU_segmented_3step","Myocardium LV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.45,0.45,0.45,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 +"605","IAR_LU_segmented_3step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.45,0.45,0.45,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 +"606","IAR_LU_segmented_3step","myocardium ra",10,0.07,0.07,0.0015,0.120487721848812,0.0474274141714872,0.00151975238387796,0.45,0.45,0.45,0.12292676009053,0.0432757721627324,0.000451902244673881,299,299,299 +"607","IAR_LU_segmented_3step","myocardium ra",30,0.07,0.07,0.0015,0.0794953920685382,0.061701170887567,0.00150135088654914,0.45,0.45,0.45,0.0456443486701864,0.0375179871485709,0.000145531665798083,299,299,299 +"608","IAR_LU_segmented_3step","myocardium ra",50,0.07,0.07,0.0015,0.0733075060795099,0.0668946641370623,0.00150012323561766,0.45,0.45,0.45,0.0253334139193964,0.0313903609700114,8.70510202022302e-05,299,299,299 +"609","IAR_LU_segmented_3step","myocardium ra",100,0.07,0.07,0.0015,0.0706178530327893,0.0704430355516514,0.00149980568738501,0.45,0.45,0.45,0.0111952191897268,0.0218910314178087,4.34633528226247e-05,299,299,299 +"610","IAR_LU_segmented_3step","myocardium ra",200,0.07,0.07,0.0015,0.0700882022200132,0.0711624063551851,0.00149983895305835,0.45,0.45,0.45,0.00530076622265709,0.0136048747365511,2.17222536755328e-05,299,299,299 +"611","IAR_LU_segmented_3step","myocardium RV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.45,0.45,0.45,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 +"612","IAR_LU_segmented_3step","myocardium RV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.45,0.45,0.45,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 +"613","IAR_LU_segmented_3step","myocardium RV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.45,0.45,0.45,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 +"614","IAR_LU_segmented_3step","myocardium RV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.45,0.45,0.45,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 +"615","IAR_LU_segmented_3step","myocardium RV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.45,0.45,0.45,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 +"616","IAR_LU_segmented_3step","pancreas",10,0.15,0.01,0.00129999999999999,0.167876087744328,0.0290823779532465,0.00134733544815708,0.45,0.45,0.45,0.13799145865135,0.0341902078471574,0.000431649675978663,299,299,299 +"617","IAR_LU_segmented_3step","pancreas",30,0.15,0.01,0.00129999999999999,0.141237488923537,0.0173188232665482,0.00133082551202286,0.45,0.45,0.45,0.0599867928753009,0.019107620391262,0.000139043274945453,299,299,299 +"618","IAR_LU_segmented_3step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697382006501,0.013486111899636,0.00132993185853207,0.45,0.45,0.45,0.0376187112217656,0.00990407677614883,8.31806812154377e-05,299,299,299 +"619","IAR_LU_segmented_3step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323640244,0.0115476620033599,0.00132978575875502,0.45,0.45,0.45,0.019514431169108,0.00241787556317726,4.15321586456171e-05,299,299,299 +"620","IAR_LU_segmented_3step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024834420005,0.0112236045300272,0.00132987961477637,0.45,0.45,0.45,0.00985291999759062,0.00107217005947319,2.07569285081239e-05,299,299,299 +"621","IAR_LU_segmented_3step","pericardium",10,0.07,0.00999999999999999,0.003,0.226261705952676,0.0237795489644494,0.00273701082230784,0.45,0.45,0.45,0.232027240194557,0.0336731897895805,0.00088504212200084,299,299,299 +"622","IAR_LU_segmented_3step","pericardium",30,0.07,0.00999999999999999,0.003,0.104611777513852,0.0196860800407026,0.00304612925895245,0.45,0.45,0.45,0.114299017507708,0.0278397487831849,0.00039105626191339,299,299,299 +"623","IAR_LU_segmented_3step","pericardium",50,0.07,0.00999999999999999,0.003,0.0816066699634704,0.0194934718185086,0.00304009046144298,0.45,0.45,0.45,0.0795483736488436,0.0250992834625371,0.000238152536499515,299,299,299 +"624","IAR_LU_segmented_3step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642026522852465,0.0194902394274878,0.00303324788669806,0.45,0.45,0.45,0.0448738243520826,0.0219106454708596,0.000118500604743613,299,299,299 +"625","IAR_LU_segmented_3step","pericardium",200,0.07,0.00999999999999999,0.003,0.058011320597936,0.0143446673004006,0.00303117957616411,0.45,0.45,0.45,0.0239540324724296,0.00980769094663703,5.91963411917844e-05,299,299,299 +"626","IAR_LU_segmented_3step","right kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.45,0.45,0.45,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 +"627","IAR_LU_segmented_3step","right kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.45,0.45,0.45,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 +"628","IAR_LU_segmented_3step","right kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.45,0.45,0.45,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 +"629","IAR_LU_segmented_3step","right kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.45,0.45,0.45,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 +"630","IAR_LU_segmented_3step","right kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.45,0.45,0.45,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 +"631","IAR_LU_segmented_3step","Right kydney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.45,0.45,0.45,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 +"632","IAR_LU_segmented_3step","Right kydney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.45,0.45,0.45,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 +"633","IAR_LU_segmented_3step","Right kydney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.45,0.45,0.45,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 +"634","IAR_LU_segmented_3step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.45,0.45,0.45,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 +"635","IAR_LU_segmented_3step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.45,0.45,0.45,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 +"636","IAR_LU_segmented_3step","small intestine",10,0.69,0.029,0.00131,0.690372912356873,0.0320609988950055,0.00128397090175435,0.45,0.45,0.45,0.111831070379349,0.0149362639486584,0.0010310750352814,299,299,299 +"637","IAR_LU_segmented_3step","small intestine",30,0.69,0.029,0.00131,0.688190453015561,0.0294222458063855,0.00132700874616123,0.45,0.45,0.45,0.0448734379425795,0.00411935738385784,0.000393814792063893,299,299,299 +"638","IAR_LU_segmented_3step","small intestine",50,0.69,0.029,0.00131,0.688983156880932,0.0291736810769727,0.00131674147785283,0.45,0.45,0.45,0.026940651716611,0.00243185875699742,0.000231513954749497,299,299,299 +"639","IAR_LU_segmented_3step","small intestine",100,0.69,0.029,0.00131,0.689404263282608,0.0290661598842716,0.00131311787679812,0.45,0.45,0.45,0.0134745315497881,0.00120919095739295,0.000114727932084214,299,299,299 +"640","IAR_LU_segmented_3step","small intestine",200,0.69,0.029,0.00131,0.68956549319335,0.0290364327596369,0.00131259560662869,0.45,0.45,0.45,0.00673757540024816,0.000603840709655209,5.72226395519967e-05,299,299,299 +"641","IAR_LU_segmented_3step","spleen",10,0.2,0.03,0.00129999999999999,0.225215079244018,0.0408475941745436,0.00131869223769686,0.45,0.45,0.45,0.127374549590845,0.0338321181453734,0.000459161541284809,299,299,299 +"642","IAR_LU_segmented_3step","spleen",30,0.2,0.03,0.00129999999999999,0.203576978248672,0.0339539416807976,0.00130108907088979,0.45,0.45,0.45,0.0443312368356655,0.0176179137760107,0.000147366538355311,299,299,299 +"643","IAR_LU_segmented_3step","spleen",50,0.2,0.03,0.00129999999999999,0.201083539263729,0.0314319351028402,0.00130009526398064,0.45,0.45,0.45,0.026494577015459,0.0097343797369095,8.81308203353264e-05,299,299,299 +"644","IAR_LU_segmented_3step","spleen",100,0.2,0.03,0.00129999999999999,0.200071168884838,0.0303418014706331,0.001299928493873,0.45,0.45,0.45,0.0131754519827359,0.00435303381837777,4.39969723252588e-05,299,299,299 +"645","IAR_LU_segmented_3step","spleen",200,0.2,0.03,0.00129999999999999,0.199885789613915,0.0301070023107681,0.00130002911399547,0.45,0.45,0.45,0.00657087505150261,0.00215139132638464,2.19877335574001e-05,299,299,299 +"646","IAR_LU_segmented_3step","st wall",10,0.3,0.012,0.0015,0.298324938833872,0.0239344077578617,0.00157773932710541,0.45,0.45,0.45,0.16670974705843,0.0264709436324007,0.000614593950499859,299,299,299 +"647","IAR_LU_segmented_3step","st wall",30,0.3,0.012,0.0015,0.283533448008898,0.0146267906410416,0.00155214816764873,0.45,0.45,0.45,0.0667707702398052,0.00784535598914983,0.00019551156370717,299,299,299 +"648","IAR_LU_segmented_3step","st wall",50,0.3,0.012,0.0015,0.282913610595332,0.013356509669699,0.00154952132488848,0.45,0.45,0.45,0.0412585585926891,0.00296623318505363,0.00011668052444887,299,299,299 +"649","IAR_LU_segmented_3step","st wall",100,0.3,0.012,0.0015,0.282957467763654,0.0129414830257878,0.0015486735829641,0.45,0.45,0.45,0.0209295851952189,0.0013127509371942,5.81996976856253e-05,299,299,299 +"650","IAR_LU_segmented_3step","st wall",200,0.3,0.012,0.0015,0.283111796582806,0.0128396431053783,0.00154860379618769,0.45,0.45,0.45,0.0105040225309021,0.000633726038726297,2.90796048726369e-05,299,299,299 +"651","IAR_LU_segmented_3step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.690372912514732,0.0320609988154312,0.00128397090178629,0.45,0.45,0.45,0.11183107022349,0.0149362639063537,0.00103107503559299,299,299,299 +"652","IAR_LU_segmented_3step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190453028525,0.0294222458062765,0.00132700874615982,0.45,0.45,0.45,0.0448734379048314,0.00411935738241528,0.000393814791967693,299,299,299 +"653","IAR_LU_segmented_3step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688983156885389,0.0291736810770989,0.00131674147788471,0.45,0.45,0.45,0.0269406517148853,0.00243185875753381,0.000231513954838717,299,299,299 +"654","IAR_LU_segmented_3step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404263284667,0.0290661598842918,0.00131311787679501,0.45,0.45,0.45,0.0134745315495576,0.00120919095747282,0.000114727932099834,299,299,299 +"655","IAR_LU_segmented_3step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565493192237,0.0290364327597635,0.0013125956066485,0.45,0.45,0.45,0.00673757540531011,0.000603840709857747,5.72226395704009e-05,299,299,299 +"656","IAR_LU_segmented_3step","Vein",10,1,0.1,0.00299999999999999,0.921258295769297,0.0983173943529829,0.000602377539365262,0.45,0.45,0.45,0.0258235874429731,0.00488176105242994,0.000954240122974581,299,299,299 +"657","IAR_LU_segmented_3step","Vein",30,1,0.1,0.00299999999999999,0.976019921590824,0.099482938894657,0.00060239305244365,0.45,0.45,0.45,0.00833093061148117,0.00160385306162368,0.000954268289514292,299,299,299 +"658","IAR_LU_segmented_3step","Vein",50,1,0.1,0.00299999999999999,0.985994865012448,0.0996813363124073,0.000602405603200741,0.45,0.45,0.45,0.00494311872646144,0.000986368952043478,0.000954266532348308,299,299,299 +"659","IAR_LU_segmented_3step","Vein",100,1,0.1,0.00299999999999999,0.993268929663768,0.0998299060636546,0.000602442811986694,0.45,0.45,0.45,0.00241282790462813,0.000513906117480587,0.000954286483399826,299,299,299 +"660","IAR_LU_segmented_3step","Vein",200,1,0.1,0.00299999999999999,0.996782670893754,0.099908161968246,0.000602417326124585,0.45,0.45,0.45,0.00119125287281276,0.00026752645150961,0.000954060412685357,299,299,299 +"661","IAR_LU_subtracted","Artery",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.45,0.45,0.45,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 +"662","IAR_LU_subtracted","Artery",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.45,0.45,0.45,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 +"663","IAR_LU_subtracted","Artery",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.45,0.45,0.45,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 +"664","IAR_LU_subtracted","Artery",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.45,0.45,0.45,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 +"665","IAR_LU_subtracted","Artery",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.45,0.45,0.45,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 +"666","IAR_LU_subtracted","asc lower intestine",10,0.69,0.029,0.00131,0.649071571634918,0.0374643243946707,0.00128397090175435,0.45,0.45,0.45,0.187010914797289,0.0225038113704148,0.0010310750352814,299,299,299 +"667","IAR_LU_subtracted","asc lower intestine",30,0.69,0.029,0.00131,0.681939176199502,0.0302945345470063,0.00132700874616123,0.45,0.45,0.45,0.0603891142506458,0.00615614452380217,0.000393814792063893,299,299,299 +"668","IAR_LU_subtracted","asc lower intestine",50,0.69,0.029,0.00131,0.686488325346289,0.0294805288041424,0.00131674147785283,0.45,0.45,0.45,0.0350265291359118,0.00317717209134006,0.000231513954749497,299,299,299 +"669","IAR_LU_subtracted","asc lower intestine",100,0.69,0.029,0.00131,0.688499643316709,0.0291663813610362,0.00131311787679812,0.45,0.45,0.45,0.0172978748913048,0.00151214165314084,0.000114727932084214,299,299,299 +"670","IAR_LU_subtracted","asc lower intestine",200,0.69,0.029,0.00131,0.689091142138651,0.0290838262951937,0.00131259560662869,0.45,0.45,0.45,0.00862471112757458,0.000746769041441657,5.72226395519967e-05,299,299,299 +"671","IAR_LU_subtracted","Blood RA",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.45,0.45,0.45,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 +"672","IAR_LU_subtracted","Blood RA",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.45,0.45,0.45,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 +"673","IAR_LU_subtracted","Blood RA",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.45,0.45,0.45,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 +"674","IAR_LU_subtracted","Blood RA",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.45,0.45,0.45,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 +"675","IAR_LU_subtracted","Blood RA",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.45,0.45,0.45,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 +"676","IAR_LU_subtracted","Blood RV",10,1,0.1,0.003,0.868045922388077,0.0985985293170771,0.000602377539314825,0.45,0.45,0.45,0.112435321636501,0.00440048348198392,0.000954240122896554,299,299,299 +"677","IAR_LU_subtracted","Blood RV",30,1,0.1,0.003,0.957942477946737,0.0996184418317999,0.000602393052438452,0.45,0.45,0.45,0.033447334956949,0.00133438593586357,0.000954268289514534,299,299,299 +"678","IAR_LU_subtracted","Blood RV",50,1,0.1,0.003,0.974974772688138,0.0997749955437326,0.000602405603200741,0.45,0.45,0.45,0.0196506919536509,0.000799331220799176,0.000954266532348308,299,299,299 +"679","IAR_LU_subtracted","Blood RV",100,1,0.1,0.003,0.987563371296049,0.0998909406438783,0.000602442811986694,0.45,0.45,0.45,0.00967550352526221,0.000393844437553459,0.000954286483399826,299,299,299 +"680","IAR_LU_subtracted","Blood RV",200,1,0.1,0.003,0.993800432483625,0.0999475578955035,0.000602417326124585,0.45,0.45,0.45,0.00480131473462409,0.000192683440854932,0.000954060412685357,299,299,299 +"681","IAR_LU_subtracted","desc lower intestine",10,0.69,0.029,0.00131,0.649071571625974,0.0374643243918038,0.0012839709016351,0.45,0.45,0.45,0.187010914855941,0.0225038113819589,0.0010310750351664,299,299,299 +"682","IAR_LU_subtracted","desc lower intestine",30,0.69,0.029,0.00131,0.681939176203194,0.030294534546328,0.00132700874615634,0.45,0.45,0.45,0.0603891142121709,0.00615614452364872,0.000393814791852722,299,299,299 +"683","IAR_LU_subtracted","desc lower intestine",50,0.69,0.029,0.00131,0.686488325351207,0.0294805288036491,0.00131674147781799,0.45,0.45,0.45,0.0350265291360364,0.00317717209129982,0.000231513954746746,299,299,299 +"684","IAR_LU_subtracted","desc lower intestine",100,0.69,0.029,0.00131,0.688499643317253,0.029166381360917,0.00131311787679321,0.45,0.45,0.45,0.0172978748932321,0.00151214165342676,0.0001147279321005,299,299,299 +"685","IAR_LU_subtracted","desc lower intestine",200,0.69,0.029,0.00131,0.689091142140118,0.02908382629515,0.00131259560662137,0.45,0.45,0.45,0.00862471112793025,0.000746769041292778,5.72226395589749e-05,299,299,299 +"686","IAR_LU_subtracted","esophagus",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.45,0.45,0.45,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 +"687","IAR_LU_subtracted","esophagus",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.45,0.45,0.45,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 +"688","IAR_LU_subtracted","esophagus",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.45,0.45,0.45,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 +"689","IAR_LU_subtracted","esophagus",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.45,0.45,0.45,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 +"690","IAR_LU_subtracted","esophagus",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.45,0.45,0.45,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 +"691","IAR_LU_subtracted","esophagus cont",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.45,0.45,0.45,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 +"692","IAR_LU_subtracted","esophagus cont",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.45,0.45,0.45,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 +"693","IAR_LU_subtracted","esophagus cont",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.45,0.45,0.45,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 +"694","IAR_LU_subtracted","esophagus cont",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.45,0.45,0.45,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 +"695","IAR_LU_subtracted","esophagus cont",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.45,0.45,0.45,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 +"696","IAR_LU_subtracted","Left kidney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.45,0.45,0.45,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 +"697","IAR_LU_subtracted","Left kidney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.45,0.45,0.45,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 +"698","IAR_LU_subtracted","Left kidney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.45,0.45,0.45,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 +"699","IAR_LU_subtracted","Left kidney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.45,0.45,0.45,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 +"700","IAR_LU_subtracted","Left kidney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.45,0.45,0.45,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 +"701","IAR_LU_subtracted","left kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.45,0.45,0.45,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 +"702","IAR_LU_subtracted","left kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.45,0.45,0.45,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 +"703","IAR_LU_subtracted","left kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.45,0.45,0.45,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 +"704","IAR_LU_subtracted","left kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.45,0.45,0.45,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 +"705","IAR_LU_subtracted","left kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.45,0.45,0.45,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 +"706","IAR_LU_subtracted","Liver",10,0.11,0.1,0.0015,0.121102796262656,0.0634637023292287,0.00152084809188092,0.45,0.45,0.45,0.130105575340284,0.0425007401607272,0.000472993211159269,299,299,299 +"707","IAR_LU_subtracted","Liver",30,0.11,0.1,0.0015,0.0977558608603766,0.0724781854232728,0.00150154707211704,0.45,0.45,0.45,0.0613502493964698,0.034666306804501,0.000152137743344338,299,299,299 +"708","IAR_LU_subtracted","Liver",50,0.11,0.1,0.0015,0.100463203481405,0.0787945272430514,0.00150017699860271,0.45,0.45,0.45,0.0409980511902564,0.0284510570921832,9.09784274199351e-05,299,299,299 +"709","IAR_LU_subtracted","Liver",100,0.11,0.1,0.0015,0.105490313170251,0.0868785527973936,0.00149980895512081,0.45,0.45,0.45,0.0208767035787053,0.0189325400054299,4.54189474712779e-05,299,299,299 +"710","IAR_LU_subtracted","Liver",200,0.11,0.1,0.0015,0.107911734542008,0.0926665405232451,0.00149983471124947,0.45,0.45,0.45,0.010493763751019,0.0109829786476278,2.26988859055568e-05,299,299,299 +"711","IAR_LU_subtracted","Myocardium LV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.45,0.45,0.45,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 +"712","IAR_LU_subtracted","Myocardium LV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.45,0.45,0.45,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 +"713","IAR_LU_subtracted","Myocardium LV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.45,0.45,0.45,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 +"714","IAR_LU_subtracted","Myocardium LV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.45,0.45,0.45,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 +"715","IAR_LU_subtracted","Myocardium LV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.45,0.45,0.45,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 +"716","IAR_LU_subtracted","myocardium ra",10,0.07,0.07,0.0015,0.10186810798305,0.0606534117311725,0.00151975238387796,0.45,0.45,0.45,0.120898300340911,0.0434847654606971,0.000451902244673881,299,299,299 +"717","IAR_LU_subtracted","myocardium ra",30,0.07,0.07,0.0015,0.0669092818312048,0.0629092386288161,0.00150135088654914,0.45,0.45,0.45,0.05467533607346,0.0390189481601652,0.000145531665798083,299,299,299 +"718","IAR_LU_subtracted","myocardium ra",50,0.07,0.07,0.0015,0.0649047689569669,0.0657124808261645,0.00150012323561766,0.45,0.45,0.45,0.0373547816491121,0.0345082797190195,8.70510202022302e-05,299,299,299 +"719","IAR_LU_subtracted","myocardium ra",100,0.07,0.07,0.0015,0.0673614139938931,0.0697335469292888,0.00149980568738501,0.45,0.45,0.45,0.0196998246819315,0.0271665305647647,4.34633528226247e-05,299,299,299 +"720","IAR_LU_subtracted","myocardium ra",200,0.07,0.07,0.0015,0.0692312276466145,0.0716133033330059,0.00149983895305835,0.45,0.45,0.45,0.00928973196376031,0.0191722698037651,2.17222536755328e-05,299,299,299 +"721","IAR_LU_subtracted","myocardium RV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.45,0.45,0.45,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 +"722","IAR_LU_subtracted","myocardium RV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.45,0.45,0.45,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 +"723","IAR_LU_subtracted","myocardium RV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.45,0.45,0.45,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 +"724","IAR_LU_subtracted","myocardium RV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.45,0.45,0.45,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 +"725","IAR_LU_subtracted","myocardium RV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.45,0.45,0.45,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 +"726","IAR_LU_subtracted","pancreas",10,0.15,0.01,0.00129999999999999,0.145973572791277,0.0418322359345869,0.00134733544815708,0.45,0.45,0.45,0.133409111984285,0.0427515729870689,0.000431649675978663,299,299,299 +"727","IAR_LU_subtracted","pancreas",30,0.15,0.01,0.00129999999999999,0.128614984268459,0.0196787383317491,0.00133082551202286,0.45,0.45,0.45,0.0591082064465484,0.0231057149671265,0.000139043274945453,299,299,299 +"728","IAR_LU_subtracted","pancreas",50,0.15,0.01,0.00129999999999999,0.129890010988128,0.014418840532864,0.00132993185853207,0.45,0.45,0.45,0.0358391575513234,0.0125046852807563,8.31806812154377e-05,299,299,299 +"729","IAR_LU_subtracted","pancreas",100,0.15,0.01,0.00129999999999999,0.130754692398513,0.0119016729036151,0.00132978575875502,0.45,0.45,0.45,0.0179785444573827,0.00250589698561192,4.15321586456171e-05,299,299,299 +"730","IAR_LU_subtracted","pancreas",200,0.15,0.01,0.00129999999999999,0.131107657691518,0.0115757199693789,0.00132987961477637,0.45,0.45,0.45,0.00899900314885932,0.00109942059007681,2.07569285081239e-05,299,299,299 +"731","IAR_LU_subtracted","pericardium",10,0.07,0.00999999999999999,0.003,0.182005007344476,0.0449399513343394,0.00273701082230784,0.45,0.45,0.45,0.199393895082264,0.0446081430054895,0.00088504212200084,299,299,299 +"732","IAR_LU_subtracted","pericardium",30,0.07,0.00999999999999999,0.003,0.0767264387057665,0.0483395662495535,0.00304612925895245,0.45,0.45,0.45,0.0884446645225644,0.0443972230787564,0.00039105626191339,299,299,299 +"733","IAR_LU_subtracted","pericardium",50,0.07,0.00999999999999999,0.003,0.060765317251112,0.0422176464039951,0.00304009046144298,0.45,0.45,0.45,0.0613396076316471,0.0421072613162647,0.000238152536499515,299,299,299 +"734","IAR_LU_subtracted","pericardium",100,0.07,0.00999999999999999,0.003,0.0523575780666355,0.0289300542806783,0.00303324788669806,0.45,0.45,0.45,0.0371516507191181,0.0324742655660579,0.000118500604743613,299,299,299 +"735","IAR_LU_subtracted","pericardium",200,0.07,0.00999999999999999,0.003,0.0514683102067133,0.0168738578171833,0.00303117957616411,0.45,0.45,0.45,0.0206465635019397,0.0152473956782957,5.91963411917844e-05,299,299,299 +"736","IAR_LU_subtracted","right kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.45,0.45,0.45,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 +"737","IAR_LU_subtracted","right kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.45,0.45,0.45,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 +"738","IAR_LU_subtracted","right kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.45,0.45,0.45,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 +"739","IAR_LU_subtracted","right kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.45,0.45,0.45,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 +"740","IAR_LU_subtracted","right kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.45,0.45,0.45,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 +"741","IAR_LU_subtracted","Right kydney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.45,0.45,0.45,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 +"742","IAR_LU_subtracted","Right kydney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.45,0.45,0.45,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 +"743","IAR_LU_subtracted","Right kydney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.45,0.45,0.45,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 +"744","IAR_LU_subtracted","Right kydney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.45,0.45,0.45,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 +"745","IAR_LU_subtracted","Right kydney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.45,0.45,0.45,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 +"746","IAR_LU_subtracted","small intestine",10,0.69,0.029,0.00131,0.649071571639429,0.037464324397123,0.00128397090175435,0.45,0.45,0.45,0.187010914793362,0.0225038113743857,0.0010310750352814,299,299,299 +"747","IAR_LU_subtracted","small intestine",30,0.69,0.029,0.00131,0.681939176198207,0.0302945345465633,0.00132700874616123,0.45,0.45,0.45,0.0603891142492399,0.00615614452326418,0.000393814792063893,299,299,299 +"748","IAR_LU_subtracted","small intestine",50,0.69,0.029,0.00131,0.686488325345437,0.0294805288039652,0.00131674147785283,0.45,0.45,0.45,0.0350265291349697,0.00317717209152528,0.000231513954749497,299,299,299 +"749","IAR_LU_subtracted","small intestine",100,0.69,0.029,0.00131,0.688499643316856,0.029166381361068,0.00131311787679812,0.45,0.45,0.45,0.0172978748915505,0.00151214165319551,0.000114727932084214,299,299,299 +"750","IAR_LU_subtracted","small intestine",200,0.69,0.029,0.00131,0.689091142138875,0.0290838262952531,0.00131259560662869,0.45,0.45,0.45,0.00862471112761152,0.000746769041454522,5.72226395519967e-05,299,299,299 +"751","IAR_LU_subtracted","spleen",10,0.2,0.03,0.00129999999999999,0.192961858260559,0.0492597470738909,0.00131869223769686,0.45,0.45,0.45,0.14672006477452,0.0390143038859564,0.000459161541284809,299,299,299 +"752","IAR_LU_subtracted","spleen",30,0.2,0.03,0.00129999999999999,0.195619974063773,0.0378660228770973,0.00130108907088979,0.45,0.45,0.45,0.0582480816426133,0.0230396606877878,0.000147366538355311,299,299,299 +"753","IAR_LU_subtracted","spleen",50,0.2,0.03,0.00129999999999999,0.198125993490742,0.0334346769905656,0.00130009526398064,0.45,0.45,0.45,0.033860026554998,0.0141196943300376,8.81308203353264e-05,299,299,299 +"754","IAR_LU_subtracted","spleen",100,0.2,0.03,0.00129999999999999,0.199199769344964,0.0308742355909984,0.001299928493873,0.45,0.45,0.45,0.0167658026535138,0.00575644302154389,4.39969723252588e-05,299,299,299 +"755","IAR_LU_subtracted","spleen",200,0.2,0.03,0.00129999999999999,0.199585281953296,0.0302681533889609,0.00130002911399547,0.45,0.45,0.45,0.00835864747465978,0.00272874833953629,2.19877335574001e-05,299,299,299 +"756","IAR_LU_subtracted","st wall",10,0.3,0.012,0.0015,0.262694585680195,0.0319185653801386,0.00157773932710541,0.45,0.45,0.45,0.172890946488421,0.0349074029422235,0.000614593950499859,299,299,299 +"757","IAR_LU_subtracted","st wall",30,0.3,0.012,0.0015,0.271112584934838,0.0157552797151743,0.00155214816764873,0.45,0.45,0.45,0.0670076659202155,0.0109054102082447,0.00019551156370717,299,299,299 +"758","IAR_LU_subtracted","st wall",50,0.3,0.012,0.0015,0.273986799953669,0.013806573219354,0.00154952132488848,0.45,0.45,0.45,0.0398746950657118,0.00322902951392831,0.00011668052444887,299,299,299 +"759","IAR_LU_subtracted","st wall",100,0.3,0.012,0.0015,0.275412083141614,0.0133114999997825,0.0015486735829641,0.45,0.45,0.45,0.0199011338224045,0.00132338051992791,5.81996976856253e-05,299,299,299 +"760","IAR_LU_subtracted","st wall",200,0.3,0.012,0.0015,0.275903272911037,0.0131993048909566,0.00154860379618769,0.45,0.45,0.45,0.00994694081242093,0.000634013714884041,2.90796048726369e-05,299,299,299 +"761","IAR_LU_subtracted","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.649071571567166,0.037464324385318,0.00128397090178629,0.45,0.45,0.45,0.187010915027799,0.0225038113468096,0.00103107503559299,299,299,299 +"762","IAR_LU_subtracted","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.681939176203752,0.0302945345463009,0.00132700874615982,0.45,0.45,0.45,0.0603891142173648,0.00615614452231295,0.000393814791967693,299,299,299 +"763","IAR_LU_subtracted","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.686488325340787,0.0294805288049083,0.00131674147788471,0.45,0.45,0.45,0.0350265291502769,0.00317717209269235,0.000231513954838717,299,299,299 +"764","IAR_LU_subtracted","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.688499643316927,0.0291663813609283,0.00131311787679501,0.45,0.45,0.45,0.0172978748928733,0.00151214165340536,0.000114727932099834,299,299,299 +"765","IAR_LU_subtracted","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689091142135544,0.0290838262954833,0.0013125956066485,0.45,0.45,0.45,0.0086247111300983,0.000746769041458226,5.72226395704009e-05,299,299,299 +"766","IAR_LU_subtracted","Vein",10,1,0.1,0.00299999999999999,0.868045922383658,0.0985985293150582,0.000602377539365262,0.45,0.45,0.45,0.112435321603995,0.00440048348201647,0.000954240122974581,299,299,299 +"767","IAR_LU_subtracted","Vein",30,1,0.1,0.00299999999999999,0.957942477946852,0.0996184418326707,0.00060239305244365,0.45,0.45,0.45,0.0334473349561743,0.00133438593435031,0.000954268289514292,299,299,299 +"768","IAR_LU_subtracted","Vein",50,1,0.1,0.00299999999999999,0.974974772688412,0.0997749955436001,0.000602405603200741,0.45,0.45,0.45,0.0196506919525737,0.000799331221169125,0.000954266532348308,299,299,299 +"769","IAR_LU_subtracted","Vein",100,1,0.1,0.00299999999999999,0.987563371296023,0.0998909406437419,0.000602442811986694,0.45,0.45,0.45,0.00967550352550441,0.000393844437618856,0.000954286483399826,299,299,299 +"770","IAR_LU_subtracted","Vein",200,1,0.1,0.00299999999999999,0.993800432483541,0.0999475578951229,0.000602417326124585,0.45,0.45,0.45,0.00480131473453758,0.000192683440678621,0.000954060412685357,299,299,299 +"771","OGC_AmsterdamUMC_Bayesian_biexp","Artery",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.45,0.45,0.45,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 +"772","OGC_AmsterdamUMC_Bayesian_biexp","Artery",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.45,0.45,0.45,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 +"773","OGC_AmsterdamUMC_Bayesian_biexp","Artery",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.45,0.45,0.45,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 +"774","OGC_AmsterdamUMC_Bayesian_biexp","Artery",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.45,0.45,0.45,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 +"775","OGC_AmsterdamUMC_Bayesian_biexp","Artery",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.45,0.45,0.45,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 +"776","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694246808778769,0.0332124281614618,0.00115662969455558,0.45,0.45,0.45,0.110159746203623,0.0193048930533793,0.000818020501222016,299,299,299 +"777","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690033147644459,0.0293545237816436,0.00129905886269543,0.45,0.45,0.45,0.036083088630791,0.00362951393892406,0.000284878762206832,299,299,299 +"778","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.689921467398159,0.029138651533785,0.00130314910724909,0.45,0.45,0.45,0.0213772215849651,0.00213834289461457,0.00016610479346135,299,299,299 +"779","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689705414601575,0.0291477643601371,0.0013080534895242,0.45,0.45,0.45,0.0108249806858387,0.00129122051220513,8.27804115283052e-05,299,299,299 +"780","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689676530218629,0.0290763054841384,0.00130801784811619,0.45,0.45,0.45,0.00583323341091172,0.000767401324572525,4.21804967296496e-05,299,299,299 +"781","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.45,0.45,0.45,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 +"782","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.45,0.45,0.45,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 +"783","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.45,0.45,0.45,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 +"784","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.45,0.45,0.45,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 +"785","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.45,0.45,0.45,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 +"786","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",10,1,0.1,0.003,0.914297401004746,0.124952391582887,0.000341385315837157,0.45,0.45,0.45,0.0338704200880721,0.0264919309675768,0.000759817497225985,299,299,299 +"787","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",30,1,0.1,0.003,0.973099598376866,0.107393352119341,0.000232219992515836,0.45,0.45,0.45,0.00780473426493649,0.00748303413275565,0.000430417814946813,299,299,299 +"788","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",50,1,0.1,0.003,0.984110980162476,0.104286733344672,0.000213374085275976,0.45,0.45,0.45,0.00467665532925233,0.00434422535404416,0.000410079794992667,299,299,299 +"789","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",100,1,0.1,0.003,0.992309672842335,0.102048011852143,0.000179453249523488,0.45,0.45,0.45,0.00230376286511362,0.00212585312384098,0.0003773364651911,299,299,299 +"790","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",200,1,0.1,0.003,0.996293917212231,0.100989102049737,0.000153682190571484,0.45,0.45,0.45,0.0011463180878882,0.00105305653525395,0.000356019214536034,299,299,299 +"791","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694246845378351,0.0332125427670004,0.00115663122095504,0.45,0.45,0.45,0.110160150700988,0.0193048206014305,0.000818021742499563,299,299,299 +"792","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690033102633023,0.0293545254824597,0.00129905896131927,0.45,0.45,0.45,0.0360830639131271,0.00362951206875517,0.000284879125083764,299,299,299 +"793","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689855673695442,0.0291428811190877,0.00130360554367507,0.45,0.45,0.45,0.0213154090326844,0.0021325877974294,0.000165776474780529,299,299,299 +"794","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689705423019645,0.029147764170286,0.0013080534599478,0.45,0.45,0.45,0.0108249733952305,0.00129122098709657,8.27803296124957e-05,299,299,299 +"795","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689676538098746,0.0290763056742895,0.00130801775791647,0.45,0.45,0.45,0.00583319664850218,0.000767398183974445,4.21801838019575e-05,299,299,299 +"796","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.45,0.45,0.45,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 +"797","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.45,0.45,0.45,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 +"798","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.45,0.45,0.45,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 +"799","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.45,0.45,0.45,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 +"800","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.45,0.45,0.45,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 +"801","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.45,0.45,0.45,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 +"802","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.45,0.45,0.45,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 +"803","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.45,0.45,0.45,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 +"804","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.45,0.45,0.45,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 +"805","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.45,0.45,0.45,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 +"806","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.45,0.45,0.45,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 +"807","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.45,0.45,0.45,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 +"808","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.45,0.45,0.45,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 +"809","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.45,0.45,0.45,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 +"810","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.45,0.45,0.45,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 +"811","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.45,0.45,0.45,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 +"812","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.45,0.45,0.45,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 +"813","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.45,0.45,0.45,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 +"814","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.45,0.45,0.45,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 +"815","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.45,0.45,0.45,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 +"816","OGC_AmsterdamUMC_Bayesian_biexp","Liver",10,0.11,0.1,0.0015,0.170376564882108,0.469616209489762,0.00136302767202211,0.45,0.45,0.45,0.138211368776015,0.731976840414104,0.000361913909318564,299,299,299 +"817","OGC_AmsterdamUMC_Bayesian_biexp","Liver",30,0.11,0.1,0.0015,0.11810940657777,0.227068026042997,0.0014860402075791,0.45,0.45,0.45,0.0342593875584427,0.390847594433051,9.96091018932598e-05,299,299,299 +"818","OGC_AmsterdamUMC_Bayesian_biexp","Liver",50,0.11,0.1,0.0015,0.112169947194152,0.131862486304358,0.00149587941679805,0.45,0.45,0.45,0.0153976558796226,0.168625986104975,5.11568481112502e-05,299,299,299 +"819","OGC_AmsterdamUMC_Bayesian_biexp","Liver",100,0.11,0.1,0.0015,0.110516960663717,0.104566165417941,0.00149817275530986,0.45,0.45,0.45,0.00752550525764433,0.0281966308117207,2.46815644447154e-05,299,299,299 +"820","OGC_AmsterdamUMC_Bayesian_biexp","Liver",200,0.11,0.1,0.0015,0.110097109059224,0.101175495734664,0.00149922432315367,0.45,0.45,0.45,0.00376626520198992,0.0116170123481358,1.22063280870859e-05,299,299,299 +"821","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.45,0.45,0.45,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 +"822","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.45,0.45,0.45,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 +"823","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.45,0.45,0.45,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 +"824","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.45,0.45,0.45,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 +"825","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.45,0.45,0.45,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 +"826","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",10,0.07,0.07,0.0015,0.132992854081483,0.461997483376288,0.00136831570972518,0.45,0.45,0.45,0.140522743944648,0.734010313718581,0.000346091519424476,299,299,299 +"827","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884517939449098,0.289658964780844,0.0014676259819499,0.45,0.45,0.45,0.0508441257041168,0.529373222441277,0.000119387045545757,299,299,299 +"828","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0761265927150077,0.156862196421825,0.00148987685522847,0.45,0.45,0.45,0.0242266882566584,0.309458478938769,6.34852979630936e-05,299,299,299 +"829","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0709638888897991,0.0784496324481009,0.00149743190633742,0.45,0.45,0.45,0.00811747399978573,0.0469212398862685,2.52774164583531e-05,299,299,299 +"830","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701854186634233,0.0715583354856421,0.00149905296281753,0.45,0.45,0.45,0.00403493989933669,0.0129671102252917,1.23364517371494e-05,299,299,299 +"831","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.45,0.45,0.45,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 +"832","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.45,0.45,0.45,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 +"833","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.45,0.45,0.45,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 +"834","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.45,0.45,0.45,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 +"835","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.45,0.45,0.45,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 +"836","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.177581724321138,0.43065718969884,0.00125654974398315,0.45,0.45,0.45,0.165637117410062,0.745081523961432,0.000402663506351594,299,299,299 +"837","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.176565399528607,0.0605254346275223,0.00126098577319189,0.45,0.45,0.45,0.0941306062972586,0.26112658574032,0.000185523030805802,299,299,299 +"838","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.169797776388179,0.0172281215928433,0.00126914664260273,0.45,0.45,0.45,0.0691911662849515,0.0530402156979167,0.000129620496323605,299,299,299 +"839","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156843915754002,0.0102744645346462,0.00128825630219321,0.45,0.45,0.45,0.0330983274466555,0.00280593527748534,6.19639236378919e-05,299,299,299 +"840","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151525028767084,0.0100578225668435,0.00129696544759154,0.45,0.45,0.45,0.0150042143805674,0.00127728832085491,2.90654102466401e-05,299,299,299 +"841","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.211255537581016,0.249229775871576,0.00250125413556506,0.45,0.45,0.45,0.261211569379197,0.559657730577179,0.000882896050374514,299,299,299 +"842","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.129163583048985,0.267009677446907,0.00288255604574022,0.45,0.45,0.45,0.17935605322893,0.595048801434633,0.000417501553796525,299,299,299 +"843","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.117317522254229,0.229011081795502,0.0029314606487806,0.45,0.45,0.45,0.148570783679304,0.554095364539563,0.000298907038283006,299,299,299 +"844","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.116118730669429,0.0999844203861992,0.00294503908419238,0.45,0.45,0.45,0.115927313526193,0.331589357967683,0.000200447722297107,299,299,299 +"845","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0985240401785247,0.0153444939154568,0.00296476284362889,0.45,0.45,0.45,0.0771271956803151,0.0234254542116207,0.000123398388298247,299,299,299 +"846","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.45,0.45,0.45,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 +"847","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.45,0.45,0.45,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 +"848","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.45,0.45,0.45,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 +"849","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.45,0.45,0.45,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 +"850","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.45,0.45,0.45,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 +"851","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.45,0.45,0.45,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 +"852","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.45,0.45,0.45,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 +"853","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.45,0.45,0.45,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 +"854","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.45,0.45,0.45,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 +"855","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.45,0.45,0.45,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 +"856","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",10,0.69,0.029,0.00131,0.694246360658053,0.0332125553132146,0.00115663016547754,0.45,0.45,0.45,0.110159259316649,0.0193048143897897,0.000818020512686296,299,299,299 +"857","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",30,0.69,0.029,0.00131,0.690033088055209,0.0293545333482025,0.00129905906199326,0.45,0.45,0.45,0.0360830894438484,0.00362952375376617,0.000284878708553556,299,299,299 +"858","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",50,0.69,0.029,0.00131,0.689921486203945,0.0291386488646149,0.00130314885737654,0.45,0.45,0.45,0.0213772482384634,0.00213834833191147,0.00016610478799147,299,299,299 +"859","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",100,0.69,0.029,0.00131,0.689787379406689,0.0291336831256088,0.00130679586340067,0.45,0.45,0.45,0.0108805102554908,0.0012833541569494,8.28438476605137e-05,299,299,299 +"860","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",200,0.69,0.029,0.00131,0.689676541245555,0.0290763054757247,0.00130801778345195,0.45,0.45,0.45,0.00583322921862559,0.000767400913297244,4.21803596038404e-05,299,299,299 +"861","OGC_AmsterdamUMC_Bayesian_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.252378410002267,0.233718646050262,0.00119059786898657,0.45,0.45,0.45,0.143855248399429,0.502476062586288,0.000408972864282049,299,299,299 +"862","OGC_AmsterdamUMC_Bayesian_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206891201646101,0.0391651098808692,0.00128264117770245,0.45,0.45,0.45,0.0390714113206133,0.0577794578547973,0.000116384817598468,299,299,299 +"863","OGC_AmsterdamUMC_Bayesian_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202242372508398,0.0312880376598558,0.00129258240323802,0.45,0.45,0.45,0.0221743225017492,0.00880333853639113,6.60228502625122e-05,299,299,299 +"864","OGC_AmsterdamUMC_Bayesian_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200493108698575,0.0302484422333146,0.00129737230400495,0.45,0.45,0.45,0.0107432935350786,0.00383175326077784,3.20545640691115e-05,299,299,299 +"865","OGC_AmsterdamUMC_Bayesian_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.2000920443937,0.0300527202364231,0.00129896878525322,0.45,0.45,0.45,0.00532447796635576,0.00186704596028927,1.58938321517461e-05,299,299,299 +"866","OGC_AmsterdamUMC_Bayesian_biexp","st wall",10,0.3,0.012,0.0015,0.342171653732148,0.169021111769008,0.00137658979771026,0.45,0.45,0.45,0.209121239054118,0.464911517650575,0.000634230099480539,299,299,299 +"867","OGC_AmsterdamUMC_Bayesian_biexp","st wall",30,0.3,0.012,0.0015,0.322622542108482,0.0163119559447378,0.00144210772050894,0.45,0.45,0.45,0.0995249294874889,0.0358945966856197,0.000264951211719173,299,299,299 +"868","OGC_AmsterdamUMC_Bayesian_biexp","st wall",50,0.3,0.012,0.0015,0.307380239713298,0.0123840142302169,0.00147963560215619,0.45,0.45,0.45,0.0543986230945646,0.00311908608212234,0.000143578936921841,299,299,299 +"869","OGC_AmsterdamUMC_Bayesian_biexp","st wall",100,0.3,0.012,0.0015,0.301693691231062,0.0120871111509783,0.00149429686700861,0.45,0.45,0.45,0.0263415216139092,0.00143226934515234,6.96702203754273e-05,299,299,299 +"870","OGC_AmsterdamUMC_Bayesian_biexp","st wall",200,0.3,0.012,0.0015,0.300260349126461,0.0120289058061544,0.00149847883633801,0.45,0.45,0.45,0.0131909252941061,0.000701134900800486,3.49408339753062e-05,299,299,299 +"871","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694259683027242,0.0332121262581744,0.00115651817908036,0.45,0.45,0.45,0.11017656415909,0.0193052051533991,0.000818178301615205,299,299,299 +"872","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.690033167699518,0.0293545217522552,0.00129905853784076,0.45,0.45,0.45,0.036083058729084,0.00362951389776666,0.000284878311839241,299,299,299 +"873","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689921506074573,0.0291386465936453,0.0013031486571486,0.45,0.45,0.45,0.0213772426772885,0.00213834747992634,0.000166104827306889,299,299,299 +"874","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689705435319841,0.0291477639759397,0.00130805336484234,0.45,0.45,0.45,0.0108250110017957,0.0012912220707904,8.27806112880171e-05,299,299,299 +"875","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689703364774609,0.0290729200975083,0.0013079275799941,0.45,0.45,0.45,0.0057973136397047,0.000764637348817088,4.20153078500508e-05,299,299,299 +"876","OGC_AmsterdamUMC_Bayesian_biexp","Vein",10,1,0.1,0.00299999999999999,0.914295867026791,0.124952449208066,0.000341386376995397,0.45,0.45,0.45,0.033870556357192,0.0264921360903649,0.000759818054968653,299,299,299 +"877","OGC_AmsterdamUMC_Bayesian_biexp","Vein",30,1,0.1,0.00299999999999999,0.973099780568972,0.107393408056422,0.000232219949442385,0.45,0.45,0.45,0.00780476201787954,0.00748295051395532,0.000430417878162574,299,299,299 +"878","OGC_AmsterdamUMC_Bayesian_biexp","Vein",50,1,0.1,0.00299999999999999,0.984111118518383,0.104286700344162,0.000213374328770124,0.45,0.45,0.45,0.00467685321257514,0.00434424421111718,0.000410079679040286,299,299,299 +"879","OGC_AmsterdamUMC_Bayesian_biexp","Vein",100,1,0.1,0.00299999999999999,0.992309696276133,0.102047954866857,0.000179453478078494,0.45,0.45,0.45,0.00230377417751352,0.00212580311791353,0.000377336365917817,299,299,299 +"880","OGC_AmsterdamUMC_Bayesian_biexp","Vein",200,1,0.1,0.00299999999999999,0.996293961868916,0.100989052773125,0.000153682306312602,0.45,0.45,0.45,0.00114635413380225,0.0010530293970243,0.000356019850089775,299,299,299 +"881","OGC_AmsterdamUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.45,0.45,0.45,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 +"882","OGC_AmsterdamUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.45,0.45,0.45,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 +"883","OGC_AmsterdamUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.45,0.45,0.45,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 +"884","OGC_AmsterdamUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.45,0.45,0.45,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 +"885","OGC_AmsterdamUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.45,0.45,0.45,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 +"886","OGC_AmsterdamUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694830688531838,0.0326249863604666,0.00114655138542055,0.45,0.45,0.45,0.0978007798077074,0.0170421542867141,0.00074426190292453,299,299,299 +"887","OGC_AmsterdamUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.689570850554634,0.0293846834593745,0.00130099623058546,0.45,0.45,0.45,0.0358332140742521,0.00328309904723427,0.000279782024748395,299,299,299 +"888","OGC_AmsterdamUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.68982569362266,0.0291500977518991,0.00130432508924539,0.45,0.45,0.45,0.0213881941208833,0.0019024829657527,0.000166083415100297,299,299,299 +"889","OGC_AmsterdamUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689946565171096,0.0290467790735175,0.00130699632921778,0.45,0.45,0.45,0.0106631625297783,0.000938640327346139,8.26562863313582e-05,299,299,299 +"890","OGC_AmsterdamUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689981335122987,0.0290165319422673,0.00130845678093965,0.45,0.45,0.45,0.00532704595643484,0.00046772177618261,4.12831236659919e-05,299,299,299 +"891","OGC_AmsterdamUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.45,0.45,0.45,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 +"892","OGC_AmsterdamUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.45,0.45,0.45,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 +"893","OGC_AmsterdamUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.45,0.45,0.45,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 +"894","OGC_AmsterdamUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.45,0.45,0.45,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 +"895","OGC_AmsterdamUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.45,0.45,0.45,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 +"896","OGC_AmsterdamUMC_biexp","Blood RV",10,1,0.1,0.003,0.916551204477061,0.122369011950598,0.000273066803012016,0.45,0.45,0.45,0.0227251914120853,0.0234330403592379,0.000525988248231766,299,299,299 +"897","OGC_AmsterdamUMC_biexp","Blood RV",30,1,0.1,0.003,0.973161260787835,0.106546698466594,0.000228130843033075,0.45,0.45,0.45,0.0078285922138933,0.00645782890351296,0.000431214372101425,299,299,299 +"898","OGC_AmsterdamUMC_biexp","Blood RV",50,1,0.1,0.003,0.984189738173453,0.103791606376294,0.000208198245221205,0.45,0.45,0.45,0.00468303351061325,0.00375278684341751,0.000406133457828171,299,299,299 +"899","OGC_AmsterdamUMC_biexp","Blood RV",100,1,0.1,0.003,0.992359928406606,0.101811171259488,0.000175728107883654,0.45,0.45,0.45,0.00229602425602299,0.00183520810771947,0.000373114811370238,299,299,299 +"900","OGC_AmsterdamUMC_biexp","Blood RV",200,1,0.1,0.003,0.996323154043503,0.100873285154226,0.000149761334226485,0.45,0.45,0.45,0.0011362202179319,0.000908483065035726,0.000352386145881468,299,299,299 +"901","OGC_AmsterdamUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694830688306291,0.0326249863621617,0.00114655138827578,0.45,0.45,0.45,0.0978007793640295,0.0170421542714422,0.000744261900488319,299,299,299 +"902","OGC_AmsterdamUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.689570850526864,0.029384683464532,0.0013009962306133,0.45,0.45,0.45,0.0358332145166679,0.00328309907506283,0.000279782027560119,299,299,299 +"903","OGC_AmsterdamUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689825693551577,0.0291500977561171,0.00130432508986481,0.45,0.45,0.45,0.0213881941750843,0.00190248296579918,0.00016608341577808,299,299,299 +"904","OGC_AmsterdamUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689946565084964,0.0290467790793416,0.00130699633001302,0.45,0.45,0.45,0.0106631624492495,0.000938640323571297,8.26562859037306e-05,299,299,299 +"905","OGC_AmsterdamUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689981335136009,0.0290165319415151,0.00130845678084101,0.45,0.45,0.45,0.0053270460155283,0.000467721779019385,4.12831240551719e-05,299,299,299 +"906","OGC_AmsterdamUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.45,0.45,0.45,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 +"907","OGC_AmsterdamUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.45,0.45,0.45,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 +"908","OGC_AmsterdamUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.45,0.45,0.45,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 +"909","OGC_AmsterdamUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.45,0.45,0.45,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 +"910","OGC_AmsterdamUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.45,0.45,0.45,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 +"911","OGC_AmsterdamUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.45,0.45,0.45,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 +"912","OGC_AmsterdamUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.45,0.45,0.45,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 +"913","OGC_AmsterdamUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.45,0.45,0.45,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 +"914","OGC_AmsterdamUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.45,0.45,0.45,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 +"915","OGC_AmsterdamUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.45,0.45,0.45,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 +"916","OGC_AmsterdamUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.45,0.45,0.45,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 +"917","OGC_AmsterdamUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.45,0.45,0.45,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 +"918","OGC_AmsterdamUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.45,0.45,0.45,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 +"919","OGC_AmsterdamUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.45,0.45,0.45,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 +"920","OGC_AmsterdamUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.45,0.45,0.45,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 +"921","OGC_AmsterdamUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.45,0.45,0.45,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 +"922","OGC_AmsterdamUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.45,0.45,0.45,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 +"923","OGC_AmsterdamUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.45,0.45,0.45,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 +"924","OGC_AmsterdamUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.45,0.45,0.45,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 +"925","OGC_AmsterdamUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.45,0.45,0.45,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 +"926","OGC_AmsterdamUMC_biexp","Liver",10,0.11,0.1,0.0015,0.168781483710098,0.0998946664266393,0.0013498050183832,0.45,0.45,0.45,0.122995139274488,0.0772265009198665,0.000337252957986261,299,299,299 +"927","OGC_AmsterdamUMC_biexp","Liver",30,0.11,0.1,0.0015,0.114188731736888,0.115331619534224,0.00148632594936495,0.45,0.45,0.45,0.0216959423795506,0.0557579468019812,8.43750873327471e-05,299,299,299 +"928","OGC_AmsterdamUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111084793289577,0.110147712355781,0.00149517257250774,0.45,0.45,0.45,0.01183413282986,0.0399148213895639,4.8761702300905e-05,299,299,299 +"929","OGC_AmsterdamUMC_biexp","Liver",100,0.11,0.1,0.0015,0.110231190403675,0.103476574388879,0.0014982923573173,0.45,0.45,0.45,0.00588808517047419,0.0205159283218359,2.43744136435469e-05,299,299,299 +"930","OGC_AmsterdamUMC_biexp","Liver",200,0.11,0.1,0.0015,0.1100470782725,0.101125031030003,0.00149929708375471,0.45,0.45,0.45,0.00293209185601329,0.00988546801948204,1.21465617474882e-05,299,299,299 +"931","OGC_AmsterdamUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.45,0.45,0.45,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 +"932","OGC_AmsterdamUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.45,0.45,0.45,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 +"933","OGC_AmsterdamUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.45,0.45,0.45,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 +"934","OGC_AmsterdamUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.45,0.45,0.45,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 +"935","OGC_AmsterdamUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.45,0.45,0.45,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 +"936","OGC_AmsterdamUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.140842582474029,0.0815154419321809,0.00133683779290497,0.45,0.45,0.45,0.133651654726981,0.0787637500133576,0.000337383058598956,299,299,299 +"937","OGC_AmsterdamUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0829284043873291,0.0925385612868686,0.00146970569880693,0.45,0.45,0.45,0.040894147264683,0.0669997325413034,0.00010234659109373,299,299,299 +"938","OGC_AmsterdamUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.072923245672355,0.086543488787249,0.00149141826884349,0.45,0.45,0.45,0.0155435838870278,0.050860948922495,5.15890939821251e-05,299,299,299 +"939","OGC_AmsterdamUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.070524437875184,0.0753318595008239,0.00149772019600704,0.45,0.45,0.45,0.00682514888448031,0.025139239611477,2.45968000885053e-05,299,299,299 +"940","OGC_AmsterdamUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701212467432704,0.0714929242888122,0.00149916064828103,0.45,0.45,0.45,0.00338190541112971,0.0111832331213025,1.22606190149771e-05,299,299,299 +"941","OGC_AmsterdamUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.45,0.45,0.45,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 +"942","OGC_AmsterdamUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.45,0.45,0.45,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 +"943","OGC_AmsterdamUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.45,0.45,0.45,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 +"944","OGC_AmsterdamUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.45,0.45,0.45,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 +"945","OGC_AmsterdamUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.45,0.45,0.45,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 +"946","OGC_AmsterdamUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.184853535610611,0.0474378705656416,0.00120984216661857,0.45,0.45,0.45,0.161104187646429,0.0669702421956942,0.000392891369414266,299,299,299 +"947","OGC_AmsterdamUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.1758987150233,0.0213648978673952,0.0012561175701719,0.45,0.45,0.45,0.0959617612998877,0.0372699012998766,0.00018463821702496,299,299,299 +"948","OGC_AmsterdamUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.166798142533227,0.0139339848239637,0.00127239422373439,0.45,0.45,0.45,0.0681687338425591,0.0204281200559457,0.000125570308752639,299,299,299 +"949","OGC_AmsterdamUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.155050447560094,0.0103148716578063,0.00129097893352421,0.45,0.45,0.45,0.0319693578528234,0.00247522256148057,5.97694054006783e-05,299,299,299 +"950","OGC_AmsterdamUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151155511078491,0.0100771654020746,0.00129758916819627,0.45,0.45,0.45,0.01486591983984,0.00114131889925594,2.84629910683132e-05,299,299,299 +"951","OGC_AmsterdamUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.262616475802028,0.0308625180597483,0.00230293995321135,0.45,0.45,0.45,0.288611721740561,0.0557288601070258,0.000959963395181612,299,299,299 +"952","OGC_AmsterdamUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171752736546838,0.0258191200871392,0.00279901103476943,0.45,0.45,0.45,0.188837545487512,0.0473569013409168,0.000422023702062297,299,299,299 +"953","OGC_AmsterdamUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.154585152777794,0.0269701085601376,0.00286376703903012,0.45,0.45,0.45,0.156425793643098,0.0489644773433195,0.000304246897964977,299,299,299 +"954","OGC_AmsterdamUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.130337929311287,0.0221023076365671,0.00291708995451447,0.45,0.45,0.45,0.119422596085694,0.0390373666690182,0.000200857412897068,299,299,299 +"955","OGC_AmsterdamUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0981124920664315,0.01363368266491,0.00296220821462304,0.45,0.45,0.45,0.0749749651464143,0.0203675508518603,0.000119612766836194,299,299,299 +"956","OGC_AmsterdamUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.45,0.45,0.45,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 +"957","OGC_AmsterdamUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.45,0.45,0.45,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 +"958","OGC_AmsterdamUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.45,0.45,0.45,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 +"959","OGC_AmsterdamUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.45,0.45,0.45,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 +"960","OGC_AmsterdamUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.45,0.45,0.45,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 +"961","OGC_AmsterdamUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.45,0.45,0.45,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 +"962","OGC_AmsterdamUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.45,0.45,0.45,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 +"963","OGC_AmsterdamUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.45,0.45,0.45,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 +"964","OGC_AmsterdamUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.45,0.45,0.45,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 +"965","OGC_AmsterdamUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.45,0.45,0.45,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 +"966","OGC_AmsterdamUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.694830687906111,0.0326249863850724,0.001146551391007,0.45,0.45,0.45,0.0978007791606039,0.0170421543207036,0.000744261895530268,299,299,299 +"967","OGC_AmsterdamUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.689570850315831,0.0293846834755066,0.00130099623277285,0.45,0.45,0.45,0.0358332141325587,0.00328309905455554,0.000279782025078523,299,299,299 +"968","OGC_AmsterdamUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.689825693573063,0.0291500977548317,0.0013043250896893,0.45,0.45,0.45,0.0213881941310553,0.00190248296633076,0.000166083414640446,299,299,299 +"969","OGC_AmsterdamUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.68994656517302,0.0290467790735891,0.00130699632918918,0.45,0.45,0.45,0.0106631625130881,0.000938640325588028,8.26562859975714e-05,299,299,299 +"970","OGC_AmsterdamUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.689981335140809,0.0290165319414175,0.00130845678076352,0.45,0.45,0.45,0.00532704601832268,0.000467721780395998,4.1283123962599e-05,299,299,299 +"971","OGC_AmsterdamUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.248565345872263,0.0568790590809539,0.00117109082310806,0.45,0.45,0.45,0.138108152592245,0.0614284067605453,0.000385048669212005,299,299,299 +"972","OGC_AmsterdamUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.204799212322826,0.0344032230756975,0.00128537474230259,0.45,0.45,0.45,0.0373889502807019,0.0196932990153424,0.000109827153921283,299,299,299 +"973","OGC_AmsterdamUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201678467795085,0.0312420978469793,0.00129383894795446,0.45,0.45,0.45,0.0214546726422535,0.0077523763498131,6.40824451508019e-05,299,299,299 +"974","OGC_AmsterdamUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.20040747359065,0.0303107930918353,0.00129785077922554,0.45,0.45,0.45,0.0104719587309842,0.00342852469585086,3.15725299307934e-05,299,299,299 +"975","OGC_AmsterdamUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.200098827653497,0.0300920084049103,0.00129915169076204,0.45,0.45,0.45,0.00519380978047521,0.00166907680512249,1.57069706717535e-05,299,299,299 +"976","OGC_AmsterdamUMC_biexp","st wall",10,0.3,0.012,0.0015,0.361593393686145,0.0323328748012714,0.00130132220666322,0.45,0.45,0.45,0.208350215148267,0.0514342217408351,0.000612311819072441,299,299,299 +"977","OGC_AmsterdamUMC_biexp","st wall",30,0.3,0.012,0.0015,0.316719659160763,0.0137022551884621,0.00145359061242711,0.45,0.45,0.45,0.0970529464093194,0.00856485498776069,0.000254686991328844,299,299,299 +"978","OGC_AmsterdamUMC_biexp","st wall",50,0.3,0.012,0.0015,0.305193533818909,0.0124323700210719,0.00148436640149277,0.45,0.45,0.45,0.053613759973711,0.00282298876439099,0.000140362193961726,299,299,299 +"979","OGC_AmsterdamUMC_biexp","st wall",100,0.3,0.012,0.0015,0.3011193322049,0.0121135942239775,0.00149571619204976,0.45,0.45,0.45,0.0261843319002159,0.00129074569132032,6.85575356626846e-05,299,299,299 +"980","OGC_AmsterdamUMC_biexp","st wall",200,0.3,0.012,0.0015,0.300225825318409,0.0120334534978712,0.00149864155647832,0.45,0.45,0.45,0.0130262845926758,0.000630340215988195,3.40956211098914e-05,299,299,299 +"981","OGC_AmsterdamUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694830688564467,0.032624986312475,0.00114655138620799,0.45,0.45,0.45,0.0978007790483066,0.017042154071943,0.000744261894497508,299,299,299 +"982","OGC_AmsterdamUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689570850550309,0.0293846834605323,0.00130099623067048,0.45,0.45,0.45,0.03583321437894,0.00328309906489773,0.000279782027780018,299,299,299 +"983","OGC_AmsterdamUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689825693412246,0.0291500977660697,0.00130432509126435,0.45,0.45,0.45,0.0213881942331915,0.00190248296909735,0.000166083415658577,299,299,299 +"984","OGC_AmsterdamUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689946565157839,0.0290467790741476,0.00130699632927992,0.45,0.45,0.45,0.0106631624923704,0.000938640325039952,8.2656285973903e-05,299,299,299 +"985","OGC_AmsterdamUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689981335112322,0.0290165319430504,0.00130845678104043,0.45,0.45,0.45,0.00532704598651555,0.000467721780481497,4.1283123603074e-05,299,299,299 +"986","OGC_AmsterdamUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.916551204244533,0.122369011974545,0.000273066816835779,0.45,0.45,0.45,0.022725191121915,0.0234330403198178,0.000525988259691735,299,299,299 +"987","OGC_AmsterdamUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.973161261240563,0.106546698361441,0.000228130761062279,0.45,0.45,0.45,0.00782859243617106,0.0064578289415521,0.000431214198209649,299,299,299 +"988","OGC_AmsterdamUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.984189738028885,0.103791606406811,0.000208198255818229,0.45,0.45,0.45,0.00468303362319796,0.00375278684718259,0.000406133264965843,299,299,299 +"989","OGC_AmsterdamUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.992359928276546,0.101811171283772,0.000175728187662851,0.45,0.45,0.45,0.00229602432637319,0.00183520806791812,0.000373115337318807,299,299,299 +"990","OGC_AmsterdamUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996323153986104,0.100873285167583,0.000149761440764175,0.45,0.45,0.45,0.00113622001644103,0.00090848307766313,0.000352385760028282,299,299,299 +"991","OGC_AmsterdamUMC_biexp_segmented","Artery",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 +"992","OGC_AmsterdamUMC_biexp_segmented","Artery",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 +"993","OGC_AmsterdamUMC_biexp_segmented","Artery",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 +"994","OGC_AmsterdamUMC_biexp_segmented","Artery",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 +"995","OGC_AmsterdamUMC_biexp_segmented","Artery",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 +"996","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390180236,0.00131067694624179,0.45,0.45,0.45,0.143273359410903,0.00746591757058437,0.000965452623261198,299,299,299 +"997","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091792,0.00136286457292459,0.45,0.45,0.45,0.0442643529688101,0.000185589786252479,0.000322790073010869,299,299,299 +"998","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.45,0.45,0.45,0.0260317923438205,1.40320085058926e-10,0.000190041408090366,299,299,299 +"999","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.45,0.45,0.45,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 +"1000","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.45,0.45,0.45,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 +"1001","OGC_AmsterdamUMC_biexp_segmented","Blood RA",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 +"1002","OGC_AmsterdamUMC_biexp_segmented","Blood RA",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 +"1003","OGC_AmsterdamUMC_biexp_segmented","Blood RA",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 +"1004","OGC_AmsterdamUMC_biexp_segmented","Blood RA",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 +"1005","OGC_AmsterdamUMC_biexp_segmented","Blood RA",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 +"1006","OGC_AmsterdamUMC_biexp_segmented","Blood RV",10,1,0.1,0.003,0.89187652895809,0.130371770521945,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595995146847,0.000876166916139467,299,299,299 +"1007","OGC_AmsterdamUMC_biexp_segmented","Blood RV",30,1,0.1,0.003,0.963958649017849,0.108709609162974,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200609997,0.000876181456030473,299,299,299 +"1008","OGC_AmsterdamUMC_biexp_segmented","Blood RV",50,1,0.1,0.003,0.97816921696173,0.105139058114271,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.0046898167166192,0.000912813853531625,299,299,299 +"1009","OGC_AmsterdamUMC_biexp_segmented","Blood RV",100,1,0.1,0.003,0.989084383490558,0.102522060782086,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175040105,0.000912855515978945,299,299,299 +"1010","OGC_AmsterdamUMC_biexp_segmented","Blood RV",200,1,0.1,0.003,0.994541921036986,0.10125504286489,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352008543,0.000913010145476883,299,299,299 +"1011","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",10,0.69,0.029,0.00131,0.661034109543676,0.0519537390427511,0.00131067694617946,0.45,0.45,0.45,0.143273359483562,0.00746591763226972,0.000965452623351917,299,299,299 +"1012","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",30,0.69,0.029,0.00131,0.677766188255513,0.0500107152093789,0.00136286457330544,0.45,0.45,0.45,0.0442643529054461,0.00018558978971045,0.000322790072591844,299,299,299 +"1013","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",50,0.69,0.029,0.00131,0.68022868657494,0.0500000000118474,0.00135564782184761,0.45,0.45,0.45,0.0260317923174537,1.4032007815239e-10,0.000190041407906453,299,299,299 +"1014","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",100,0.69,0.029,0.00131,0.6813744273752,0.0500000000003099,0.00135334951488224,0.45,0.45,0.45,0.0128991835089443,1.00907554152635e-12,9.41499540600846e-05,299,299,299 +"1015","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",200,0.69,0.029,0.00131,0.681731199292581,0.0500000000001251,0.0013531962138951,0.45,0.45,0.45,0.0064313384229787,1.04042230662964e-13,4.6928581419636e-05,299,299,299 +"1016","OGC_AmsterdamUMC_biexp_segmented","esophagus",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.45,0.45,0.45,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 +"1017","OGC_AmsterdamUMC_biexp_segmented","esophagus",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.45,0.45,0.45,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 +"1018","OGC_AmsterdamUMC_biexp_segmented","esophagus",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.45,0.45,0.45,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 +"1019","OGC_AmsterdamUMC_biexp_segmented","esophagus",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.45,0.45,0.45,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 +"1020","OGC_AmsterdamUMC_biexp_segmented","esophagus",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.45,0.45,0.45,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 +"1021","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.45,0.45,0.45,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 +"1022","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.45,0.45,0.45,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 +"1023","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.45,0.45,0.45,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 +"1024","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.45,0.45,0.45,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 +"1025","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.45,0.45,0.45,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 +"1026","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.45,0.45,0.45,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 +"1027","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.45,0.45,0.45,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 +"1028","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.45,0.45,0.45,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 +"1029","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.45,0.45,0.45,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 +"1030","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.45,0.45,0.45,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 +"1031","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.45,0.45,0.45,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 +"1032","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.45,0.45,0.45,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 +"1033","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.45,0.45,0.45,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 +"1034","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.45,0.45,0.45,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 +"1035","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.45,0.45,0.45,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 +"1036","OGC_AmsterdamUMC_biexp_segmented","Liver",10,0.11,0.1,0.0015,0.0972321801659825,0.35559843435101,0.00150859052204052,0.45,0.45,0.45,0.134839808929966,0.632502439816993,0.000367327987709817,299,299,299 +"1037","OGC_AmsterdamUMC_biexp_segmented","Liver",30,0.11,0.1,0.0015,0.107694887153018,0.226173724263367,0.00150016928920599,0.45,0.45,0.45,0.0451472711617818,0.380098790845709,0.000121950650671429,299,299,299 +"1038","OGC_AmsterdamUMC_biexp_segmented","Liver",50,0.11,0.1,0.0015,0.108918954664912,0.137632134381599,0.00149957574189822,0.45,0.45,0.45,0.0269925765528699,0.173220331526938,7.29050804512238e-05,299,299,299 +"1039","OGC_AmsterdamUMC_biexp_segmented","Liver",100,0.11,0.1,0.0015,0.109571576926182,0.10728000421186,0.00149959253645644,0.45,0.45,0.45,0.0134700792856065,0.0365535919006858,3.63764396721475e-05,299,299,299 +"1040","OGC_AmsterdamUMC_biexp_segmented","Liver",200,0.11,0.1,0.0015,0.109813662467211,0.102101719440497,0.00149974766327095,0.45,0.45,0.45,0.00672998368978822,0.0157372078248851,1.81728271900004e-05,299,299,299 +"1041","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.45,0.45,0.45,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 +"1042","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.45,0.45,0.45,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 +"1043","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.45,0.45,0.45,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 +"1044","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.45,0.45,0.45,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 +"1045","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.45,0.45,0.45,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 +"1046","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",10,0.07,0.07,0.0015,0.0578936886535005,0.331287936090609,0.00150745703740933,0.45,0.45,0.45,0.133663508201973,0.620007223240229,0.000349561522849492,299,299,299 +"1047","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",30,0.07,0.07,0.0015,0.0677475633979726,0.252860531918122,0.00150007469297444,0.45,0.45,0.45,0.0451277322847106,0.462488933259553,0.000116654443267633,299,299,299 +"1048","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",50,0.07,0.07,0.0015,0.068936524801532,0.153221079980056,0.00149956512826645,0.45,0.45,0.45,0.0269874814666128,0.288290130918818,6.97554513344443e-05,299,299,299 +"1049","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",100,0.07,0.07,0.0015,0.0695745982637905,0.0851832608134713,0.00149960544347793,0.45,0.45,0.45,0.0134691574388598,0.0574276101213015,3.48091848323947e-05,299,299,299 +"1050","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",200,0.07,0.07,0.0015,0.0698130767438865,0.0732437488492484,0.00149975991644965,0.45,0.45,0.45,0.00672980083126172,0.0176595729765593,1.73906364708644e-05,299,299,299 +"1051","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.45,0.45,0.45,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 +"1052","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.45,0.45,0.45,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 +"1053","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.45,0.45,0.45,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 +"1054","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.45,0.45,0.45,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 +"1055","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.45,0.45,0.45,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 +"1056","OGC_AmsterdamUMC_biexp_segmented","pancreas",10,0.15,0.01,0.00129999999999999,0.100244765420066,0.266741520832647,0.00137548084876521,0.45,0.45,0.45,0.129912389751765,0.562164105737666,0.000344116696880167,299,299,299 +"1057","OGC_AmsterdamUMC_biexp_segmented","pancreas",30,0.15,0.01,0.00129999999999999,0.110360760973366,0.0661716722087468,0.00136667398578444,0.45,0.45,0.45,0.0433110167586883,0.140789670312433,0.000113720557310474,299,299,299 +"1058","OGC_AmsterdamUMC_biexp_segmented","pancreas",50,0.15,0.01,0.00129999999999999,0.111480583752563,0.0539705038259079,0.00136624929746589,0.45,0.45,0.45,0.0259040670714904,0.0479429254670281,6.80011412344266e-05,299,299,299 +"1059","OGC_AmsterdamUMC_biexp_segmented","pancreas",100,0.15,0.01,0.00129999999999999,0.112080763535825,0.0500000065580185,0.00136632895052346,0.45,0.45,0.45,0.0129294848715759,1.69774639357237e-08,3.39338191967857e-05,299,299,299 +"1060","OGC_AmsterdamUMC_biexp_segmented","pancreas",200,0.15,0.01,0.00129999999999999,0.112304748300198,0.050000000728181,0.0013664952449501,0.45,0.45,0.45,0.00646040206372423,6.32502873391021e-09,1.69533243857183e-05,299,299,299 +"1061","OGC_AmsterdamUMC_biexp_segmented","pericardium",10,0.07,0.00999999999999999,0.003,0.0520383050852133,0.17871463052579,0.00290810073173622,0.45,0.45,0.45,0.209231800764477,0.422831401538199,0.000739849912636431,299,299,299 +"1062","OGC_AmsterdamUMC_biexp_segmented","pericardium",30,0.07,0.00999999999999999,0.003,0.0344582030632704,0.193439082301208,0.00306329837568757,0.45,0.45,0.45,0.0804795684271075,0.466549615994945,0.000279719698417709,299,299,299 +"1063","OGC_AmsterdamUMC_biexp_segmented","pericardium",50,0.07,0.00999999999999999,0.003,0.0370860589999383,0.183326258829341,0.00306223557955883,0.45,0.45,0.45,0.0479655490509802,0.442363330135666,0.000167660569102541,299,299,299 +"1064","OGC_AmsterdamUMC_biexp_segmented","pericardium",100,0.07,0.00999999999999999,0.003,0.0387485065804243,0.106024067573401,0.00306070920381438,0.45,0.45,0.45,0.023849433162107,0.267496955607805,8.35301202824561e-05,299,299,299 +"1065","OGC_AmsterdamUMC_biexp_segmented","pericardium",200,0.07,0.00999999999999999,0.003,0.0393008418149469,0.0500135454072159,0.00306053200851328,0.45,0.45,0.45,0.0118997768390481,0.000219338674816968,4.17111224394722e-05,299,299,299 +"1066","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.45,0.45,0.45,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 +"1067","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.45,0.45,0.45,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 +"1068","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.45,0.45,0.45,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 +"1069","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.45,0.45,0.45,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 +"1070","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.45,0.45,0.45,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 +"1071","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.45,0.45,0.45,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 +"1072","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.45,0.45,0.45,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 +"1073","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.45,0.45,0.45,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 +"1074","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.45,0.45,0.45,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 +"1075","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.45,0.45,0.45,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 +"1076","OGC_AmsterdamUMC_biexp_segmented","small intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390164872,0.00131067694624179,0.45,0.45,0.45,0.143273359410903,0.0074659175711477,0.000965452623261198,299,299,299 +"1077","OGC_AmsterdamUMC_biexp_segmented","small intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091894,0.00136286457292459,0.45,0.45,0.45,0.0442643529688101,0.000185589786428744,0.000322790073010869,299,299,299 +"1078","OGC_AmsterdamUMC_biexp_segmented","small intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.45,0.45,0.45,0.0260317923438205,1.40320084211226e-10,0.000190041408090366,299,299,299 +"1079","OGC_AmsterdamUMC_biexp_segmented","small intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.45,0.45,0.45,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 +"1080","OGC_AmsterdamUMC_biexp_segmented","small intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.45,0.45,0.45,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 +"1081","OGC_AmsterdamUMC_biexp_segmented","spleen",10,0.2,0.03,0.00129999999999999,0.18520392281551,0.209255851356637,0.00131436647515706,0.45,0.45,0.45,0.128284620714988,0.43795050055203,0.000366856183513939,299,299,299 +"1082","OGC_AmsterdamUMC_biexp_segmented","spleen",30,0.2,0.03,0.00129999999999999,0.195921638044614,0.0570791154895169,0.00130408703951844,0.45,0.45,0.45,0.0419884764569373,0.0531685484918258,0.000119667429133032,299,299,299 +"1083","OGC_AmsterdamUMC_biexp_segmented","spleen",50,0.2,0.03,0.00129999999999999,0.197041413325606,0.0504893716375674,0.00130363013865361,0.45,0.45,0.45,0.0251082366944411,0.00383960153192709,7.15383551583112e-05,299,299,299 +"1084","OGC_AmsterdamUMC_biexp_segmented","spleen",100,0.2,0.03,0.00129999999999999,0.197638649057216,0.0500000097397441,0.0013037149142624,0.45,0.45,0.45,0.0125312243299692,1.90669760189101e-08,3.5694004704467e-05,299,299,299 +"1085","OGC_AmsterdamUMC_biexp_segmented","spleen",200,0.2,0.03,0.00129999999999999,0.197860311649606,0.050000009538866,0.00130389290756918,0.45,0.45,0.45,0.00626126043010556,1.66111763089958e-08,1.78317987728703e-05,299,299,299 +"1086","OGC_AmsterdamUMC_biexp_segmented","st wall",10,0.3,0.012,0.0015,0.224968563584563,0.152728411143095,0.00164792160735107,0.45,0.45,0.45,0.147842246989045,0.375057604026138,0.000489535231234454,299,299,299 +"1087","OGC_AmsterdamUMC_biexp_segmented","st wall",30,0.3,0.012,0.0015,0.238787520936113,0.0523502353354238,0.00163390334662365,0.45,0.45,0.45,0.048525316538426,0.0309648568654976,0.000160157639209458,299,299,299 +"1088","OGC_AmsterdamUMC_biexp_segmented","st wall",50,0.3,0.012,0.0015,0.240378264028766,0.0500000002507408,0.00163237397051999,0.45,0.45,0.45,0.0289474376095694,2.28400922500028e-09,9.5559900702868e-05,299,299,299 +"1089","OGC_AmsterdamUMC_biexp_segmented","st wall",100,0.3,0.012,0.0015,0.241188415913859,0.0500000000085327,0.00163207076247144,0.45,0.45,0.45,0.0144296581809571,2.55196631854657e-11,4.76338814555705e-05,299,299,299 +"1090","OGC_AmsterdamUMC_biexp_segmented","st wall",200,0.3,0.012,0.0015,0.241472821664073,0.050000000003392,0.00163218547366257,0.45,0.45,0.45,0.00720667286447567,2.68542354759096e-12,2.37887610442069e-05,299,299,299 +"1091","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.661034109428733,0.051953739032677,0.00131067694715308,0.45,0.45,0.45,0.143273359446166,0.00746591768148673,0.000965452622732951,299,299,299 +"1092","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.677766188297563,0.0500107152094703,0.00136286457295964,0.45,0.45,0.45,0.0442643528902771,0.000185589791293374,0.000322790072283088,299,299,299 +"1093","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.680228686551908,0.0500000000118474,0.00135564782204329,0.45,0.45,0.45,0.0260317923637547,1.40320090168179e-10,0.000190041408458065,299,299,299 +"1094","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.681374427368473,0.0500000000003099,0.00135334951494511,0.45,0.45,0.45,0.0128991835128633,1.00907554152635e-12,9.41499541220862e-05,299,299,299 +"1095","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.681731199274704,0.0500000000001251,0.00135319621405087,0.45,0.45,0.45,0.00643133843132689,1.04042199865913e-13,4.69285814418112e-05,299,299,299 +"1096","OGC_AmsterdamUMC_biexp_segmented","Vein",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770524695,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595995383155,0.000876166916139467,299,299,299 +"1097","OGC_AmsterdamUMC_biexp_segmented","Vein",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163886,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200746512,0.000876181456030473,299,299,299 +"1098","OGC_AmsterdamUMC_biexp_segmented","Vein",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114482,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.00468981671679721,0.000912813853531625,299,299,299 +"1099","OGC_AmsterdamUMC_biexp_segmented","Vein",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060782067,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175037519,0.000912855515978945,299,299,299 +"1100","OGC_AmsterdamUMC_biexp_segmented","Vein",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864984,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352002846,0.000913010145476883,299,299,299 +"1101","PV_MUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.45,0.45,0.45,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 +"1102","PV_MUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.45,0.45,0.45,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 +"1103","PV_MUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.45,0.45,0.45,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 +"1104","PV_MUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.45,0.45,0.45,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 +"1105","PV_MUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.45,0.45,0.45,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 +"1106","PV_MUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.691470348442192,0.0320827827770493,0.00124871997099421,0.45,0.45,0.45,0.105711327862916,0.0160018733645475,0.000901831520780432,299,299,299 +"1107","PV_MUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.688093183614171,0.0294562213763849,0.00132700814797154,0.45,0.45,0.45,0.0452600702218041,0.00371662172542782,0.00039381399431472,299,299,299 +"1108","PV_MUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.688966038440429,0.029199601596073,0.00131674145667986,0.45,0.45,0.45,0.0271841976242685,0.0021834868114162,0.000231514013534254,299,299,299 +"1109","PV_MUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689413085208427,0.0290804523150075,0.00131311782214893,0.45,0.45,0.45,0.0135989073526535,0.00108324352490203,0.000114727925771987,299,299,299 +"1110","PV_MUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689573180926678,0.0290430944880149,0.00131259557708985,0.45,0.45,0.45,0.00680047675905179,0.000540559071221946,5.72226175968247e-05,299,299,299 +"1111","PV_MUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.45,0.45,0.45,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 +"1112","PV_MUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.45,0.45,0.45,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 +"1113","PV_MUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.45,0.45,0.45,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 +"1114","PV_MUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.45,0.45,0.45,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 +"1115","PV_MUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.45,0.45,0.45,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 +"1116","PV_MUMC_biexp","Blood RV",10,1,0.1,0.003,0.911157661205427,0.123643660013595,0.000607355415641274,0.45,0.45,0.45,0.0263704296062989,0.0234808191539726,0.000781512767273926,299,299,299 +"1117","PV_MUMC_biexp","Blood RV",30,1,0.1,0.003,0.971237368284705,0.106940870680865,0.000607372598717673,0.45,0.45,0.45,0.00908754537244282,0.00648210009371694,0.000781528535341981,299,299,299 +"1118","PV_MUMC_biexp","Blood RV",50,1,0.1,0.003,0.982984250166763,0.104032609128906,0.000607380534286713,0.45,0.45,0.45,0.00546001928424493,0.00376732124561751,0.000781521963607196,299,299,299 +"1119","PV_MUMC_biexp","Blood RV",100,1,0.1,0.003,0.991733932625732,0.101934073427047,0.000607404386458529,0.45,0.45,0.45,0.00268925596027005,0.00184607816688224,0.000781542209010902,299,299,299 +"1120","PV_MUMC_biexp","Blood RV",200,1,0.1,0.003,0.996022656879395,0.100931454917885,0.000607227933379224,0.45,0.45,0.45,0.00133610299058227,0.00091514738792123,0.000780813589540255,299,299,299 +"1121","PV_MUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.691470348438474,0.0320827827803892,0.00124871997066846,0.45,0.45,0.45,0.105711327913523,0.0160018733571079,0.000901831520760143,299,299,299 +"1122","PV_MUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.688093183608034,0.029456221376894,0.0013270081480873,0.45,0.45,0.45,0.0452600702369857,0.00371662172759421,0.000393813994419125,299,299,299 +"1123","PV_MUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.688966038440901,0.0291996015957491,0.00131674145666527,0.45,0.45,0.45,0.0271841976084912,0.00218348680950215,0.000231514013492556,299,299,299 +"1124","PV_MUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689413085205758,0.0290804523152126,0.00131311782216352,0.45,0.45,0.45,0.0135989073563255,0.00108324352514479,0.00011472792578306,299,299,299 +"1125","PV_MUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689573180931052,0.0290430944877037,0.00131259557707978,0.45,0.45,0.45,0.00680047675835751,0.000540559071153575,5.72226175969141e-05,299,299,299 +"1126","PV_MUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.45,0.45,0.45,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 +"1127","PV_MUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.45,0.45,0.45,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 +"1128","PV_MUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.45,0.45,0.45,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 +"1129","PV_MUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.45,0.45,0.45,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 +"1130","PV_MUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.45,0.45,0.45,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 +"1131","PV_MUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.45,0.45,0.45,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 +"1132","PV_MUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.45,0.45,0.45,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 +"1133","PV_MUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.45,0.45,0.45,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 +"1134","PV_MUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.45,0.45,0.45,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 +"1135","PV_MUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.45,0.45,0.45,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 +"1136","PV_MUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.45,0.45,0.45,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 +"1137","PV_MUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.45,0.45,0.45,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 +"1138","PV_MUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.45,0.45,0.45,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 +"1139","PV_MUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.45,0.45,0.45,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 +"1140","PV_MUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.45,0.45,0.45,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 +"1141","PV_MUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.45,0.45,0.45,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 +"1142","PV_MUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.45,0.45,0.45,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 +"1143","PV_MUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.45,0.45,0.45,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 +"1144","PV_MUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.45,0.45,0.45,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 +"1145","PV_MUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.45,0.45,0.45,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 +"1146","PV_MUMC_biexp","Liver",10,0.11,0.1,0.0015,0.156096041950495,0.103004334953046,0.00143196282270513,0.45,0.45,0.45,0.110349251520112,0.0779961628143732,0.000358196217736956,299,299,299 +"1147","PV_MUMC_biexp","Liver",30,0.11,0.1,0.0015,0.116101779636099,0.1138229593791,0.00149777113036028,0.45,0.45,0.45,0.034776317507387,0.0600988513603365,0.000144925790948956,299,299,299 +"1148","PV_MUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111612534570894,0.109841008435211,0.00150002526959645,0.45,0.45,0.45,0.0190068115405264,0.0441056576363389,9.05346431726557e-05,299,299,299 +"1149","PV_MUMC_biexp","Liver",100,0.11,0.1,0.0015,0.11025104441505,0.103810736875319,0.00149980894457395,0.45,0.45,0.45,0.00905977798222036,0.0236768256802226,4.54189359484425e-05,299,299,299 +"1150","PV_MUMC_biexp","Liver",200,0.11,0.1,0.0015,0.110022352713976,0.101269696328069,0.0014998347111719,0.45,0.45,0.45,0.0044943742719744,0.0114224658712206,2.26988794968306e-05,299,299,299 +"1151","PV_MUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.45,0.45,0.45,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 +"1152","PV_MUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.45,0.45,0.45,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 +"1153","PV_MUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.45,0.45,0.45,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 +"1154","PV_MUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.45,0.45,0.45,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 +"1155","PV_MUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.45,0.45,0.45,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 +"1156","PV_MUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.128345687194747,0.0825316505228132,0.00140833862248053,0.45,0.45,0.45,0.114737913407162,0.0798040133006487,0.000322847727404802,299,299,299 +"1157","PV_MUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0808769411594791,0.093179188822108,0.00149089305452715,0.45,0.45,0.45,0.0404412487711946,0.0680662255269266,0.000129511673752725,299,299,299 +"1158","PV_MUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0738186548068268,0.0870087926746789,0.00149857823558983,0.45,0.45,0.45,0.023244544317497,0.0544978802925074,8.40169485215999e-05,299,299,299 +"1159","PV_MUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0707073237714697,0.0759757339514294,0.0014998056841726,0.45,0.45,0.45,0.0105581939281603,0.0292975136083979,4.34633510601474e-05,299,299,299 +"1160","PV_MUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070115739623736,0.0717332279515257,0.00149983895466135,0.45,0.45,0.45,0.00507917209030401,0.0131396922117831,2.17222451683666e-05,299,299,299 +"1161","PV_MUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.45,0.45,0.45,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 +"1162","PV_MUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.45,0.45,0.45,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 +"1163","PV_MUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.45,0.45,0.45,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 +"1164","PV_MUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.45,0.45,0.45,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 +"1165","PV_MUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.45,0.45,0.45,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 +"1166","PV_MUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.170823203204389,0.0484396671293969,0.00128341130108195,0.45,0.45,0.45,0.135276785103213,0.0693648067906324,0.000342833111852961,299,299,299 +"1167","PV_MUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.139357428753803,0.0211791605193582,0.00132956207649237,0.45,0.45,0.45,0.0600015004474031,0.0343714821910045,0.000136158605057219,299,299,299 +"1168","PV_MUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.136832912331991,0.0133451533082555,0.00132993178960967,0.45,0.45,0.45,0.0378707541645237,0.0118353435907057,8.31807200994293e-05,299,299,299 +"1169","PV_MUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.13591079011917,0.011464130733693,0.00132978574256788,0.45,0.45,0.45,0.019496680742444,0.00219037196718289,4.15321836208148e-05,299,299,299 +"1170","PV_MUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.135796421465576,0.0111580957885994,0.00132987960122183,0.45,0.45,0.45,0.00982799371378257,0.000979299181915567,2.07569431281731e-05,299,299,299 +"1171","PV_MUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.391019540038776,0.044643914104375,0.00245103379176744,0.45,0.45,0.45,0.345288990615877,0.0685553221727792,0.000589805944574225,299,299,299 +"1172","PV_MUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.279254963167638,0.0272516182326572,0.00286523068505902,0.45,0.45,0.45,0.326984869731808,0.0497742750374417,0.000202391605500055,299,299,299 +"1173","PV_MUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.197907121793284,0.0171779174735046,0.00292567942662698,0.45,0.45,0.45,0.257892241602723,0.0314712950254075,0.000122141208493828,299,299,299 +"1174","PV_MUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.101454392147406,0.0102999034458522,0.0029683983156719,0.45,0.45,0.45,0.0986460636016255,0.00484404848123746,5.80586216740766e-05,299,299,299 +"1175","PV_MUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0764077555060485,0.0099589090676984,0.00298894164686365,0.45,0.45,0.45,0.016170934406564,0.00205930827894513,2.4606310997004e-05,299,299,299 +"1176","PV_MUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.45,0.45,0.45,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 +"1177","PV_MUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.45,0.45,0.45,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 +"1178","PV_MUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.45,0.45,0.45,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 +"1179","PV_MUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.45,0.45,0.45,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 +"1180","PV_MUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.45,0.45,0.45,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 +"1181","PV_MUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.45,0.45,0.45,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 +"1182","PV_MUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.45,0.45,0.45,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 +"1183","PV_MUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.45,0.45,0.45,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 +"1184","PV_MUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.45,0.45,0.45,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 +"1185","PV_MUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.45,0.45,0.45,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 +"1186","PV_MUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.691470348425927,0.0320827827806415,0.00124871997099421,0.45,0.45,0.45,0.105711327887533,0.016001873378134,0.000901831520780432,299,299,299 +"1187","PV_MUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.688093183610048,0.0294562213769231,0.00132700814797154,0.45,0.45,0.45,0.0452600702287884,0.0037166217265589,0.00039381399431472,299,299,299 +"1188","PV_MUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.688966038442785,0.0291996015955794,0.00131674145667986,0.45,0.45,0.45,0.027184197603594,0.00218348680956759,0.000231514013534254,299,299,299 +"1189","PV_MUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.689413085207519,0.0290804523150365,0.00131311782214893,0.45,0.45,0.45,0.0135989073510044,0.00108324352463396,0.000114727925771987,299,299,299 +"1190","PV_MUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.68957318092911,0.0290430944878304,0.00131259557708985,0.45,0.45,0.45,0.0068004767604521,0.000540559071379342,5.72226175968247e-05,299,299,299 +"1191","PV_MUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.225876447681667,0.0575696359776324,0.00127966060384555,0.45,0.45,0.45,0.118602073944037,0.062520158480083,0.000393628482668222,299,299,299 +"1192","PV_MUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.203121072306131,0.0348456914497528,0.00130102510958467,0.45,0.45,0.45,0.0446268922956713,0.0210587094438441,0.000147164603791659,299,299,299 +"1193","PV_MUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201082893667275,0.0314005146720823,0.00130009513988208,0.45,0.45,0.45,0.0267655318154766,0.0084356309709076,8.81308491758965e-05,299,299,299 +"1194","PV_MUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200152032734671,0.0303879420503012,0.00129992844970833,0.45,0.45,0.45,0.0133442316652335,0.00389581230793204,4.39969606570532e-05,299,299,299 +"1195","PV_MUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.199941650919663,0.0301350345500522,0.00130002908549186,0.45,0.45,0.45,0.00666620755141141,0.00192377586272549,2.19877190353903e-05,299,299,299 +"1196","PV_MUMC_biexp","st wall",10,0.3,0.012,0.0015,0.298023904016928,0.0321774338838152,0.00153452580530155,0.45,0.45,0.45,0.161634014328888,0.0492747590086314,0.000533257004546953,299,299,299 +"1197","PV_MUMC_biexp","st wall",30,0.3,0.012,0.0015,0.282564165732307,0.0143589906421383,0.0015521476980438,0.45,0.45,0.45,0.0672954043174911,0.00604975921241117,0.000195511671547606,299,299,299 +"1198","PV_MUMC_biexp","st wall",50,0.3,0.012,0.0015,0.282485950207945,0.0132910251735412,0.00154952110824206,0.45,0.45,0.45,0.0414670585791545,0.00269394728308602,0.000116680545563146,299,299,299 +"1199","PV_MUMC_biexp","st wall",100,0.3,0.012,0.0015,0.282721607034729,0.0128953989042575,0.00154867348929894,0.45,0.45,0.45,0.0210071304061686,0.00120056802082814,5.81997124889235e-05,299,299,299 +"1200","PV_MUMC_biexp","st wall",200,0.3,0.012,0.0015,0.282901507396517,0.0127926313384841,0.00154860370649833,0.45,0.45,0.45,0.0105397038722219,0.000580337571786342,2.9079611017769e-05,299,299,299 +"1201","PV_MUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69147034850835,0.0320827827705391,0.00124871997062398,0.45,0.45,0.45,0.105711327778677,0.0160018733594873,0.000901831520052427,299,299,299 +"1202","PV_MUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688093183592201,0.0294562213780215,0.0013270081480987,0.45,0.45,0.45,0.0452600702314974,0.0037166217263804,0.00039381399452838,299,299,299 +"1203","PV_MUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688966038447113,0.0291996015955392,0.00131674145662316,0.45,0.45,0.45,0.0271841976254947,0.00218348681124656,0.000231514013569066,299,299,299 +"1204","PV_MUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689413085205192,0.0290804523152176,0.00131311782217142,0.45,0.45,0.45,0.0135989073535134,0.00108324352525754,0.000114727925798872,299,299,299 +"1205","PV_MUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689573180928788,0.0290430944879027,0.00131259557706545,0.45,0.45,0.45,0.00680047676072954,0.000540559071296888,5.72226175924109e-05,299,299,299 +"1206","PV_MUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.911157661201933,0.123643660019881,0.000607355415641274,0.45,0.45,0.45,0.0263704296071724,0.0234808191547324,0.000781512767273926,299,299,299 +"1207","PV_MUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.971237368284223,0.106940870680377,0.000607372598717673,0.45,0.45,0.45,0.00908754536827744,0.00648210009257791,0.000781528535341981,299,299,299 +"1208","PV_MUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.982984250165467,0.104032609129434,0.000607380534286713,0.45,0.45,0.45,0.00546001928016874,0.00376732124549515,0.000781521963607196,299,299,299 +"1209","PV_MUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.991733932627642,0.101934073426748,0.000607404386458529,0.45,0.45,0.45,0.00268925596046031,0.00184607816687764,0.000781542209010902,299,299,299 +"1210","PV_MUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996022656879185,0.100931454917881,0.000607227933379224,0.45,0.45,0.45,0.00133610299004237,0.00091514738790242,0.000780813589540255,299,299,299 +"1211","PvH_KB_NKI_IVIMfit","Artery",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1212","PvH_KB_NKI_IVIMfit","Artery",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1213","PvH_KB_NKI_IVIMfit","Artery",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1214","PvH_KB_NKI_IVIMfit","Artery",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1215","PvH_KB_NKI_IVIMfit","Artery",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1216","PvH_KB_NKI_IVIMfit","asc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.45,0.45,0.45,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 +"1217","PvH_KB_NKI_IVIMfit","asc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 +"1218","PvH_KB_NKI_IVIMfit","asc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1219","PvH_KB_NKI_IVIMfit","asc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1220","PvH_KB_NKI_IVIMfit","asc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 +"1221","PvH_KB_NKI_IVIMfit","Blood RA",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1222","PvH_KB_NKI_IVIMfit","Blood RA",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1223","PvH_KB_NKI_IVIMfit","Blood RA",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1224","PvH_KB_NKI_IVIMfit","Blood RA",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1225","PvH_KB_NKI_IVIMfit","Blood RA",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1226","PvH_KB_NKI_IVIMfit","Blood RV",10,1,0.1,0.003,0.925854765740672,0.122594446175349,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1227","PvH_KB_NKI_IVIMfit","Blood RV",30,1,0.1,0.003,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1228","PvH_KB_NKI_IVIMfit","Blood RV",50,1,0.1,0.003,0.985264177302766,0.103511662747401,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1229","PvH_KB_NKI_IVIMfit","Blood RV",100,1,0.1,0.003,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1230","PvH_KB_NKI_IVIMfit","Blood RV",200,1,0.1,0.003,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1231","PvH_KB_NKI_IVIMfit","desc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494931,0.00145020569396961,0.45,0.45,0.45,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 +"1232","PvH_KB_NKI_IVIMfit","desc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.0659651209936009,0.0695342477735909,0.000430833853766582,299,299,299 +"1233","PvH_KB_NKI_IVIMfit","desc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1234","PvH_KB_NKI_IVIMfit","desc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.030464931163596,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1235","PvH_KB_NKI_IVIMfit","desc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.2174106371215e-05,299,299,299 +"1236","PvH_KB_NKI_IVIMfit","esophagus",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.45,0.45,0.45,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 +"1237","PvH_KB_NKI_IVIMfit","esophagus",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.45,0.45,0.45,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 +"1238","PvH_KB_NKI_IVIMfit","esophagus",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.45,0.45,0.45,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 +"1239","PvH_KB_NKI_IVIMfit","esophagus",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.45,0.45,0.45,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 +"1240","PvH_KB_NKI_IVIMfit","esophagus",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.45,0.45,0.45,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 +"1241","PvH_KB_NKI_IVIMfit","esophagus cont",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.45,0.45,0.45,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 +"1242","PvH_KB_NKI_IVIMfit","esophagus cont",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.45,0.45,0.45,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 +"1243","PvH_KB_NKI_IVIMfit","esophagus cont",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.45,0.45,0.45,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 +"1244","PvH_KB_NKI_IVIMfit","esophagus cont",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.45,0.45,0.45,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 +"1245","PvH_KB_NKI_IVIMfit","esophagus cont",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.45,0.45,0.45,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 +"1246","PvH_KB_NKI_IVIMfit","Left kidney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.45,0.45,0.45,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 +"1247","PvH_KB_NKI_IVIMfit","Left kidney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.45,0.45,0.45,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 +"1248","PvH_KB_NKI_IVIMfit","Left kidney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.45,0.45,0.45,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 +"1249","PvH_KB_NKI_IVIMfit","Left kidney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.45,0.45,0.45,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 +"1250","PvH_KB_NKI_IVIMfit","Left kidney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.45,0.45,0.45,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 +"1251","PvH_KB_NKI_IVIMfit","left kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.45,0.45,0.45,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 +"1252","PvH_KB_NKI_IVIMfit","left kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.45,0.45,0.45,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 +"1253","PvH_KB_NKI_IVIMfit","left kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.45,0.45,0.45,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 +"1254","PvH_KB_NKI_IVIMfit","left kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.45,0.45,0.45,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 +"1255","PvH_KB_NKI_IVIMfit","left kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.45,0.45,0.45,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 +"1256","PvH_KB_NKI_IVIMfit","Liver",10,0.11,0.1,0.0015,0.130553125135909,0.0509693625828437,0.0016065178196472,0.45,0.45,0.45,0.129706715815292,0.792719308738518,0.000572920768415419,299,299,299 +"1257","PvH_KB_NKI_IVIMfit","Liver",30,0.11,0.1,0.0015,0.110278145674883,0.149442129088004,0.00150011017405457,0.45,0.45,0.45,0.0601392900256081,0.625749782983355,0.000145272381840614,299,299,299 +"1258","PvH_KB_NKI_IVIMfit","Liver",50,0.11,0.1,0.0015,0.110399658585875,0.156527047310139,0.00149684450774862,0.45,0.45,0.45,0.0376036872310902,0.425066413433666,8.60313303494503e-05,299,299,299 +"1259","PvH_KB_NKI_IVIMfit","Liver",100,0.11,0.1,0.0015,0.110613242728435,0.113081530764667,0.00149725968516574,0.45,0.45,0.45,0.0187819737007067,0.139029982910973,4.28771429001848e-05,299,299,299 +"1260","PvH_KB_NKI_IVIMfit","Liver",200,0.11,0.1,0.0015,0.110409079705549,0.104936964791345,0.00149834160010346,0.45,0.45,0.45,0.00940444951440735,0.0672001936578303,2.14439959817085e-05,299,299,299 +"1261","PvH_KB_NKI_IVIMfit","Myocardium LV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.45,0.45,0.45,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 +"1262","PvH_KB_NKI_IVIMfit","Myocardium LV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.45,0.45,0.45,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 +"1263","PvH_KB_NKI_IVIMfit","Myocardium LV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.45,0.45,0.45,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 +"1264","PvH_KB_NKI_IVIMfit","Myocardium LV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.45,0.45,0.45,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 +"1265","PvH_KB_NKI_IVIMfit","Myocardium LV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.45,0.45,0.45,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 +"1266","PvH_KB_NKI_IVIMfit","myocardium ra",10,0.07,0.07,0.0015,0.104891587924175,0.00607975763165955,0.0016006526233169,0.45,0.45,0.45,0.118242882720712,0.784263691811179,0.000552215395037113,299,299,299 +"1267","PvH_KB_NKI_IVIMfit","myocardium ra",30,0.07,0.07,0.0015,0.0739083859817402,0.0645768275334392,0.0014995372849829,0.45,0.45,0.45,0.0552732082517841,0.772165078977779,0.000138751825608962,299,299,299 +"1268","PvH_KB_NKI_IVIMfit","myocardium ra",50,0.07,0.07,0.0015,0.0708663136362167,0.123754667071953,0.00149678850563412,0.45,0.45,0.45,0.0370810778303522,0.731555137917985,8.22913661782403e-05,299,299,299 +"1269","PvH_KB_NKI_IVIMfit","myocardium ra",100,0.07,0.07,0.0015,0.0706249468151481,0.0952858250331106,0.00149733160718627,0.45,0.45,0.45,0.0189664010793653,0.232113078306709,4.10318998599181e-05,299,299,299 +"1270","PvH_KB_NKI_IVIMfit","myocardium ra",200,0.07,0.07,0.0015,0.0704117897329917,0.0782860101683691,0.00149840262255921,0.45,0.45,0.45,0.00949705354554412,0.104550226230099,2.052244821904e-05,299,299,299 +"1271","PvH_KB_NKI_IVIMfit","myocardium RV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.45,0.45,0.45,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 +"1272","PvH_KB_NKI_IVIMfit","myocardium RV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.45,0.45,0.45,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 +"1273","PvH_KB_NKI_IVIMfit","myocardium RV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.45,0.45,0.45,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 +"1274","PvH_KB_NKI_IVIMfit","myocardium RV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.45,0.45,0.45,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 +"1275","PvH_KB_NKI_IVIMfit","myocardium RV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.45,0.45,0.45,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 +"1276","PvH_KB_NKI_IVIMfit","pancreas",10,0.15,0.01,0.00129999999999999,0.136937978548182,0.00740651793198569,0.0014215214212872,0.45,0.45,0.45,0.127266105496299,0.732213635772408,0.000486503747187268,299,299,299 +"1277","PvH_KB_NKI_IVIMfit","pancreas",30,0.15,0.01,0.00129999999999999,0.121887930651615,0.0763137640180288,0.00133959929142515,0.45,0.45,0.45,0.0568364469705239,0.636807478517948,0.000126780491704173,299,299,299 +"1278","PvH_KB_NKI_IVIMfit","pancreas",50,0.15,0.01,0.00129999999999999,0.122753935187266,0.0341776204631551,0.00133777754178323,0.45,0.45,0.45,0.0342667143936854,0.25609885196659,7.54325143220183e-05,299,299,299 +"1279","PvH_KB_NKI_IVIMfit","pancreas",100,0.15,0.01,0.00129999999999999,0.122866903165779,0.0198817713875208,0.00133844951393785,0.45,0.45,0.45,0.0171420721199015,0.115209943762463,3.76500896537364e-05,299,299,299 +"1280","PvH_KB_NKI_IVIMfit","pancreas",200,0.15,0.01,0.00129999999999999,0.122698908969178,0.0153586053551514,0.00133941675752602,0.45,0.45,0.45,0.00858477069866618,0.0566470440677396,1.8833704996794e-05,299,299,299 +"1281","PvH_KB_NKI_IVIMfit","pericardium",10,0.07,0.00999999999999999,0.003,0.200345432832572,0.0186626001573525,0.00287291963623568,0.45,0.45,0.45,0.191226965934387,0.511499382712566,0.000944685697624608,299,299,299 +"1282","PvH_KB_NKI_IVIMfit","pericardium",30,0.07,0.00999999999999999,0.003,0.0875410442211974,0.0439264206482478,0.00319637616853394,0.45,0.45,0.45,0.0985206186954527,0.520788624543118,0.000739212332980352,299,299,299 +"1283","PvH_KB_NKI_IVIMfit","pericardium",50,0.07,0.00999999999999999,0.003,0.0713588507505067,0.0343763501514692,0.0030838364312501,0.45,0.45,0.45,0.0723755425130893,0.468187571504604,0.000430508407815945,299,299,299 +"1284","PvH_KB_NKI_IVIMfit","pericardium",100,0.07,0.00999999999999999,0.003,0.0593432428582622,0.0319897344925359,0.00302450453014257,0.45,0.45,0.45,0.0457502568825803,0.346527742871074,0.000170492747418252,299,299,299 +"1285","PvH_KB_NKI_IVIMfit","pericardium",200,0.07,0.00999999999999999,0.003,0.0541407860947715,0.0270422083825517,0.00301893623987703,0.45,0.45,0.45,0.0277552901447244,0.292432776404661,8.24583932743335e-05,299,299,299 +"1286","PvH_KB_NKI_IVIMfit","right kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.45,0.45,0.45,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 +"1287","PvH_KB_NKI_IVIMfit","right kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.45,0.45,0.45,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 +"1288","PvH_KB_NKI_IVIMfit","right kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.45,0.45,0.45,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 +"1289","PvH_KB_NKI_IVIMfit","right kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.45,0.45,0.45,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 +"1290","PvH_KB_NKI_IVIMfit","right kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.45,0.45,0.45,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 +"1291","PvH_KB_NKI_IVIMfit","Right kydney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.45,0.45,0.45,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 +"1292","PvH_KB_NKI_IVIMfit","Right kydney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.45,0.45,0.45,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 +"1293","PvH_KB_NKI_IVIMfit","Right kydney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.45,0.45,0.45,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 +"1294","PvH_KB_NKI_IVIMfit","Right kydney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.45,0.45,0.45,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 +"1295","PvH_KB_NKI_IVIMfit","Right kydney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.45,0.45,0.45,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 +"1296","PvH_KB_NKI_IVIMfit","small intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.45,0.45,0.45,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 +"1297","PvH_KB_NKI_IVIMfit","small intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 +"1298","PvH_KB_NKI_IVIMfit","small intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1299","PvH_KB_NKI_IVIMfit","small intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1300","PvH_KB_NKI_IVIMfit","small intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 +"1301","PvH_KB_NKI_IVIMfit","spleen",10,0.2,0.03,0.00129999999999999,0.19599662156176,0.0613021299109845,0.00140454927731428,0.45,0.45,0.45,0.142733288723022,0.865447287904048,0.000582749143091828,299,299,299 +"1302","PvH_KB_NKI_IVIMfit","spleen",30,0.2,0.03,0.00129999999999999,0.197871845000451,0.0577937712781124,0.00130150037459746,0.45,0.45,0.45,0.055408133031037,0.277217446552304,0.00013547179107877,299,299,299 +"1303","PvH_KB_NKI_IVIMfit","spleen",50,0.2,0.03,0.00129999999999999,0.199033284978018,0.0416870355859719,0.00129916879604953,0.45,0.45,0.45,0.0330237742731732,0.145965289641754,8.0485438606961e-05,299,299,299 +"1304","PvH_KB_NKI_IVIMfit","spleen",100,0.2,0.03,0.00129999999999999,0.19917657455647,0.0350155098095822,0.00129971733953303,0.45,0.45,0.45,0.0165151433454204,0.0707993903611688,4.01541066264376e-05,299,299,299 +"1305","PvH_KB_NKI_IVIMfit","spleen",200,0.2,0.03,0.00129999999999999,0.199026311814169,0.0324096874623236,0.00130069837749038,0.45,0.45,0.45,0.00827092761229601,0.0352168114201335,2.00852625417637e-05,299,299,299 +"1306","PvH_KB_NKI_IVIMfit","st wall",10,0.3,0.012,0.0015,0.248638297229233,0.036411695424523,0.00172921114226417,0.45,0.45,0.45,0.166347389770017,0.707332243192263,0.000685672723936133,299,299,299 +"1307","PvH_KB_NKI_IVIMfit","st wall",30,0.3,0.012,0.0015,0.258772026363496,0.0293822581865603,0.00157517600100472,0.45,0.45,0.45,0.0644388435309329,0.202407559113073,0.000186844089466446,299,299,299 +"1308","PvH_KB_NKI_IVIMfit","st wall",50,0.3,0.012,0.0015,0.261282486348394,0.0209857397911496,0.00156758941794651,0.45,0.45,0.45,0.0377177202881088,0.108793385587951,0.000109279996332855,299,299,299 +"1309","PvH_KB_NKI_IVIMfit","st wall",100,0.3,0.012,0.0015,0.261756786309685,0.0167953481082953,0.00156685824436581,0.45,0.45,0.45,0.0187674242305055,0.0531745626261237,5.42621275679737e-05,299,299,299 +"1310","PvH_KB_NKI_IVIMfit","st wall",200,0.3,0.012,0.0015,0.261595673443184,0.0150031541093374,0.00156794185426091,0.45,0.45,0.45,0.00939312930329243,0.0264999219499804,2.71220994549821e-05,299,299,299 +"1311","PvH_KB_NKI_IVIMfit","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.680218362444095,0.0500663182494929,0.00145020569396961,0.45,0.45,0.45,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 +"1312","PvH_KB_NKI_IVIMfit","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.0659651209936008,0.0695342477735909,0.000430833853766582,299,299,299 +"1313","PvH_KB_NKI_IVIMfit","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832124,299,299,299 +"1314","PvH_KB_NKI_IVIMfit","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.685021723698742,0.030464931163596,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1315","PvH_KB_NKI_IVIMfit","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620522,5.2174106371215e-05,299,299,299 +"1316","PvH_KB_NKI_IVIMfit","Vein",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1317","PvH_KB_NKI_IVIMfit","Vein",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1318","PvH_KB_NKI_IVIMfit","Vein",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1319","PvH_KB_NKI_IVIMfit","Vein",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1320","PvH_KB_NKI_IVIMfit","Vein",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 From 2b60d2027e1c5c46e9c221d10726ef54491ac521 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 13:01:09 -0800 Subject: [PATCH 25/87] Custom alpha for each fit --- tests/IVIMmodels/unit_tests/compare.r | 47 +- .../unit_tests/reference_output.csv | 2642 ++++++++--------- 2 files changed, 1350 insertions(+), 1339 deletions(-) diff --git a/tests/IVIMmodels/unit_tests/compare.r b/tests/IVIMmodels/unit_tests/compare.r index a99ce44..49679cb 100644 --- a/tests/IVIMmodels/unit_tests/compare.r +++ b/tests/IVIMmodels/unit_tests/compare.r @@ -34,7 +34,7 @@ library(assertr) alpha <- 0.45 # be sensitive to changes # Define desired columns to keep -keep_columns_reference <- c("Algorithm", "Region", "SNR", "f", "Dp", "D", "f_mu", "Dp_mu", "D_mu", "f_alpha", "Dp_alpha", "D_alpha", "f_std", "Dp_std", "D_std", "f_df", "Dp_df", "D_df") +keep_columns_reference <- c("Algorithm", "Region", "SNR", "f", "Dp", "D", "f_mu", "Dp_mu", "D_mu", "f_t_alpha", "Dp_t_alpha", "D_t_alpha", "f_f_alpha", "Dp_f_alpha", "D_f_alpha", "f_std", "Dp_std", "D_std", "f_df", "Dp_df", "D_df") keep_columns_test <- c("Algorithm", "Region", "SNR", "index", "f", "Dp", "D", "f_fitted", "Dp_fitted", "D_fitted") test <- read_csv(test_file) %>% @@ -57,10 +57,13 @@ summary_data <- grouped_data %>% Dp_mu = mean(Dp_fitted), D_mu = mean(D_fitted), - # Also insert alpha values here - f_alpha = alpha, - Dp_alpha = alpha, - D_alpha = alpha, + # Also insert default alpha values here + f_t_alpha = alpha, + Dp_t_alpha = alpha, + D_t_alpha = alpha, + f_f_alpha = alpha, + Dp_f_alpha = alpha, + D_f_alpha = alpha, # Calculate group standard deviations f_std = sd(f_fitted), @@ -119,24 +122,32 @@ test_results <- reference_combined %>% Dp_ttest_upper = pt((Dp_mu.x - Dp_mu.y) / (Dp_std.x / sqrt(Dp_df.x + 1)), df=Dp_df.y, lower.tail=FALSE), D_ttest_lower = pt((D_mu.x - D_mu.y) / (D_std.x / sqrt(D_df.x + 1)), df=D_df.y, lower.tail=TRUE), D_ttest_upper = pt((D_mu.x - D_mu.y) / (D_std.x / sqrt(D_df.x + 1)), df=D_df.y, lower.tail=FALSE), + + # alphas from reference + f_f_alpha = f_f_alpha.y[1], + Dp_f_alpha = Dp_f_alpha.y[1], + D_f_alpha = D_f_alpha.y[1], + f_t_alpha = f_t_alpha.y[1], + Dp_t_alpha = Dp_t_alpha.y[1], + D_t_alpha = D_t_alpha.y[1], ) test_results <- test_results %>% mutate( - f_ftest_lower_null = f_ftest_lower >= alpha, - f_ftest_upper_null = f_ftest_upper >= alpha, - Dp_ftest_lower_null = Dp_ftest_lower >= alpha, - Dp_ftest_upper_null = Dp_ftest_upper >= alpha, - D_ftest_lower_null = D_ftest_lower >= alpha, - D_ftest_upper_null = D_ftest_upper >= alpha, - - f_ttest_lower_null = f_ttest_lower >= alpha, - f_ttest_upper_null = f_ttest_upper >= alpha, - Dp_ttest_lower_null = Dp_ttest_lower >= alpha, - Dp_ttest_upper_null = Dp_ttest_upper >= alpha, - D_ttest_lower_null = D_ttest_lower >= alpha, - D_ttest_upper_null = D_ttest_upper >= alpha, + f_ftest_lower_null = f_ftest_lower >= f_f_alpha, + f_ftest_upper_null = f_ftest_upper >= f_f_alpha, + Dp_ftest_lower_null = Dp_ftest_lower >= Dp_f_alpha, + Dp_ftest_upper_null = Dp_ftest_upper >= Dp_f_alpha, + D_ftest_lower_null = D_ftest_lower >= D_f_alpha, + D_ftest_upper_null = D_ftest_upper >= D_f_alpha, + + f_ttest_lower_null = f_ttest_lower >= f_t_alpha, + f_ttest_upper_null = f_ttest_upper >= f_t_alpha, + Dp_ttest_lower_null = Dp_ttest_lower >= Dp_t_alpha, + Dp_ttest_upper_null = Dp_ttest_upper >= Dp_t_alpha, + D_ttest_lower_null = D_ttest_lower >= D_t_alpha, + D_ttest_upper_null = D_ttest_upper >= D_t_alpha, ) diff --git a/tests/IVIMmodels/unit_tests/reference_output.csv b/tests/IVIMmodels/unit_tests/reference_output.csv index 435905d..bf7ce16 100644 --- a/tests/IVIMmodels/unit_tests/reference_output.csv +++ b/tests/IVIMmodels/unit_tests/reference_output.csv @@ -1,1321 +1,1321 @@ -"","Algorithm","Region","SNR","f","Dp","D","f_mu","Dp_mu","D_mu","f_alpha","Dp_alpha","D_alpha","f_std","Dp_std","D_std","f_df","Dp_df","D_df" -"1","ETP_SRI_LinearFitting","Artery",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 -"2","ETP_SRI_LinearFitting","Artery",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 -"3","ETP_SRI_LinearFitting","Artery",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 -"4","ETP_SRI_LinearFitting","Artery",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 -"5","ETP_SRI_LinearFitting","Artery",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"6","ETP_SRI_LinearFitting","asc lower intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 -"7","ETP_SRI_LinearFitting","asc lower intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,1.76780563288555,0.0425455021045266,0.00106933510259241,299,299,299 -"8","ETP_SRI_LinearFitting","asc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094785,0.000565757923733332,299,299,299 -"9","ETP_SRI_LinearFitting","asc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.45,0.45,0.45,0.0657882130636678,0.0129318475024161,0.000272558015550553,299,299,299 -"10","ETP_SRI_LinearFitting","asc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.45,0.45,0.45,0.0318472093243258,0.00994517539003604,0.000135584729312215,299,299,299 -"11","ETP_SRI_LinearFitting","Blood RA",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 -"12","ETP_SRI_LinearFitting","Blood RA",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 -"13","ETP_SRI_LinearFitting","Blood RA",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 -"14","ETP_SRI_LinearFitting","Blood RA",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 -"15","ETP_SRI_LinearFitting","Blood RA",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"16","ETP_SRI_LinearFitting","Blood RV",10,1,0.1,0.003,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 -"17","ETP_SRI_LinearFitting","Blood RV",30,1,0.1,0.003,0.593621105303909,0.0382494989565618,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335538,0.00202899165966831,299,299,299 -"18","ETP_SRI_LinearFitting","Blood RV",50,1,0.1,0.003,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 -"19","ETP_SRI_LinearFitting","Blood RV",100,1,0.1,0.003,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 -"20","ETP_SRI_LinearFitting","Blood RV",200,1,0.1,0.003,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"21","ETP_SRI_LinearFitting","desc lower intestine",10,0.69,0.029,0.00131,-1.78046847362474,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,15.8239651221778,0.0700506422948962,0.00211653751766345,299,299,299 -"22","ETP_SRI_LinearFitting","desc lower intestine",30,0.69,0.029,0.00131,0.475373627248901,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,1.76780563288553,0.0425455021045259,0.00106933510259241,299,299,299 -"23","ETP_SRI_LinearFitting","desc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094785,0.000565757923733331,299,299,299 -"24","ETP_SRI_LinearFitting","desc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.018072945218478,0.00128589506813888,0.45,0.45,0.45,0.0657882130636677,0.012931847502416,0.000272558015550553,299,299,299 -"25","ETP_SRI_LinearFitting","desc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447003,0.001295710009054,0.45,0.45,0.45,0.0318472093243258,0.00994517539003595,0.000135584729312215,299,299,299 -"26","ETP_SRI_LinearFitting","esophagus",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.45,0.45,0.45,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 -"27","ETP_SRI_LinearFitting","esophagus",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.45,0.45,0.45,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 -"28","ETP_SRI_LinearFitting","esophagus",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.45,0.45,0.45,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 -"29","ETP_SRI_LinearFitting","esophagus",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.45,0.45,0.45,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 -"30","ETP_SRI_LinearFitting","esophagus",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.45,0.45,0.45,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 -"31","ETP_SRI_LinearFitting","esophagus cont",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.45,0.45,0.45,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 -"32","ETP_SRI_LinearFitting","esophagus cont",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.45,0.45,0.45,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 -"33","ETP_SRI_LinearFitting","esophagus cont",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.45,0.45,0.45,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 -"34","ETP_SRI_LinearFitting","esophagus cont",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.45,0.45,0.45,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 -"35","ETP_SRI_LinearFitting","esophagus cont",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.45,0.45,0.45,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 -"36","ETP_SRI_LinearFitting","Left kidney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.45,0.45,0.45,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 -"37","ETP_SRI_LinearFitting","Left kidney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.45,0.45,0.45,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 -"38","ETP_SRI_LinearFitting","Left kidney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.45,0.45,0.45,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 -"39","ETP_SRI_LinearFitting","Left kidney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.45,0.45,0.45,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 -"40","ETP_SRI_LinearFitting","Left kidney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.45,0.45,0.45,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 -"41","ETP_SRI_LinearFitting","left kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.45,0.45,0.45,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 -"42","ETP_SRI_LinearFitting","left kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.45,0.45,0.45,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 -"43","ETP_SRI_LinearFitting","left kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.45,0.45,0.45,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 -"44","ETP_SRI_LinearFitting","left kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.45,0.45,0.45,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 -"45","ETP_SRI_LinearFitting","left kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.45,0.45,0.45,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 -"46","ETP_SRI_LinearFitting","Liver",10,0.11,0.1,0.0015,-3.67105854933764,0.0103322924138449,0.00161495986282209,0.45,0.45,0.45,50.5725151160169,0.100845172822066,0.00140857424525187,299,299,299 -"47","ETP_SRI_LinearFitting","Liver",30,0.11,0.1,0.0015,0.0969318407879205,0.0145642929149208,0.00147246699637093,0.45,0.45,0.45,0.269776485804268,0.0971893509566391,0.000377588902171262,299,299,299 -"48","ETP_SRI_LinearFitting","Liver",50,0.11,0.1,0.0015,0.112644420990274,0.0988492551721873,0.0014787002760584,0.45,0.45,0.45,0.150827871968332,0.380693459960368,0.000223664227770201,299,299,299 -"49","ETP_SRI_LinearFitting","Liver",100,0.11,0.1,0.0015,0.114915102854363,0.0889095920483081,0.00148764168516119,0.45,0.45,0.45,0.0738473058377525,0.328370788509957,0.000111502995637712,299,299,299 -"50","ETP_SRI_LinearFitting","Liver",200,0.11,0.1,0.0015,0.113341186733021,0.0725340532416588,0.00149339727236951,0.45,0.45,0.45,0.0368404978098108,0.138234643262059,5.57744401860227e-05,299,299,299 -"51","ETP_SRI_LinearFitting","Myocardium LV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.45,0.45,0.45,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 -"52","ETP_SRI_LinearFitting","Myocardium LV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.45,0.45,0.45,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 -"53","ETP_SRI_LinearFitting","Myocardium LV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.45,0.45,0.45,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 -"54","ETP_SRI_LinearFitting","Myocardium LV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.45,0.45,0.45,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 -"55","ETP_SRI_LinearFitting","Myocardium LV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.45,0.45,0.45,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 -"56","ETP_SRI_LinearFitting","myocardium ra",10,0.07,0.07,0.0015,-1.65951665423363,0.0177238771115808,0.00160957265059348,0.45,0.45,0.45,13.1554017697515,0.183131672721427,0.00136088593186554,299,299,299 -"57","ETP_SRI_LinearFitting","myocardium ra",30,0.07,0.07,0.0015,0.0589564569081104,0.0296093937203642,0.00147279822346654,0.45,0.45,0.45,0.266937871380083,0.242638673913433,0.000360646166742376,299,299,299 -"58","ETP_SRI_LinearFitting","myocardium ra",50,0.07,0.07,0.0015,0.0732759014900858,0.0328371698735262,0.00147933187029512,0.45,0.45,0.45,0.1504150174967,0.216423076996624,0.000213945675661325,299,299,299 -"59","ETP_SRI_LinearFitting","myocardium ra",100,0.07,0.07,0.0015,0.075067261558205,0.0677774461043471,0.00148810347075861,0.45,0.45,0.45,0.0738177865239001,0.269492649198698,0.000106705818256413,299,299,299 -"60","ETP_SRI_LinearFitting","myocardium ra",200,0.07,0.07,0.0015,0.0733792311780607,0.0623676153801111,0.00149366381082312,0.45,0.45,0.45,0.0368411946796926,0.237445081999106,5.33779360572001e-05,299,299,299 -"61","ETP_SRI_LinearFitting","myocardium RV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.45,0.45,0.45,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 -"62","ETP_SRI_LinearFitting","myocardium RV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.45,0.45,0.45,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 -"63","ETP_SRI_LinearFitting","myocardium RV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.45,0.45,0.45,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 -"64","ETP_SRI_LinearFitting","myocardium RV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.45,0.45,0.45,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 -"65","ETP_SRI_LinearFitting","myocardium RV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.45,0.45,0.45,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 -"66","ETP_SRI_LinearFitting","pancreas",10,0.15,0.01,0.00129999999999999,-0.650527215028878,0.00373368564161748,0.00138866565214997,0.45,0.45,0.45,4.93667394171624,0.00722474221217601,0.00119248691671331,299,299,299 -"67","ETP_SRI_LinearFitting","pancreas",30,0.15,0.01,0.00129999999999999,0.141181390443557,0.0571022180430843,0.00127631910355573,0.45,0.45,0.45,0.223328699407368,0.30235917617171,0.000329779178430446,299,299,299 -"68","ETP_SRI_LinearFitting","pancreas",50,0.15,0.01,0.00129999999999999,0.1510036083282,0.0152944083015561,0.00128385681159516,0.45,0.45,0.45,0.127982122939212,0.126325868230149,0.000196269231755713,299,299,299 -"69","ETP_SRI_LinearFitting","pancreas",100,0.15,0.01,0.00129999999999999,0.151847983395745,0.0131626451974964,0.00129232113375324,0.45,0.45,0.45,0.0631293755739931,0.0377927362687652,9.79894642257458e-05,299,299,299 -"70","ETP_SRI_LinearFitting","pancreas",200,0.15,0.01,0.00129999999999999,0.150332194355078,0.0109445926132955,0.00129741584499017,0.45,0.45,0.45,0.0315327839698718,0.00587272237819955,4.90247818549865e-05,299,299,299 -"71","ETP_SRI_LinearFitting","pericardium",10,0.07,0.00999999999999999,0.003,-1.71069455396435,0.00413806480279475,0.00222002363044559,0.45,0.45,0.45,11.3461458015308,0.00796330900457343,0.00214350424805972,299,299,299 -"72","ETP_SRI_LinearFitting","pericardium",30,0.07,0.00999999999999999,0.003,-2.91527744837181,0.00507173294709184,0.00321986504376209,0.45,0.45,0.45,18.8162955606326,0.0031589206110522,0.00176542899681745,299,299,299 -"73","ETP_SRI_LinearFitting","pericardium",50,0.07,0.00999999999999999,0.003,-0.725107480466489,0.0146143161821091,0.00308436166182826,0.45,0.45,0.45,5.02892397652847,0.139670661799305,0.0011228429935268,299,299,299 -"74","ETP_SRI_LinearFitting","pericardium",100,0.07,0.00999999999999999,0.003,0.0395072922651046,0.00739762781595787,0.00298132773142143,0.45,0.45,0.45,0.337660314112399,0.026548244280092,0.000442399989892903,299,299,299 -"75","ETP_SRI_LinearFitting","pericardium",200,0.07,0.00999999999999999,0.003,0.0717940918714239,0.0314985196375023,0.00298144117966044,0.45,0.45,0.45,0.139726244311711,0.210455939290863,0.000213771886702303,299,299,299 -"76","ETP_SRI_LinearFitting","right kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.45,0.45,0.45,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 -"77","ETP_SRI_LinearFitting","right kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.45,0.45,0.45,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 -"78","ETP_SRI_LinearFitting","right kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.45,0.45,0.45,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 -"79","ETP_SRI_LinearFitting","right kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.45,0.45,0.45,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 -"80","ETP_SRI_LinearFitting","right kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.45,0.45,0.45,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 -"81","ETP_SRI_LinearFitting","Right kydney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.45,0.45,0.45,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 -"82","ETP_SRI_LinearFitting","Right kydney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.45,0.45,0.45,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 -"83","ETP_SRI_LinearFitting","Right kydney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.45,0.45,0.45,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 -"84","ETP_SRI_LinearFitting","Right kydney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.45,0.45,0.45,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 -"85","ETP_SRI_LinearFitting","Right kydney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.45,0.45,0.45,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 -"86","ETP_SRI_LinearFitting","small intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 -"87","ETP_SRI_LinearFitting","small intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,1.76780563288555,0.0425455021045267,0.00106933510259241,299,299,299 -"88","ETP_SRI_LinearFitting","small intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094786,0.000565757923733332,299,299,299 -"89","ETP_SRI_LinearFitting","small intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.45,0.45,0.45,0.0657882130636678,0.0129318475024162,0.000272558015550553,299,299,299 -"90","ETP_SRI_LinearFitting","small intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.45,0.45,0.45,0.0318472093243258,0.00994517539003606,0.000135584729312215,299,299,299 -"91","ETP_SRI_LinearFitting","spleen",10,0.2,0.03,0.00129999999999999,-3.3740132522231,0.00553618298512768,0.00143433710820903,0.45,0.45,0.45,32.2937373001832,0.0199199575648861,0.00143622539626405,299,299,299 -"92","ETP_SRI_LinearFitting","spleen",30,0.2,0.03,0.00129999999999999,0.191616803068673,0.0524339373886503,0.00127246317690968,0.45,0.45,0.45,0.225231222917192,0.241188205504064,0.000351229948037188,299,299,299 -"93","ETP_SRI_LinearFitting","spleen",50,0.2,0.03,0.00129999999999999,0.202791755119256,0.039825290894353,0.0012798791928558,0.45,0.45,0.45,0.128062905075638,0.160615566355117,0.000208715871266267,299,299,299 -"94","ETP_SRI_LinearFitting","spleen",100,0.2,0.03,0.00129999999999999,0.204134185690545,0.0296901197338264,0.00128864343929708,0.45,0.45,0.45,0.063013883604555,0.059005431253839,0.000104155540475188,299,299,299 -"95","ETP_SRI_LinearFitting","spleen",200,0.2,0.03,0.00129999999999999,0.202743964725328,0.0217979487010552,0.0012939998603653,0.45,0.45,0.45,0.0314614070504959,0.0204643988878911,5.21071683813949e-05,299,299,299 -"96","ETP_SRI_LinearFitting","st wall",10,0.3,0.012,0.0015,-1.64610469307265,0.00469872580015407,0.0016722712729154,0.45,0.45,0.45,15.8055997491259,0.0116896306708749,0.00158171276921857,299,299,299 -"97","ETP_SRI_LinearFitting","st wall",30,0.3,0.012,0.0015,0.270890694864435,0.0145946544452255,0.00147533983907024,0.45,0.45,0.45,0.296176769896366,0.0644575311240057,0.000487785371238241,299,299,299 -"98","ETP_SRI_LinearFitting","st wall",50,0.3,0.012,0.0015,0.29676404903463,0.0206118664406517,0.00147812190285612,0.45,0.45,0.45,0.154483980727086,0.138058215589313,0.000285387872646462,299,299,299 -"99","ETP_SRI_LinearFitting","st wall",100,0.3,0.012,0.0015,0.302162253072998,0.0127072898874613,0.00148765340763967,0.45,0.45,0.45,0.0742535435648724,0.00999336152068087,0.000141764252457752,299,299,299 -"100","ETP_SRI_LinearFitting","st wall",200,0.3,0.012,0.0015,0.301306786736074,0.0115839512910052,0.00149453131653136,0.45,0.45,0.45,0.0369195438104536,0.0039251958924262,7.08740730226027e-05,299,299,299 -"101","ETP_SRI_LinearFitting","trans lower intestine",10,0.69,0.029,0.00130999999999999,-1.78046847362465,0.0165222897448011,0.0016441792429181,0.45,0.45,0.45,15.8239651221768,0.0700506422948976,0.00211653751766344,299,299,299 -"102","ETP_SRI_LinearFitting","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.475373627248902,0.0224567876012169,0.00136414593549871,0.45,0.45,0.45,1.7678056328855,0.042545502104526,0.00106933510259241,299,299,299 -"103","ETP_SRI_LinearFitting","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.164103675182257,0.0316288973094783,0.000565757923733331,299,299,299 -"104","ETP_SRI_LinearFitting","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689682968828103,0.018072945218478,0.00128589506813888,0.45,0.45,0.45,0.0657882130636677,0.0129318475024159,0.000272558015550553,299,299,299 -"105","ETP_SRI_LinearFitting","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.6916765650872,0.0183295045447003,0.001295710009054,0.45,0.45,0.45,0.0318472093243257,0.00994517539003592,0.000135584729312215,299,299,299 -"106","ETP_SRI_LinearFitting","Vein",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.45,0.45,0.45,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 -"107","ETP_SRI_LinearFitting","Vein",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,2.34878753731438,0.0820324479335514,0.00202899165966831,299,299,299 -"108","ETP_SRI_LinearFitting","Vein",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 -"109","ETP_SRI_LinearFitting","Vein",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 -"110","ETP_SRI_LinearFitting","Vein",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 -"111","IAR_LU_biexp","Artery",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.45,0.45,0.45,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 -"112","IAR_LU_biexp","Artery",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.45,0.45,0.45,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 -"113","IAR_LU_biexp","Artery",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.45,0.45,0.45,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 -"114","IAR_LU_biexp","Artery",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.45,0.45,0.45,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 -"115","IAR_LU_biexp","Artery",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.45,0.45,0.45,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 -"116","IAR_LU_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.697212667896394,0.0325023737565882,0.00113782850824108,0.45,0.45,0.45,0.0969149603369071,0.0150873113090282,0.00075651551093642,299,299,299 -"117","IAR_LU_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690042687609969,0.0293408736715589,0.00129733848997831,0.45,0.45,0.45,0.0360947595237916,0.00363625975881636,0.000283880194097926,299,299,299 -"118","IAR_LU_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.690035517241786,0.0291115984791372,0.00130238538452424,0.45,0.45,0.45,0.0214722239467864,0.00211805849668056,0.000167872936460034,299,299,299 -"119","IAR_LU_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.69001659059687,0.0290241717802667,0.00130617192275866,0.45,0.45,0.45,0.0106870876911403,0.00104662367079566,8.33919719679096e-05,299,299,299 -"120","IAR_LU_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.690006715696218,0.0290045215204471,0.001308087187188,0.45,0.45,0.45,0.00533599564952396,0.000521521540722386,4.16245932209183e-05,299,299,299 -"121","IAR_LU_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.45,0.45,0.45,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 -"122","IAR_LU_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.45,0.45,0.45,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 -"123","IAR_LU_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.45,0.45,0.45,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 -"124","IAR_LU_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.45,0.45,0.45,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 -"125","IAR_LU_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.45,0.45,0.45,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 -"126","IAR_LU_biexp","Blood RV",10,1,0.1,0.003,0.92647069528709,0.0982613762257002,0.000127034347081598,0.45,0.45,0.45,0.0215210674974187,0.0049615271733654,0.000371973812375611,299,299,299 -"127","IAR_LU_biexp","Blood RV",30,1,0.1,0.003,0.977495351986575,0.0994484053261729,8.6776830208335e-05,0.45,0.45,0.45,0.00692461752875168,0.00165005168400417,0.00029552015946517,299,299,299 -"128","IAR_LU_biexp","Blood RV",50,1,0.1,0.003,0.986847787847024,0.0996578523977876,7.50360360821851e-05,0.45,0.45,0.45,0.00411089364523165,0.00101750527880633,0.000278518469327793,299,299,299 -"129","IAR_LU_biexp","Blood RV",100,1,0.1,0.003,0.993665235855317,0.0998164880990098,5.78826114675235e-05,0.45,0.45,0.45,0.0020037885125151,0.000529926879857713,0.000263826199490928,299,299,299 -"130","IAR_LU_biexp","Blood RV",200,1,0.1,0.003,0.996952138241195,0.09990235409644,4.82142679154876e-05,0.45,0.45,0.45,0.000991618405480444,0.000274814551227168,0.000256559602777668,299,299,299 -"131","IAR_LU_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.697212667300357,0.0325023737719409,0.00113782851118961,0.45,0.45,0.45,0.0969149608678149,0.0150873112968303,0.00075651551240572,299,299,299 -"132","IAR_LU_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690042687627665,0.0293408736706232,0.00129733848988675,0.45,0.45,0.45,0.0360947594628279,0.00363625975619238,0.00028388019375974,299,299,299 -"133","IAR_LU_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.690035515572817,0.0291115986604859,0.00130238539842299,0.45,0.45,0.45,0.0214722257649461,0.002118058553172,0.000167872962249228,299,299,299 -"134","IAR_LU_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.690016590562107,0.0290241717827196,0.00130617192299434,0.45,0.45,0.45,0.0106870876869911,0.00104662367148246,8.33919720257604e-05,299,299,299 -"135","IAR_LU_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.690006715693301,0.0290045215206338,0.00130808718720708,0.45,0.45,0.45,0.00533599565206864,0.000521521540571046,4.1624593218652e-05,299,299,299 -"136","IAR_LU_biexp","esophagus",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.45,0.45,0.45,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 -"137","IAR_LU_biexp","esophagus",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.45,0.45,0.45,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 -"138","IAR_LU_biexp","esophagus",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.45,0.45,0.45,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 -"139","IAR_LU_biexp","esophagus",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.45,0.45,0.45,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 -"140","IAR_LU_biexp","esophagus",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.45,0.45,0.45,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 -"141","IAR_LU_biexp","esophagus cont",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.45,0.45,0.45,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 -"142","IAR_LU_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.45,0.45,0.45,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 -"143","IAR_LU_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.45,0.45,0.45,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 -"144","IAR_LU_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.45,0.45,0.45,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 -"145","IAR_LU_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.45,0.45,0.45,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 -"146","IAR_LU_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.45,0.45,0.45,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 -"147","IAR_LU_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.45,0.45,0.45,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 -"148","IAR_LU_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.45,0.45,0.45,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 -"149","IAR_LU_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.45,0.45,0.45,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 -"150","IAR_LU_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.45,0.45,0.45,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 -"151","IAR_LU_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.45,0.45,0.45,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 -"152","IAR_LU_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.45,0.45,0.45,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 -"153","IAR_LU_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.45,0.45,0.45,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 -"154","IAR_LU_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.45,0.45,0.45,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 -"155","IAR_LU_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.45,0.45,0.45,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 -"156","IAR_LU_biexp","Liver",10,0.11,0.1,0.0015,0.17150503347828,0.0585894869688638,0.00133082929506349,0.45,0.45,0.45,0.136516097304139,0.040090038616655,0.000354915450632941,299,299,299 -"157","IAR_LU_biexp","Liver",30,0.11,0.1,0.0015,0.116524922609641,0.0797461322710395,0.00147039590886351,0.45,0.45,0.45,0.0333445716851057,0.0273586641563357,9.54315771325179e-05,299,299,299 -"158","IAR_LU_biexp","Liver",50,0.11,0.1,0.0015,0.111213985993271,0.0871710843301268,0.00148797791711182,0.45,0.45,0.45,0.0154006163091042,0.0181177747169451,4.76546785250623e-05,299,299,299 -"159","IAR_LU_biexp","Liver",100,0.11,0.1,0.0015,0.110305056949762,0.0927872237401196,0.00149443585404214,0.45,0.45,0.45,0.00760367346398485,0.010636984816954,2.3490644652322e-05,299,299,299 -"160","IAR_LU_biexp","Liver",200,0.11,0.1,0.0015,0.110083101922637,0.0961088632553183,0.00149729667035132,0.45,0.45,0.45,0.00377409246386361,0.00589352197554721,1.16519052488367e-05,299,299,299 -"161","IAR_LU_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.45,0.45,0.45,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 -"162","IAR_LU_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.45,0.45,0.45,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 -"163","IAR_LU_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.45,0.45,0.45,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 -"164","IAR_LU_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.45,0.45,0.45,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 -"165","IAR_LU_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.45,0.45,0.45,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 -"166","IAR_LU_biexp","myocardium ra",10,0.07,0.07,0.0015,0.14434529830722,0.0496160441966283,0.00132998441282674,0.45,0.45,0.45,0.140855149533486,0.0404605423176663,0.000341449090754878,299,299,299 -"167","IAR_LU_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884934019340212,0.0605990186959302,0.00145501083368677,0.45,0.45,0.45,0.0492325838484117,0.0351976192418362,0.000113777290620505,299,299,299 -"168","IAR_LU_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0758647169781666,0.06791650050496,0.00148333041539624,0.45,0.45,0.45,0.0230456661351546,0.0291001629249576,5.93738477118657e-05,299,299,299 -"169","IAR_LU_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0708749125967571,0.0711936438005044,0.00149642377167344,0.45,0.45,0.45,0.00816500710666416,0.0192721206922887,2.43863373496943e-05,299,299,299 -"170","IAR_LU_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070182595378895,0.0711717683305259,0.00149896894166523,0.45,0.45,0.45,0.00403298414730219,0.0119620121584671,1.22446271475917e-05,299,299,299 -"171","IAR_LU_biexp","myocardium RV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.45,0.45,0.45,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 -"172","IAR_LU_biexp","myocardium RV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.45,0.45,0.45,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 -"173","IAR_LU_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.45,0.45,0.45,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 -"174","IAR_LU_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.45,0.45,0.45,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 -"175","IAR_LU_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.45,0.45,0.45,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 -"176","IAR_LU_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.194101487815807,0.0312758838743002,0.00120526646626578,0.45,0.45,0.45,0.163835605660646,0.0351134171828845,0.000389002224095764,299,299,299 -"177","IAR_LU_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.18057781110752,0.0172903815631494,0.00125161129207905,0.45,0.45,0.45,0.0946201475796243,0.0207613933514163,0.000184226392073428,299,299,299 -"178","IAR_LU_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.172218377812807,0.0122015061567802,0.00126461919523248,0.45,0.45,0.45,0.0680057817004279,0.0102895468472958,0.000126280292095513,299,299,299 -"179","IAR_LU_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156814390417323,0.010276360650811,0.00128831420397952,0.45,0.45,0.45,0.0330925441819963,0.00280594101449204,6.19579959599574e-05,299,299,299 -"180","IAR_LU_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151550794401852,0.0100513328503536,0.00129688092235998,0.45,0.45,0.45,0.0150249218350546,0.00127661999397567,2.91039408170828e-05,299,299,299 -"181","IAR_LU_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.285492213115468,0.0190670326981962,0.00226157462609275,0.45,0.45,0.45,0.295897833443307,0.0281974740030665,0.000970921790568731,299,299,299 -"182","IAR_LU_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171300202118549,0.0176658968150002,0.00279755619927794,0.45,0.45,0.45,0.192343219823375,0.0249759051303956,0.000428028390979465,299,299,299 -"183","IAR_LU_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.150556932149508,0.0186673286620893,0.00287029554388432,0.45,0.45,0.45,0.153716456740351,0.024823540168741,0.000300739466996796,299,299,299 -"184","IAR_LU_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.137271520897935,0.0160473990749268,0.00290927547149749,0.45,0.45,0.45,0.117893566693985,0.0195152724982985,0.000196241930893257,299,299,299 -"185","IAR_LU_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.102312394147559,0.0125930930414983,0.00295777596823617,0.45,0.45,0.45,0.0785041069510577,0.0109051130123374,0.000124246519340491,299,299,299 -"186","IAR_LU_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.45,0.45,0.45,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 -"187","IAR_LU_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.45,0.45,0.45,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 -"188","IAR_LU_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.45,0.45,0.45,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 -"189","IAR_LU_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.45,0.45,0.45,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 -"190","IAR_LU_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.45,0.45,0.45,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 -"191","IAR_LU_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.45,0.45,0.45,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 -"192","IAR_LU_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.45,0.45,0.45,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 -"193","IAR_LU_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.45,0.45,0.45,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 -"194","IAR_LU_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.45,0.45,0.45,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 -"195","IAR_LU_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.45,0.45,0.45,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 -"196","IAR_LU_biexp","small intestine",10,0.69,0.029,0.00131,0.697212667324408,0.0325023737670926,0.00113782851099832,0.45,0.45,0.45,0.0969149608580876,0.0150873112899437,0.000756515511829932,299,299,299 -"197","IAR_LU_biexp","small intestine",30,0.69,0.029,0.00131,0.690042687647921,0.0293408736692245,0.0012973384897293,0.45,0.45,0.45,0.0360947594630489,0.00363625975813661,0.000283880193523868,299,299,299 -"198","IAR_LU_biexp","small intestine",50,0.69,0.029,0.00131,0.690035515564786,0.0291115986613112,0.00130238539849337,0.45,0.45,0.45,0.0214722257688065,0.00211805855379368,0.000167872962555997,299,299,299 -"199","IAR_LU_biexp","small intestine",100,0.69,0.029,0.00131,0.690016590577353,0.0290241717816333,0.00130617192289034,0.45,0.45,0.45,0.0106870876894146,0.00104662367040614,8.33919719690564e-05,299,299,299 -"200","IAR_LU_biexp","small intestine",200,0.69,0.029,0.00131,0.690006715703415,0.0290045215198542,0.00130808718713812,0.45,0.45,0.45,0.00533599564919373,0.000521521540682779,4.16245931960093e-05,299,299,299 -"201","IAR_LU_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.258238381169185,0.0415855486936915,0.001156583030263,0.45,0.45,0.45,0.138972935730348,0.033199359136067,0.000392002777022699,299,299,299 -"202","IAR_LU_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206967214328514,0.0338919578464336,0.00128156423965599,0.45,0.45,0.45,0.0387633481889241,0.0175409201633337,0.000113885202343254,299,299,299 -"203","IAR_LU_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202249286598062,0.0312833908166694,0.00129256952434829,0.45,0.45,0.45,0.0221581511313069,0.00879736911181636,6.60123263011774e-05,299,299,299 -"204","IAR_LU_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200487080304842,0.0302504275785877,0.0012973937314337,0.45,0.45,0.45,0.0107457183685509,0.00383295563309727,3.20648907780344e-05,299,299,299 -"205","IAR_LU_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.20009205584711,0.030052736227119,0.00129897493246634,0.45,0.45,0.45,0.00531656690976873,0.00186528647470474,1.58727384991494e-05,299,299,299 -"206","IAR_LU_biexp","st wall",10,0.3,0.012,0.0015,0.361045681611347,0.0252956083225308,0.00131717399629326,0.45,0.45,0.45,0.20326722786523,0.0285647281439496,0.000612145460756818,299,299,299 -"207","IAR_LU_biexp","st wall",30,0.3,0.012,0.0015,0.323962428710257,0.0134193933845625,0.00143886841292422,0.45,0.45,0.45,0.0982083290063556,0.00798933272515384,0.000260082486221727,299,299,299 -"208","IAR_LU_biexp","st wall",50,0.3,0.012,0.0015,0.307361980831941,0.012384744394028,0.00147968648747327,0.45,0.45,0.45,0.0543906266860356,0.00311905673053413,0.000143561177270617,299,299,299 -"209","IAR_LU_biexp","st wall",100,0.3,0.012,0.0015,0.301677558443888,0.0120878361093821,0.00149434290424516,0.45,0.45,0.45,0.0263384511959087,0.0014322760683357,6.96636660243356e-05,299,299,299 -"210","IAR_LU_biexp","st wall",200,0.3,0.012,0.0015,0.300399087873271,0.0120193042665729,0.0014981386774852,0.45,0.45,0.45,0.0130979678723596,0.000698591450954127,3.46398328200195e-05,299,299,299 -"211","IAR_LU_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.697212667722101,0.0325023737662354,0.0011378285095022,0.45,0.45,0.45,0.0969149605281008,0.0150873112941006,0.00075651551328862,299,299,299 -"212","IAR_LU_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.69004268765537,0.0293408736684314,0.00129733848966368,0.45,0.45,0.45,0.0360947595155316,0.00363625976077757,0.000283880194085563,299,299,299 -"213","IAR_LU_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.690035515530053,0.0291115986633909,0.00130238539872579,0.45,0.45,0.45,0.0214722257310754,0.00211805855231437,0.00016787296220424,299,299,299 -"214","IAR_LU_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.690016590592847,0.0290241717807258,0.00130617192278856,0.45,0.45,0.45,0.0106870876903053,0.00104662367103972,8.33919719260138e-05,299,299,299 -"215","IAR_LU_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.690006715695885,0.0290045215203316,0.00130808718718679,0.45,0.45,0.45,0.00533599564581372,0.000521521540492688,4.16245931726914e-05,299,299,299 -"216","IAR_LU_biexp","Vein",10,1,0.1,0.00299999999999999,0.926470695260705,0.0982613762253741,0.000127034347223934,0.45,0.45,0.45,0.0215210674937771,0.00496152716857027,0.000371973810625793,299,299,299 -"217","IAR_LU_biexp","Vein",30,1,0.1,0.00299999999999999,0.977495351988701,0.0994484053257689,8.67768297506284e-05,0.45,0.45,0.45,0.00692461752649988,0.00165005168479494,0.000295520156728701,299,299,299 -"218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.45,0.45,0.45,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 -"219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.45,0.45,0.45,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 -"220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.45,0.45,0.45,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 -"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.93357125756588,0.0981824057921137,9.70556655449764e-05,0.45,0.45,0.45,0.0215315134276721,0.00482303584793265,0.000274616763185764,299,299,299 -"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660110268935,0.0989272085933608,0.000105473809804581,0.45,0.45,0.45,0.00718047466118973,0.00255361316987879,0.000389583944857625,299,299,299 -"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987514103349888,0.0993260391298794,0.000148072202348357,0.45,0.45,0.45,0.00427636510594884,0.00160588551097448,0.000555365246863575,299,299,299 -"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993793307849017,0.0996313448733502,0.000655254255029264,0.45,0.45,0.45,0.00223734437145938,0.000849556669685874,0.000800760137727388,299,299,299 -"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.99684405668737,0.0998137178793031,0.000906836378548677,0.45,0.45,0.45,0.00122808782928517,0.000406425988856157,0.000905488912443852,299,299,299 -"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701153882747051,0.037677879418835,0.00123508518796054,0.45,0.45,0.45,0.083853137361322,0.0142605766805178,0.000698497407638553,299,299,299 -"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689271724678096,0.030568203138744,0.00132582632252109,0.45,0.45,0.45,0.0343156090089035,0.00387566884564754,0.000274550449659142,299,299,299 -"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689073105444599,0.0296140415443145,0.00131663493702091,0.45,0.45,0.45,0.0211213893218192,0.00231682080582957,0.000165695600936479,299,299,299 -"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689265158634317,0.0291644597762591,0.00131220109986762,0.45,0.45,0.45,0.0106117507761787,0.00118686819615474,8.31671782954059e-05,299,299,299 -"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566447613064,0.0290654340531287,0.00131121369876702,0.45,0.45,0.45,0.00531431427053799,0.000596547047186578,4.16133352129848e-05,299,299,299 -"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933568915804888,0.0981815937937353,9.71488766917606e-05,0.45,0.45,0.45,0.0215361602153026,0.00482243091883048,0.000276382702854826,299,299,299 -"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978668554100672,0.09892459231783,0.000104649751533448,0.45,0.45,0.45,0.00717199477241337,0.00256579266357723,0.000388120676954327,299,299,299 -"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987499890059773,0.0993268562116793,0.000131500308633551,0.45,0.45,0.45,0.0042311511500056,0.00160458520709858,0.000496367352128361,299,299,299 -"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790992815501,0.0996356224488253,0.000677954139424538,0.45,0.45,0.45,0.00224609436717979,0.000848842434195585,0.00084302370139269,299,299,299 -"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996842913497317,0.0998091622675121,0.000941428392822257,0.45,0.45,0.45,0.00123388162122495,0.000427256038723588,0.000904896076246016,299,299,299 -"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.93358308708098,0.098165877792147,9.69042470108521e-05,0.45,0.45,0.45,0.0215425402730198,0.0048255909004563,0.000274579098493578,299,299,299 -"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978680186830582,0.0989258565451091,0.00011822526423205,0.45,0.45,0.45,0.00719781182261384,0.00255991496055216,0.000449639777751245,299,299,299 -"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987519685564835,0.0993174961989465,0.00015556222732223,0.45,0.45,0.45,0.00427794032284088,0.00163167598089201,0.00057511924957297,299,299,299 -"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993788312565995,0.0996310500024382,0.000669650273773522,0.45,0.45,0.45,0.00226173234937702,0.000847082809629555,0.000800879682365674,299,299,299 -"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996852398204192,0.099806343658245,0.000935560984427118,0.45,0.45,0.45,0.0012250133834896,0.000445707744182514,0.000929970791555061,299,299,299 -"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701167268748306,0.0376557028697764,0.00123545028911568,0.45,0.45,0.45,0.0837572509930543,0.0142030501638213,0.000699607339104532,299,299,299 -"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689297249700858,0.030567007394227,0.00132576568546701,0.45,0.45,0.45,0.0343109923359163,0.00387454213929185,0.000274566392816788,299,299,299 -"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689083359079487,0.0296132551807272,0.00131658256107176,0.45,0.45,0.45,0.0211177455608938,0.00231679298754261,0.000165656452857739,299,299,299 -"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689242744963318,0.0291667234515168,0.00131235700166641,0.45,0.45,0.45,0.0105967248433205,0.00118321919949295,8.30363527638792e-05,299,299,299 -"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689571332166992,0.029065184485476,0.0013112007081306,0.45,0.45,0.45,0.00530674678926696,0.00059401011661812,4.15650879294298e-05,299,299,299 -"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.401348332338983,0.0443068426146696,0.00153897276631267,0.45,0.45,0.45,0.10231849355244,0.0257186377650331,0.000432787613477337,299,299,299 -"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337494416126886,0.0333320931172689,0.00164838967947682,0.45,0.45,0.45,0.0404553801582183,0.00974663084357603,0.000155234018001702,299,299,299 -"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327733069208594,0.031294054995077,0.00165951829034375,0.45,0.45,0.45,0.0251850625356227,0.00505150492935743,9.38160268196753e-05,299,299,299 -"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.321539248423835,0.0303875052451309,0.0016673077586464,0.45,0.45,0.45,0.0130520719565539,0.00247661253754486,4.74051429857883e-05,299,299,299 -"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.319954019986516,0.030129188309861,0.00166961661468074,0.45,0.45,0.45,0.00671482007534348,0.00124908665253888,2.38145942456643e-05,299,299,299 -"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.401117895996408,0.0445006714864347,0.00153993656349967,0.45,0.45,0.45,0.10251903001171,0.0258556224622928,0.000432378852467023,299,299,299 -"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337486040702455,0.0333277888555187,0.00164841371587985,0.45,0.45,0.45,0.0404331931709914,0.00971548914978589,0.00015505648707373,299,299,299 -"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.3276954530205,0.0313060455554659,0.00165968347470075,0.45,0.45,0.45,0.0252274807431153,0.00504595524945946,9.39935630581377e-05,299,299,299 -"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321602382596772,0.0303697957051882,0.00166707905178584,0.45,0.45,0.45,0.013022737224839,0.00246765998644714,4.73779280742386e-05,299,299,299 -"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319928506079778,0.0301341833093661,0.00166968503900113,0.45,0.45,0.45,0.00673309903308556,0.00124507252231446,2.38699573898028e-05,299,299,299 -"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.251433691433464,0.04718602711686,0.00187394235156353,0.45,0.45,0.45,0.153084018704544,0.0327311939963684,0.000510272364755671,299,299,299 -"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152054871769993,0.0339424263187974,0.00204264722710367,0.45,0.45,0.45,0.0760703623790001,0.0273536018482561,0.000194150716769437,299,299,299 -"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125815626397911,0.0289115874193625,0.00208024763111182,0.45,0.45,0.45,0.0480015283098486,0.0222289479413338,0.000120319947911555,299,299,299 -"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.10930971344899,0.0209563752629134,0.00210010169059032,0.45,0.45,0.45,0.0201809889404505,0.00813377585502031,5.49503210802345e-05,299,299,299 -"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.102557979182238,0.0195492891069927,0.0021091688721948,0.45,0.45,0.45,0.0098860569885803,0.00303931508795855,2.70453744227864e-05,299,299,299 -"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.28810889290007,0.0468579466072958,0.00187351885565154,0.45,0.45,0.45,0.153733255614966,0.0329378323483128,0.00054591315065378,299,299,299 -"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.195294690699443,0.0296691527732733,0.00204280342161752,0.45,0.45,0.45,0.0710720655630101,0.0217103256834568,0.000203928411277656,299,299,299 -"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174270972233881,0.0242566041304212,0.0020724552660825,0.45,0.45,0.45,0.0416217104499037,0.012983631619332,0.00012176413615959,299,299,299 -"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163286897343228,0.0203075707276222,0.00208416333368101,0.45,0.45,0.45,0.0210425102873922,0.00392351379926325,6.10837071385173e-05,299,299,299 -"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158920127120984,0.0194342060732113,0.00208908709103361,0.45,0.45,0.45,0.0109982798193607,0.00196019636191494,3.13876828444379e-05,299,299,299 -"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.240713234074954,0.0643515982610474,0.00133075351235401,0.45,0.45,0.45,0.10083923728493,0.0343182289130771,0.000298708310668488,299,299,299 -"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140980773897648,0.0799869945494431,0.00145814043815725,0.45,0.45,0.45,0.0327060470077203,0.0262013071999071,8.88827031007845e-05,299,299,299 -"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.123095260001383,0.0869747499143492,0.00148128682442063,0.45,0.45,0.45,0.0184366399112419,0.0178772212058813,4.84685872198609e-05,299,299,299 -"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113748535028757,0.0925349904053821,0.00149249438096273,0.45,0.45,0.45,0.00971704577356645,0.0104829346282735,2.39448524712466e-05,299,299,299 -"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111149845686814,0.0957804886944311,0.00149660018797951,0.45,0.45,0.45,0.00523750465183297,0.00572764608914371,1.19291653696488e-05,299,299,299 -"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.291564767292008,0.063532806280998,0.00207458044633807,0.45,0.45,0.45,0.126699986383466,0.0336105404937815,0.000516812708964973,299,299,299 -"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177682223490815,0.0766941218720376,0.00234675263428843,0.45,0.45,0.45,0.0363954094796405,0.0240906819280758,0.0001522269320299,299,299,299 -"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160887379705585,0.0793177246207811,0.00237830824589721,0.45,0.45,0.45,0.0207575826665988,0.0182673651214206,8.78297335057793e-05,299,299,299 -"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152009784324078,0.0806527732544861,0.00239457286984621,0.45,0.45,0.45,0.010862303260046,0.0120040798123006,4.42993562823217e-05,299,299,299 -"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.15022425223167,0.0804191141048672,0.00239850236398185,0.45,0.45,0.45,0.00574178432916829,0.00695781774794095,2.25943861318448e-05,299,299,299 -"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.216943117192828,0.0555806274869532,0.00133174561199934,0.45,0.45,0.45,0.106950833833174,0.0338122250617546,0.000296488298499381,299,299,299 -"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114246761368671,0.0611443318832659,0.00144608111899403,0.45,0.45,0.45,0.0410924579737273,0.0318708637105381,9.69273404098012e-05,299,299,299 -"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906884465398401,0.0663674045854295,0.00147516344497932,0.45,0.45,0.45,0.0230352360440237,0.0267918440114683,5.63997822878352e-05,299,299,299 -"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0764240040377867,0.0701908475640152,0.00149197646409364,0.45,0.45,0.45,0.0111566819054461,0.020719638071576,2.77939968263688e-05,299,299,299 -"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711460544040154,0.0711697149197762,0.00149830682957115,0.45,0.45,0.45,0.00549025852877168,0.0123859848752068,1.32079889993739e-05,299,299,299 -"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.292676509733734,0.0628308941986845,0.00207075244924492,0.45,0.45,0.45,0.126989401532164,0.0336225056228985,0.000516687693216435,299,299,299 -"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.177626519755466,0.0767361190056652,0.00234694551031708,0.45,0.45,0.45,0.0363751749099445,0.0240258916112023,0.000151971097364274,299,299,299 -"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.16092478337997,0.0792437555380092,0.00237816913420684,0.45,0.45,0.45,0.0207841005571506,0.0182539685113319,8.79239017119467e-05,299,299,299 -"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152022734528309,0.0806240685248349,0.00239452307618176,0.45,0.45,0.45,0.0108853273378637,0.0119950076559221,4.43602511430181e-05,299,299,299 -"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201860515418,0.0804718479325828,0.00239858867446421,0.45,0.45,0.45,0.00573245608358257,0.00697178946535427,2.25462252722093e-05,299,299,299 -"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.250117783205428,0.0430145385041461,0.001233392739257,0.45,0.45,0.45,0.126865840514046,0.0330380781682586,0.000345008314499143,299,299,299 -"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.183147173359499,0.0218944634602871,0.00127837966982928,0.45,0.45,0.45,0.0710255618968277,0.0221029293062734,0.000149862796337412,299,299,299 -"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170095061035692,0.0142818280482212,0.0012845516145822,0.45,0.45,0.45,0.0496553470110429,0.0104565857739364,9.93729022744642e-05,299,299,299 -"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156792382358262,0.0112560176296832,0.00129557097207587,0.45,0.45,0.45,0.0275403363717371,0.00279448217865639,5.3624873800157e-05,299,299,299 -"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151382338405453,0.010446491873233,0.00129982651077626,0.45,0.45,0.45,0.0140601033702455,0.00130683104985259,2.72532380611039e-05,299,299,299 -"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.258157091081439,0.0470155643015073,0.00249721149290686,0.45,0.45,0.45,0.212525237472612,0.0335219157163406,0.00081405118655344,299,299,299 -"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.152185774432951,0.0360554795643403,0.00284115383580455,0.45,0.45,0.45,0.158229553482523,0.0308790268701099,0.000396051854748563,299,299,299 -"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.134316805802551,0.032334895050825,0.00289214756479077,0.45,0.45,0.45,0.137098452317649,0.0312345769322997,0.000290948400860348,299,299,299 -"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.118519413196598,0.0221717191704132,0.00293163954096316,0.45,0.45,0.45,0.105607876167745,0.0255796319959072,0.000189833178966201,299,299,299 -"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0993372549574482,0.0124668429100087,0.00295804649559184,0.45,0.45,0.45,0.0709523775787972,0.00985652336246177,0.00011832159811549,299,299,299 -"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.287551878127385,0.0466858396560634,0.0018747019387436,0.45,0.45,0.45,0.154364549230104,0.032736967342244,0.000549946579855602,299,299,299 -"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194997842982468,0.0298067532882456,0.00204372392640597,0.45,0.45,0.45,0.0710286711490384,0.0217668318545726,0.000204077002523849,299,299,299 -"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174283358638892,0.0242499436400705,0.002072486552713,0.45,0.45,0.45,0.0416188408712607,0.0129884488485282,0.000121619597592877,299,299,299 -"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163285984880146,0.0203081548623067,0.00208415004704966,0.45,0.45,0.45,0.0210870722311707,0.003921529998946,6.11172067758032e-05,299,299,299 -"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.158942258093868,0.0194245432411219,0.00208903078297127,0.45,0.45,0.45,0.0109463379788263,0.00193091071529793,3.11524879514303e-05,299,299,299 -"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248873725195769,0.047996659374673,0.00188339556611961,0.45,0.45,0.45,0.149313763204719,0.0331320650423645,0.00050321463833507,299,299,299 -"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.15215758371251,0.0341077091916034,0.00204227524597511,0.45,0.45,0.45,0.0767274700225168,0.0272208534081652,0.000194912068404044,299,299,299 -"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125594235789353,0.0291148652885148,0.00208075394921138,0.45,0.45,0.45,0.047923436634871,0.0224446091027042,0.00012030056832824,299,299,299 -"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109367433991571,0.0209357388138711,0.0020999888623546,0.45,0.45,0.45,0.0202634089239477,0.00815736340342668,5.50503270697327e-05,299,299,299 -"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.10276826147688,0.0194615527681688,0.0021086759908194,0.45,0.45,0.45,0.00959345475031173,0.00296003721780637,2.66507245885503e-05,299,299,299 -"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701222093031369,0.0376573243204067,0.00123522200914479,0.45,0.45,0.45,0.083821891621118,0.0142347122686887,0.000699757862549052,299,299,299 -"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689248383604906,0.0305726777608476,0.00132602854952806,0.45,0.45,0.45,0.0343368562916266,0.00388093347991032,0.000274580747606178,299,299,299 -"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689059298868095,0.0296152528040005,0.0013167001600601,0.45,0.45,0.45,0.0211100355325202,0.00231623097039335,0.000165590617950021,299,299,299 -"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689257789390009,0.0291652570752426,0.00131226270039138,0.45,0.45,0.45,0.0106083270549541,0.00118455986988015,8.31695903142742e-05,299,299,299 -"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689563836909958,0.0290656606913855,0.00131122341894688,0.45,0.45,0.45,0.00531727145181668,0.000596339182443615,4.16105434890594e-05,299,299,299 -"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.30734073778793,0.0474265708388755,0.00118146394276549,0.45,0.45,0.45,0.0992197524985585,0.029567967208592,0.000310430603272232,299,299,299 -"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.2267296957555,0.0357545770793252,0.00127423477945577,0.45,0.45,0.45,0.0384811656373676,0.0166246694163928,0.00010604973308596,299,299,299 -"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212835050121119,0.0322186457621597,0.0012872737771478,0.45,0.45,0.45,0.0240164483400916,0.0084621764386231,6.46344239905471e-05,299,299,299 -"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203904571097261,0.0305952461464594,0.00129565709726008,0.45,0.45,0.45,0.0124093006007493,0.00376953295665766,3.24142808590257e-05,299,299,299 -"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200600595724158,0.0301748142832744,0.00129894859398528,0.45,0.45,0.45,0.00657659349981071,0.00188470012274508,1.64103765409298e-05,299,299,299 -"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.362781911976871,0.0340311223599806,0.00144953286468647,0.45,0.45,0.45,0.149311839641177,0.0281015491564776,0.000521202377661773,299,299,299 -"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.30883563566145,0.0166068831883409,0.00151085331596662,0.45,0.45,0.45,0.0726296261657129,0.00802518068130869,0.000207444437824182,299,299,299 -"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300652637586296,0.0141425380258619,0.00151424601811367,0.45,0.45,0.45,0.0460905409855043,0.00348324812251533,0.000127680264509092,299,299,299 -"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.298671731734528,0.0127459140095052,0.00150803459150432,0.45,0.45,0.45,0.0247120383656466,0.00159567927393779,6.65934613734605e-05,299,299,299 -"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.298450618695395,0.012253948572961,0.0015044383071657,0.45,0.45,0.45,0.012830006430066,0.000752738191197432,3.39327042827762e-05,299,299,299 -"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701184260467898,0.0376737102089551,0.0012350457467426,0.45,0.45,0.45,0.0837975464441198,0.0142696180955637,0.00069830711301017,299,299,299 -"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689282338065983,0.0305681166785389,0.00132582547193319,0.45,0.45,0.45,0.0342934823108316,0.00387429914578415,0.000274349189569308,299,299,299 -"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689082235857123,0.0296123280266747,0.00131652217178431,0.45,0.45,0.45,0.0211208123683363,0.002317039374728,0.000165678643347599,299,299,299 -"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689250336828392,0.0291658422028105,0.00131229563467827,0.45,0.45,0.45,0.0106001818251014,0.0011852240490074,8.30867665649776e-05,299,299,299 -"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689568018721775,0.0290652596335112,0.00131120209108787,0.45,0.45,0.45,0.00530918334066781,0.000595034380020002,4.15809160244039e-05,299,299,299 -"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933569110357815,0.0981835406129829,9.69548902358382e-05,0.45,0.45,0.45,0.0215402532787278,0.00481432877877674,0.000274729102833124,299,299,299 -"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978666396174865,0.0989243913022118,0.00010485583201623,0.45,0.45,0.45,0.00717419721294456,0.00256557664331277,0.000387765107847003,299,299,299 -"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987503315693407,0.0993331051337483,0.000111204899205781,0.45,0.45,0.45,0.00423943071628697,0.00159594297096,0.00042488761578149,299,299,299 -"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993781769224997,0.0996376044412155,0.00067687744221044,0.45,0.45,0.45,0.00226030795219935,0.000833875391060671,0.000818867866154746,299,299,299 -"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996848510099491,0.0998113020733052,0.000952371074665549,0.45,0.45,0.45,0.00122993253484535,0.000429856534294685,0.000897485935426085,299,299,299 -"331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 -"332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 -"333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 -"334","IAR_LU_modified_topopro","Artery",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.45,0.45,0.45,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 -"335","IAR_LU_modified_topopro","Artery",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.45,0.45,0.45,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 -"336","IAR_LU_modified_topopro","asc lower intestine",10,0.69,0.029,0.00131,0.693578780504134,0.0415355532662142,0.00128103308321534,0.45,0.45,0.45,0.0970509533929983,0.0236823442169324,0.000819226976703706,299,299,299 -"337","IAR_LU_modified_topopro","asc lower intestine",30,0.69,0.029,0.00131,0.687810582166082,0.0307536147510959,0.0013382900074825,0.45,0.45,0.45,0.0353144143147495,0.00435917556566684,0.000286310629098516,299,299,299 -"338","IAR_LU_modified_topopro","asc lower intestine",50,0.69,0.029,0.00131,0.688721295105845,0.0296257289906534,0.00131893797782168,0.45,0.45,0.45,0.0212465084180936,0.00249048940612626,0.000169271398329773,299,299,299 -"339","IAR_LU_modified_topopro","asc lower intestine",100,0.69,0.029,0.00131,0.689845828253077,0.0290894790629384,0.001307501525805,0.45,0.45,0.45,0.0107195144339221,0.00127256025225725,8.483351662592e-05,299,299,299 -"340","IAR_LU_modified_topopro","asc lower intestine",200,0.69,0.029,0.00131,0.689825939977317,0.0290142120213539,0.00130847683836763,0.45,0.45,0.45,0.00555750265488881,0.000601294931615333,4.25435274843115e-05,299,299,299 -"341","IAR_LU_modified_topopro","Blood RA",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 -"342","IAR_LU_modified_topopro","Blood RA",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 -"343","IAR_LU_modified_topopro","Blood RA",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 -"344","IAR_LU_modified_topopro","Blood RA",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.45,0.45,0.45,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 -"345","IAR_LU_modified_topopro","Blood RA",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.45,0.45,0.45,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 -"346","IAR_LU_modified_topopro","Blood RV",10,1,0.1,0.003,0.920296650622447,0.125293033588126,0.000183447331029076,0.45,0.45,0.45,0.0226806331224816,0.0244333472528567,0.000584106662250704,299,299,299 -"347","IAR_LU_modified_topopro","Blood RV",30,1,0.1,0.003,0.974303991283049,0.106099273671618,0.000177399100029965,0.45,0.45,0.45,0.00748957829912673,0.00829547736585587,0.000678897095895847,299,299,299 -"348","IAR_LU_modified_topopro","Blood RV",50,1,0.1,0.003,0.984941578599012,0.103360682474306,0.000155910408472978,0.45,0.45,0.45,0.00447576585770208,0.00495498740401099,0.000644237899348858,299,299,299 -"349","IAR_LU_modified_topopro","Blood RV",100,1,0.1,0.003,0.992841726733044,0.101349324599851,0.000128756832432632,0.45,0.45,0.45,0.00221528951841681,0.00248392277283552,0.000596162471686369,299,299,299 -"350","IAR_LU_modified_topopro","Blood RV",200,1,0.1,0.003,0.996733416462042,0.100300501347642,0.000119817129447202,0.45,0.45,0.45,0.00117145369846812,0.00100883159979159,0.000632414305364842,299,299,299 -"351","IAR_LU_modified_topopro","desc lower intestine",10,0.69,0.029,0.00131,0.69353255335075,0.0415612047930334,0.00128569612698868,0.45,0.45,0.45,0.0970827204927868,0.0237638891843294,0.000822921583808708,299,299,299 -"352","IAR_LU_modified_topopro","desc lower intestine",30,0.69,0.029,0.00131,0.687529033131503,0.0307864248323058,0.00133992030563751,0.45,0.45,0.45,0.035340761383201,0.00434360018542071,0.00028557595909565,299,299,299 -"353","IAR_LU_modified_topopro","desc lower intestine",50,0.69,0.029,0.00131,0.688938060964252,0.0296002490456439,0.00131726956556521,0.45,0.45,0.45,0.0212284246706342,0.00247366753913384,0.000167933611102375,299,299,299 -"354","IAR_LU_modified_topopro","desc lower intestine",100,0.69,0.029,0.00131,0.689803781014276,0.0290940234426647,0.00130741787888986,0.45,0.45,0.45,0.0110120008034572,0.00127088911766303,8.45797308420218e-05,299,299,299 -"355","IAR_LU_modified_topopro","desc lower intestine",200,0.69,0.029,0.00131,0.689784230390506,0.0290189623695888,0.00130868523568613,0.45,0.45,0.45,0.00553639486233176,0.000608258415769342,4.23025595359244e-05,299,299,299 -"356","IAR_LU_modified_topopro","esophagus",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.45,0.45,0.45,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 -"357","IAR_LU_modified_topopro","esophagus",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.45,0.45,0.45,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 -"358","IAR_LU_modified_topopro","esophagus",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.45,0.45,0.45,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 -"359","IAR_LU_modified_topopro","esophagus",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.45,0.45,0.45,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 -"360","IAR_LU_modified_topopro","esophagus",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.45,0.45,0.45,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 -"361","IAR_LU_modified_topopro","esophagus cont",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.45,0.45,0.45,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 -"362","IAR_LU_modified_topopro","esophagus cont",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.45,0.45,0.45,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 -"363","IAR_LU_modified_topopro","esophagus cont",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.45,0.45,0.45,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 -"364","IAR_LU_modified_topopro","esophagus cont",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.45,0.45,0.45,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 -"365","IAR_LU_modified_topopro","esophagus cont",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.45,0.45,0.45,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 -"366","IAR_LU_modified_topopro","Left kidney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.45,0.45,0.45,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 -"367","IAR_LU_modified_topopro","Left kidney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.45,0.45,0.45,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 -"368","IAR_LU_modified_topopro","Left kidney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.45,0.45,0.45,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 -"369","IAR_LU_modified_topopro","Left kidney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.45,0.45,0.45,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 -"370","IAR_LU_modified_topopro","Left kidney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.45,0.45,0.45,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 -"371","IAR_LU_modified_topopro","left kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.45,0.45,0.45,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 -"372","IAR_LU_modified_topopro","left kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.45,0.45,0.45,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 -"373","IAR_LU_modified_topopro","left kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.45,0.45,0.45,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 -"374","IAR_LU_modified_topopro","left kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.45,0.45,0.45,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 -"375","IAR_LU_modified_topopro","left kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.45,0.45,0.45,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 -"376","IAR_LU_modified_topopro","Liver",10,0.11,0.1,0.0015,0.255827144238669,0.0957949328224053,0.00130092643991093,0.45,0.45,0.45,0.133644073612816,0.0684386590799032,0.000379476628758943,299,299,299 -"377","IAR_LU_modified_topopro","Liver",30,0.11,0.1,0.0015,0.133802596180871,0.121405497015874,0.00147252862365529,0.45,0.45,0.45,0.0323313786170407,0.0504511851101522,8.92081827197948e-05,299,299,299 -"378","IAR_LU_modified_topopro","Liver",50,0.11,0.1,0.0015,0.118729927642186,0.11773946935276,0.00148881545258651,0.45,0.45,0.45,0.0167411687834778,0.0426333639052342,4.73600868068698e-05,299,299,299 -"379","IAR_LU_modified_topopro","Liver",100,0.11,0.1,0.0015,0.112266606855168,0.105433216396753,0.00149419894599423,0.45,0.45,0.45,0.00902108432024771,0.030662316383553,2.42747200177698e-05,299,299,299 -"380","IAR_LU_modified_topopro","Liver",200,0.11,0.1,0.0015,0.110995126491855,0.0973924440504551,0.00149623920986603,0.45,0.45,0.45,0.00518590399827883,0.0106183419451747,1.20619999134246e-05,299,299,299 -"381","IAR_LU_modified_topopro","Myocardium LV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.45,0.45,0.45,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 -"382","IAR_LU_modified_topopro","Myocardium LV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.45,0.45,0.45,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 -"383","IAR_LU_modified_topopro","Myocardium LV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.45,0.45,0.45,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 -"384","IAR_LU_modified_topopro","Myocardium LV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.45,0.45,0.45,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 -"385","IAR_LU_modified_topopro","Myocardium LV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.45,0.45,0.45,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 -"386","IAR_LU_modified_topopro","myocardium ra",10,0.07,0.07,0.0015,0.233345797803224,0.0758206228669585,0.00130187536524909,0.45,0.45,0.45,0.133957644380287,0.066388571559589,0.000363650445363682,299,299,299 -"387","IAR_LU_modified_topopro","myocardium ra",30,0.07,0.07,0.0015,0.108856126532739,0.0964456670697446,0.0014567334689066,0.45,0.45,0.45,0.0440157368882964,0.0596090389915254,0.000103224107835832,299,299,299 -"388","IAR_LU_modified_topopro","myocardium ra",50,0.07,0.07,0.0015,0.0854880561907263,0.0973144944749237,0.00148281482291791,0.45,0.45,0.45,0.0207373834323344,0.0497994361924948,5.42735308861248e-05,299,299,299 -"389","IAR_LU_modified_topopro","myocardium ra",100,0.07,0.07,0.0015,0.0745374604485976,0.0807036222064792,0.00149478405306962,0.45,0.45,0.45,0.00997544057913432,0.0315117637210663,2.58398414525695e-05,299,299,299 -"390","IAR_LU_modified_topopro","myocardium ra",200,0.07,0.07,0.0015,0.070924223444913,0.0715684911066608,0.00149809258018433,0.45,0.45,0.45,0.00539980707410929,0.0133990279370298,1.28312643370667e-05,299,299,299 -"391","IAR_LU_modified_topopro","myocardium RV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.45,0.45,0.45,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 -"392","IAR_LU_modified_topopro","myocardium RV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.45,0.45,0.45,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 -"393","IAR_LU_modified_topopro","myocardium RV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.45,0.45,0.45,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 -"394","IAR_LU_modified_topopro","myocardium RV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.45,0.45,0.45,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 -"395","IAR_LU_modified_topopro","myocardium RV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.45,0.45,0.45,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 -"396","IAR_LU_modified_topopro","pancreas",10,0.15,0.01,0.00129999999999999,0.280147618787791,0.0550963471623122,0.00116554559543274,0.45,0.45,0.45,0.154200671687761,0.0601150850496964,0.000411333431647301,299,299,299 -"397","IAR_LU_modified_topopro","pancreas",30,0.15,0.01,0.00129999999999999,0.180292442524659,0.0283670218235359,0.00128220682523432,0.45,0.45,0.45,0.0758183523997101,0.0373025951640522,0.000154889895612203,299,299,299 -"398","IAR_LU_modified_topopro","pancreas",50,0.15,0.01,0.00129999999999999,0.160883491285031,0.0172849139656884,0.00130037131461184,0.45,0.45,0.45,0.0520817767720244,0.0152607616127078,0.000103316331968376,299,299,299 -"399","IAR_LU_modified_topopro","pancreas",100,0.15,0.01,0.00129999999999999,0.154976949063361,0.0120069271284118,0.00129977292515898,0.45,0.45,0.45,0.0334646725252195,0.00446344579568468,6.40649593388859e-05,299,299,299 -"400","IAR_LU_modified_topopro","pancreas",200,0.15,0.01,0.00129999999999999,0.155286959430167,0.0101428890293175,0.00129270742735421,0.45,0.45,0.45,0.0172333080337744,0.00153439739326154,3.24157917287038e-05,299,299,299 -"401","IAR_LU_modified_topopro","pericardium",10,0.07,0.00999999999999999,0.003,0.304246595967149,0.0630491156685354,0.00235482700518371,0.45,0.45,0.45,0.260685324735516,0.0637178985095701,0.000993597879656733,299,299,299 -"402","IAR_LU_modified_topopro","pericardium",30,0.07,0.00999999999999999,0.003,0.176641493642551,0.0520279343575831,0.0028348649822054,0.45,0.45,0.45,0.207967296454401,0.0596888181268739,0.000571521838568284,299,299,299 -"403","IAR_LU_modified_topopro","pericardium",50,0.07,0.00999999999999999,0.003,0.146227380203304,0.042647287703342,0.00291329895112631,0.45,0.45,0.45,0.159901072514046,0.0522232847404345,0.000369579678167213,299,299,299 -"404","IAR_LU_modified_topopro","pericardium",100,0.07,0.00999999999999999,0.003,0.137535248314898,0.0274694017620213,0.0029193188543007,0.45,0.45,0.45,0.131305938197915,0.0405847885689576,0.000236989816000259,299,299,299 -"405","IAR_LU_modified_topopro","pericardium",200,0.07,0.00999999999999999,0.003,0.106876601462374,0.0141821859583173,0.00295175861415913,0.45,0.45,0.45,0.0866370026871013,0.0154683273621364,0.000137465282729351,299,299,299 -"406","IAR_LU_modified_topopro","right kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.45,0.45,0.45,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 -"407","IAR_LU_modified_topopro","right kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.45,0.45,0.45,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 -"408","IAR_LU_modified_topopro","right kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.45,0.45,0.45,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 -"409","IAR_LU_modified_topopro","right kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.45,0.45,0.45,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 -"410","IAR_LU_modified_topopro","right kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.45,0.45,0.45,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 -"411","IAR_LU_modified_topopro","Right kydney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.45,0.45,0.45,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 -"412","IAR_LU_modified_topopro","Right kydney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.45,0.45,0.45,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 -"413","IAR_LU_modified_topopro","Right kydney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.45,0.45,0.45,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 -"414","IAR_LU_modified_topopro","Right kydney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.45,0.45,0.45,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 -"415","IAR_LU_modified_topopro","Right kydney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.45,0.45,0.45,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 -"416","IAR_LU_modified_topopro","small intestine",10,0.69,0.029,0.00131,0.694262245048376,0.041376031786243,0.00127575746503216,0.45,0.45,0.45,0.0967837138191552,0.0233612728169214,0.000821652336598365,299,299,299 -"417","IAR_LU_modified_topopro","small intestine",30,0.69,0.029,0.00131,0.687722331121821,0.0307580006808991,0.00134021784981736,0.45,0.45,0.45,0.0351426096506969,0.00435469175637002,0.000284059232762604,299,299,299 -"418","IAR_LU_modified_topopro","small intestine",50,0.69,0.029,0.00131,0.68908448667331,0.0295719444686926,0.00131656193442396,0.45,0.45,0.45,0.0214793767768495,0.00247568869798116,0.000168319670616108,299,299,299 -"419","IAR_LU_modified_topopro","small intestine",100,0.69,0.029,0.00131,0.689765613332017,0.0290940329273443,0.00130808320972436,0.45,0.45,0.45,0.0109523316691925,0.00123761959754598,8.5316967356735e-05,299,299,299 -"420","IAR_LU_modified_topopro","small intestine",200,0.69,0.029,0.00131,0.689905499433019,0.0290056437597644,0.00130824381017983,0.45,0.45,0.45,0.00544972908667523,0.000598861686247944,4.18259481209846e-05,299,299,299 -"421","IAR_LU_modified_topopro","spleen",10,0.2,0.03,0.00129999999999999,0.319868006115112,0.063392313341736,0.00114701986395022,0.45,0.45,0.45,0.127028194828194,0.0542166947340963,0.000388299783289906,299,299,299 -"422","IAR_LU_modified_topopro","spleen",30,0.2,0.03,0.00129999999999999,0.215360997563175,0.0442606501281254,0.00130354720611688,0.45,0.45,0.45,0.0365624032335726,0.0261446003020259,0.000105551124736129,299,299,299 -"423","IAR_LU_modified_topopro","spleen",50,0.2,0.03,0.00129999999999999,0.208856498625777,0.0349379828827892,0.00129997254980305,0.45,0.45,0.45,0.0232436380421739,0.0134864153624437,6.61171024217637e-05,299,299,299 -"424","IAR_LU_modified_topopro","spleen",100,0.2,0.03,0.00129999999999999,0.204200673121755,0.0304239196137196,0.00129577459955986,0.45,0.45,0.45,0.0129647113395538,0.00465726530553315,3.35882997092888e-05,299,299,299 -"425","IAR_LU_modified_topopro","spleen",200,0.2,0.03,0.00129999999999999,0.200822327913181,0.0300525395093674,0.00129839806116424,0.45,0.45,0.45,0.00653017924354621,0.00186535860535101,1.63191536785758e-05,299,299,299 -"426","IAR_LU_modified_topopro","st wall",10,0.3,0.012,0.0015,0.398249536075877,0.0414327592705561,0.0013308464645949,0.45,0.45,0.45,0.179875566567662,0.0488900917459887,0.000607086675688919,299,299,299 -"427","IAR_LU_modified_topopro","st wall",30,0.3,0.012,0.0015,0.304981866410044,0.019062815360902,0.00152406395152592,0.45,0.45,0.45,0.0863985064932302,0.0159978388575776,0.000239113806683646,299,299,299 -"428","IAR_LU_modified_topopro","st wall",50,0.3,0.012,0.0015,0.303869758313058,0.0142369519703813,0.00151399551647258,0.45,0.45,0.45,0.05621027771121,0.00488788692716998,0.000149801012378724,299,299,299 -"429","IAR_LU_modified_topopro","st wall",100,0.3,0.012,0.0015,0.305112114866144,0.0122592880475803,0.00149760569421531,0.45,0.45,0.45,0.0273933903749877,0.00163482678247482,7.13546414172466e-05,299,299,299 -"430","IAR_LU_modified_topopro","st wall",200,0.3,0.012,0.0015,0.301896746555565,0.0120195655148351,0.00149805858945093,0.45,0.45,0.45,0.0139779415391202,0.000700939984225378,3.50081487540217e-05,299,299,299 -"431","IAR_LU_modified_topopro","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.693178885237798,0.0415791676918557,0.0012877057786336,0.45,0.45,0.45,0.0968563027027587,0.0237449984222352,0.000825061448241474,299,299,299 -"432","IAR_LU_modified_topopro","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.687355419209049,0.0307945973352347,0.00134083836319301,0.45,0.45,0.45,0.0346999752926432,0.00430590939666401,0.000281486176019419,299,299,299 -"433","IAR_LU_modified_topopro","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688922163392087,0.0295911195710815,0.00131794686365502,0.45,0.45,0.45,0.0211777668762992,0.0024591080293894,0.000167887957689605,299,299,299 -"434","IAR_LU_modified_topopro","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689976252210824,0.0290643775264531,0.00130712971409723,0.45,0.45,0.45,0.0111596605740458,0.00127230067708064,8.6055448007924e-05,299,299,299 -"435","IAR_LU_modified_topopro","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689888170406535,0.0290018785916859,0.00130847256340122,0.45,0.45,0.45,0.00546502050565497,0.000593775344251464,4.23249708031501e-05,299,299,299 -"436","IAR_LU_modified_topopro","Vein",10,1,0.1,0.00299999999999999,0.920340948544868,0.125267602952588,0.000182829755987327,0.45,0.45,0.45,0.0225948248460019,0.0244450623949952,0.000583405196732458,299,299,299 -"437","IAR_LU_modified_topopro","Vein",30,1,0.1,0.00299999999999999,0.974304007878179,0.106099271208312,0.00017739920965156,0.45,0.45,0.45,0.0074896310418671,0.00829547616520967,0.000678898150509279,299,299,299 -"438","IAR_LU_modified_topopro","Vein",50,1,0.1,0.00299999999999999,0.984941554598225,0.103360680622716,0.000155910848324994,0.45,0.45,0.45,0.00447571056831266,0.00495498786932744,0.000644242026928185,299,299,299 -"439","IAR_LU_modified_topopro","Vein",100,1,0.1,0.00299999999999999,0.992841725680271,0.101349324298109,0.000128757028592843,0.45,0.45,0.45,0.00221528819623711,0.0024839226995908,0.000596162110415501,299,299,299 -"440","IAR_LU_modified_topopro","Vein",200,1,0.1,0.00299999999999999,0.996733416187604,0.100300502391623,0.000119817078027757,0.45,0.45,0.45,0.00117146069783939,0.00100883111028152,0.000632413732960071,299,299,299 -"441","IAR_LU_segmented_2step","Artery",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.45,0.45,0.45,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 -"442","IAR_LU_segmented_2step","Artery",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.45,0.45,0.45,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 -"443","IAR_LU_segmented_2step","Artery",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.45,0.45,0.45,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 -"444","IAR_LU_segmented_2step","Artery",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.45,0.45,0.45,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 -"445","IAR_LU_segmented_2step","Artery",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.45,0.45,0.45,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 -"446","IAR_LU_segmented_2step","asc lower intestine",10,0.69,0.029,0.00131,0.690373035820094,0.0320610845759972,0.00128397090175435,0.45,0.45,0.45,0.111830765201228,0.0149363990134043,0.0010310750352814,299,299,299 -"447","IAR_LU_segmented_2step","asc lower intestine",30,0.69,0.029,0.00131,0.688190385607032,0.0294222676858039,0.00132700874616123,0.45,0.45,0.45,0.0448734637691971,0.00411936458229695,0.000393814792063893,299,299,299 -"448","IAR_LU_segmented_2step","asc lower intestine",50,0.69,0.029,0.00131,0.688983137072148,0.0291736871195673,0.00131674147785283,0.45,0.45,0.45,0.0269406505113919,0.00243185752511053,0.000231513954749497,299,299,299 -"449","IAR_LU_segmented_2step","asc lower intestine",100,0.69,0.029,0.00131,0.689404252989227,0.029066163092573,0.00131311787679812,0.45,0.45,0.45,0.0134745367049808,0.00120919315577138,0.000114727932084214,299,299,299 -"450","IAR_LU_segmented_2step","asc lower intestine",200,0.69,0.029,0.00131,0.689565491171274,0.0290364333672251,0.00131259560662869,0.45,0.45,0.45,0.00673757581944161,0.000603840898929335,5.72226395519967e-05,299,299,299 -"451","IAR_LU_segmented_2step","Blood RA",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.45,0.45,0.45,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 -"452","IAR_LU_segmented_2step","Blood RA",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.45,0.45,0.45,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 -"453","IAR_LU_segmented_2step","Blood RA",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.45,0.45,0.45,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 -"454","IAR_LU_segmented_2step","Blood RA",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.45,0.45,0.45,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 -"455","IAR_LU_segmented_2step","Blood RA",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.45,0.45,0.45,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 -"456","IAR_LU_segmented_2step","Blood RV",10,1,0.1,0.003,0.921258294005175,0.0983174229498556,0.000602377539314825,0.45,0.45,0.45,0.0258235599273312,0.0048817357689704,0.000954240122896554,299,299,299 -"457","IAR_LU_segmented_2step","Blood RV",30,1,0.1,0.003,0.976019933224227,0.0994829647759296,0.000602393052438452,0.45,0.45,0.45,0.0083310126686943,0.0016038596496585,0.000954268289514534,299,299,299 -"458","IAR_LU_segmented_2step","Blood RV",50,1,0.1,0.003,0.985994872256549,0.0996813109859528,0.000602405603200741,0.45,0.45,0.45,0.00494309801013262,0.000986358092526008,0.000954266532348308,299,299,299 -"459","IAR_LU_segmented_2step","Blood RV",100,1,0.1,0.003,0.993268900338895,0.0998299735833862,0.000602442811986694,0.45,0.45,0.45,0.00241285763266283,0.00051392104017594,0.000954286483399826,299,299,299 -"460","IAR_LU_segmented_2step","Blood RV",200,1,0.1,0.003,0.996782474408774,0.0999083722401707,0.000602417326124585,0.45,0.45,0.45,0.00119135923032626,0.000267557047652887,0.000954060412685357,299,299,299 -"461","IAR_LU_segmented_2step","desc lower intestine",10,0.69,0.029,0.00131,0.690373037187929,0.032061084511974,0.0012839709016351,0.45,0.45,0.45,0.111830764423804,0.0149363990086909,0.0010310750351664,299,299,299 -"462","IAR_LU_segmented_2step","desc lower intestine",30,0.69,0.029,0.00131,0.688190385604399,0.0294222676864886,0.00132700874615634,0.45,0.45,0.45,0.0448734637614442,0.00411936458331029,0.000393814791852722,299,299,299 -"463","IAR_LU_segmented_2step","desc lower intestine",50,0.69,0.029,0.00131,0.688983137070003,0.0291736871196476,0.00131674147781799,0.45,0.45,0.45,0.0269406505267064,0.00243185752517155,0.000231513954746746,299,299,299 -"464","IAR_LU_segmented_2step","desc lower intestine",100,0.69,0.029,0.00131,0.689404252988794,0.0290661630927041,0.00131311787679321,0.45,0.45,0.45,0.0134745367105457,0.00120919315606283,0.0001147279321005,299,299,299 -"465","IAR_LU_segmented_2step","desc lower intestine",200,0.69,0.029,0.00131,0.689565491168261,0.0290364333673394,0.00131259560662137,0.45,0.45,0.45,0.00673757582228583,0.000603840898965895,5.72226395589749e-05,299,299,299 -"466","IAR_LU_segmented_2step","esophagus",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.45,0.45,0.45,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 -"467","IAR_LU_segmented_2step","esophagus",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.45,0.45,0.45,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 -"468","IAR_LU_segmented_2step","esophagus",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.45,0.45,0.45,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 -"469","IAR_LU_segmented_2step","esophagus",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.45,0.45,0.45,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 -"470","IAR_LU_segmented_2step","esophagus",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.45,0.45,0.45,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 -"471","IAR_LU_segmented_2step","esophagus cont",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.45,0.45,0.45,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 -"472","IAR_LU_segmented_2step","esophagus cont",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.45,0.45,0.45,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 -"473","IAR_LU_segmented_2step","esophagus cont",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.45,0.45,0.45,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 -"474","IAR_LU_segmented_2step","esophagus cont",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.45,0.45,0.45,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 -"475","IAR_LU_segmented_2step","esophagus cont",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.45,0.45,0.45,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 -"476","IAR_LU_segmented_2step","Left kidney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.45,0.45,0.45,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 -"477","IAR_LU_segmented_2step","Left kidney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.45,0.45,0.45,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 -"478","IAR_LU_segmented_2step","Left kidney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.45,0.45,0.45,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 -"479","IAR_LU_segmented_2step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.45,0.45,0.45,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 -"480","IAR_LU_segmented_2step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.45,0.45,0.45,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 -"481","IAR_LU_segmented_2step","left kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.45,0.45,0.45,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 -"482","IAR_LU_segmented_2step","left kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.45,0.45,0.45,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 -"483","IAR_LU_segmented_2step","left kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.45,0.45,0.45,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 -"484","IAR_LU_segmented_2step","left kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.45,0.45,0.45,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 -"485","IAR_LU_segmented_2step","left kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.45,0.45,0.45,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 -"486","IAR_LU_segmented_2step","Liver",10,0.11,0.1,0.0015,0.144577570411426,0.0600041637865293,0.00152084809188092,0.45,0.45,0.45,0.123335225696709,0.0417372816084262,0.000472993211159269,299,299,299 -"487","IAR_LU_segmented_2step","Liver",30,0.11,0.1,0.0015,0.112815078932074,0.0768823300474684,0.00150154707211704,0.45,0.45,0.45,0.0402419901201215,0.0310439867234663,0.000152137743344338,299,299,299 -"488","IAR_LU_segmented_2step","Liver",50,0.11,0.1,0.0015,0.1099576380775,0.0845663044192014,0.00150017699860271,0.45,0.45,0.45,0.0218836166694104,0.022477885458141,9.09784274199351e-05,299,299,299 -"489","IAR_LU_segmented_2step","Liver",100,0.11,0.1,0.0015,0.10944935129917,0.0916622252527853,0.00149980895512081,0.45,0.45,0.45,0.010208281089791,0.0124943171981403,4.54189474712779e-05,299,299,299 -"490","IAR_LU_segmented_2step","Liver",200,0.11,0.1,0.0015,0.109652146434559,0.0956035913947621,0.00149983471124947,0.45,0.45,0.45,0.00504024948517217,0.00673413090644371,2.26988859055568e-05,299,299,299 -"491","IAR_LU_segmented_2step","Myocardium LV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.45,0.45,0.45,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 -"492","IAR_LU_segmented_2step","Myocardium LV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.45,0.45,0.45,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 -"493","IAR_LU_segmented_2step","Myocardium LV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.45,0.45,0.45,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 -"494","IAR_LU_segmented_2step","Myocardium LV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.45,0.45,0.45,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 -"495","IAR_LU_segmented_2step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.45,0.45,0.45,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 -"496","IAR_LU_segmented_2step","myocardium ra",10,0.07,0.07,0.0015,0.119350871187795,0.0526522113471146,0.00151975238387796,0.45,0.45,0.45,0.122175673607144,0.0433817113789841,0.000451902244673881,299,299,299 -"497","IAR_LU_segmented_2step","myocardium ra",30,0.07,0.07,0.0015,0.0792678235673555,0.0630122253969336,0.00150135088654914,0.45,0.45,0.45,0.0453965721112215,0.0370205317703307,0.000145531665798083,299,299,299 -"498","IAR_LU_segmented_2step","myocardium ra",50,0.07,0.07,0.0015,0.0732403881564398,0.0670725405856644,0.00150012323561766,0.45,0.45,0.45,0.0252082854080656,0.031219546230532,8.70510202022302e-05,299,299,299 -"499","IAR_LU_segmented_2step","myocardium ra",100,0.07,0.07,0.0015,0.0706178298624483,0.0704430265419414,0.00149980568738501,0.45,0.45,0.45,0.0111951905157038,0.0218907234720239,4.34633528226247e-05,299,299,299 -"500","IAR_LU_segmented_2step","myocardium ra",200,0.07,0.07,0.0015,0.0700882021755177,0.0711624170940203,0.00149983895305835,0.45,0.45,0.45,0.00530076418974235,0.0136048479725231,2.17222536755328e-05,299,299,299 -"501","IAR_LU_segmented_2step","myocardium RV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.45,0.45,0.45,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 -"502","IAR_LU_segmented_2step","myocardium RV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.45,0.45,0.45,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 -"503","IAR_LU_segmented_2step","myocardium RV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.45,0.45,0.45,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 -"504","IAR_LU_segmented_2step","myocardium RV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.45,0.45,0.45,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 -"505","IAR_LU_segmented_2step","myocardium RV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.45,0.45,0.45,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 -"506","IAR_LU_segmented_2step","pancreas",10,0.15,0.01,0.00129999999999999,0.167366769534782,0.0306978926979998,0.00134733544815708,0.45,0.45,0.45,0.138138076806016,0.0353119819659889,0.000431649675978663,299,299,299 -"507","IAR_LU_segmented_2step","pancreas",30,0.15,0.01,0.00129999999999999,0.141203985588467,0.0176354726093115,0.00133082551202286,0.45,0.45,0.45,0.0600511085386784,0.0196812578308465,0.000139043274945453,299,299,299 -"508","IAR_LU_segmented_2step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697420917372,0.0134860811681421,0.00132993185853207,0.45,0.45,0.45,0.0376186380241066,0.00990391939690809,8.31806812154377e-05,299,299,299 -"509","IAR_LU_segmented_2step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323219863,0.0115476660390234,0.00132978575875502,0.45,0.45,0.45,0.0195144380514801,0.00241788894796007,4.15321586456171e-05,299,299,299 -"510","IAR_LU_segmented_2step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024845707517,0.0112236005383082,0.00132987961477637,0.45,0.45,0.45,0.00985292081870204,0.00107217148365358,2.07569285081239e-05,299,299,299 -"511","IAR_LU_segmented_2step","pericardium",10,0.07,0.00999999999999999,0.003,0.22320565207551,0.0265364476482412,0.00273701082230784,0.45,0.45,0.45,0.23206537977111,0.0359088326115604,0.00088504212200084,299,299,299 -"512","IAR_LU_segmented_2step","pericardium",30,0.07,0.00999999999999999,0.003,0.104347274972772,0.0256374434531395,0.00304612925895245,0.45,0.45,0.45,0.114261684103799,0.0332933654950249,0.00039105626191339,299,299,299 -"513","IAR_LU_segmented_2step","pericardium",50,0.07,0.00999999999999999,0.003,0.0814011586963573,0.0244933209869785,0.00304009046144298,0.45,0.45,0.45,0.0795667664506302,0.0304103420804633,0.000238152536499515,299,299,299 -"514","IAR_LU_segmented_2step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642156773233244,0.0204405944701307,0.00303324788669806,0.45,0.45,0.45,0.0448553819665871,0.0232832527732592,0.000118500604743613,299,299,299 -"515","IAR_LU_segmented_2step","pericardium",200,0.07,0.00999999999999999,0.003,0.0580112863869371,0.0143446319848522,0.00303117957616411,0.45,0.45,0.45,0.0239540291900973,0.00980730019759861,5.91963411917844e-05,299,299,299 -"516","IAR_LU_segmented_2step","right kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.45,0.45,0.45,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 -"517","IAR_LU_segmented_2step","right kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.45,0.45,0.45,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 -"518","IAR_LU_segmented_2step","right kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.45,0.45,0.45,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 -"519","IAR_LU_segmented_2step","right kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.45,0.45,0.45,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 -"520","IAR_LU_segmented_2step","right kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.45,0.45,0.45,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 -"521","IAR_LU_segmented_2step","Right kydney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.45,0.45,0.45,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 -"522","IAR_LU_segmented_2step","Right kydney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.45,0.45,0.45,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 -"523","IAR_LU_segmented_2step","Right kydney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.45,0.45,0.45,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 -"524","IAR_LU_segmented_2step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.45,0.45,0.45,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 -"525","IAR_LU_segmented_2step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.45,0.45,0.45,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 -"526","IAR_LU_segmented_2step","small intestine",10,0.69,0.029,0.00131,0.690373037070898,0.0320610845226397,0.00128397090175435,0.45,0.45,0.45,0.111830764549477,0.0149363990351109,0.0010310750352814,299,299,299 -"527","IAR_LU_segmented_2step","small intestine",30,0.69,0.029,0.00131,0.688190385608461,0.0294222676855826,0.00132700874616123,0.45,0.45,0.45,0.0448734637901488,0.00411936458263747,0.000393814792063893,299,299,299 -"528","IAR_LU_segmented_2step","small intestine",50,0.69,0.029,0.00131,0.68898313707029,0.0291736871197262,0.00131674147785283,0.45,0.45,0.45,0.0269406505091751,0.00243185752491584,0.000231513954749497,299,299,299 -"529","IAR_LU_segmented_2step","small intestine",100,0.69,0.029,0.00131,0.68940425299248,0.0290661630924925,0.00131311787679812,0.45,0.45,0.45,0.0134745367108107,0.00120919315590461,0.000114727932084214,299,299,299 -"530","IAR_LU_segmented_2step","small intestine",200,0.69,0.029,0.00131,0.689565491157383,0.0290364333708514,0.00131259560662869,0.45,0.45,0.45,0.00673757580906278,0.000603840896646575,5.72226395519967e-05,299,299,299 -"531","IAR_LU_segmented_2step","spleen",10,0.2,0.03,0.00129999999999999,0.224602362890799,0.0422543737942781,0.00131869223769686,0.45,0.45,0.45,0.127234911609303,0.0341611217172608,0.000459161541284809,299,299,299 -"532","IAR_LU_segmented_2step","spleen",30,0.2,0.03,0.00129999999999999,0.203576863495816,0.0339539200173157,0.00130108907088979,0.45,0.45,0.45,0.044331214464624,0.017617566481108,0.000147366538355311,299,299,299 -"533","IAR_LU_segmented_2step","spleen",50,0.2,0.03,0.00129999999999999,0.201083469438403,0.0314320549693185,0.00130009526398064,0.45,0.45,0.45,0.0264945321235979,0.00973436499772472,8.81308203353264e-05,299,299,299 -"534","IAR_LU_segmented_2step","spleen",100,0.2,0.03,0.00129999999999999,0.20007115163649,0.0303418337778117,0.001299928493873,0.45,0.45,0.45,0.0131754362709165,0.00435303846028546,4.39969723252588e-05,299,299,299 -"535","IAR_LU_segmented_2step","spleen",200,0.2,0.03,0.00129999999999999,0.199885784150361,0.0301070126211822,0.00130002911399547,0.45,0.45,0.45,0.00657087134211547,0.00215138858402903,2.19877335574001e-05,299,299,299 -"536","IAR_LU_segmented_2step","st wall",10,0.3,0.012,0.0015,0.297910726506523,0.0238987755166635,0.00157773932710541,0.45,0.45,0.45,0.166898578530855,0.026413197787185,0.000614593950499859,299,299,299 -"537","IAR_LU_segmented_2step","st wall",30,0.3,0.012,0.0015,0.283533465909088,0.0146267868916472,0.00155214816764873,0.45,0.45,0.45,0.0667707036118569,0.0078453694765802,0.00019551156370717,299,299,299 -"538","IAR_LU_segmented_2step","st wall",50,0.3,0.012,0.0015,0.282913643368102,0.0133565032690983,0.00154952132488848,0.45,0.45,0.45,0.0412585327424046,0.0029662403323633,0.00011668052444887,299,299,299 -"539","IAR_LU_segmented_2step","st wall",100,0.3,0.012,0.0015,0.282957489855073,0.0129414790127824,0.0015486735829641,0.45,0.45,0.45,0.0209295866586312,0.00131275199125169,5.81996976856253e-05,299,299,299 -"540","IAR_LU_segmented_2step","st wall",200,0.3,0.012,0.0015,0.283111805846317,0.0128396414258269,0.00154860379618769,0.45,0.45,0.45,0.010504025040381,0.000633726930733129,2.90796048726369e-05,299,299,299 -"541","IAR_LU_segmented_2step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69037303749125,0.0320610844836358,0.00128397090178629,0.45,0.45,0.45,0.111830763771563,0.0149363989976124,0.00103107503559299,299,299,299 -"542","IAR_LU_segmented_2step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190385593539,0.0294222676872454,0.00132700874615982,0.45,0.45,0.45,0.0448734637558478,0.00411936458168369,0.000393814791967693,299,299,299 -"543","IAR_LU_segmented_2step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.68898313706239,0.0291736871209134,0.00131674147788471,0.45,0.45,0.45,0.0269406505338101,0.0024318575254413,0.000231513954838717,299,299,299 -"544","IAR_LU_segmented_2step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404252989508,0.0290661630925507,0.00131311787679501,0.45,0.45,0.45,0.0134745367049696,0.00120919315574895,0.000114727932099834,299,299,299 -"545","IAR_LU_segmented_2step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565491165205,0.0290364333675362,0.0013125956066485,0.45,0.45,0.45,0.00673757582406111,0.000603840899001961,5.72226395704009e-05,299,299,299 -"546","IAR_LU_segmented_2step","Vein",10,1,0.1,0.00299999999999999,0.921258294006205,0.0983174229514582,0.000602377539365262,0.45,0.45,0.45,0.0258235599431163,0.00488173576858925,0.000954240122974581,299,299,299 -"547","IAR_LU_segmented_2step","Vein",30,1,0.1,0.00299999999999999,0.976019933221361,0.0994829647765158,0.00060239305244365,0.45,0.45,0.45,0.00833101267682292,0.00160385964963576,0.000954268289514292,299,299,299 -"548","IAR_LU_segmented_2step","Vein",50,1,0.1,0.00299999999999999,0.98599487225747,0.0996813109862223,0.000602405603200741,0.45,0.45,0.45,0.00494309800725367,0.00098635809134973,0.000954266532348308,299,299,299 -"549","IAR_LU_segmented_2step","Vein",100,1,0.1,0.00299999999999999,0.993268900336901,0.0998299735834051,0.000602442811986694,0.45,0.45,0.45,0.00241285763307656,0.000513921040160147,0.000954286483399826,299,299,299 -"550","IAR_LU_segmented_2step","Vein",200,1,0.1,0.00299999999999999,0.996782474408715,0.099908372240112,0.000602417326124585,0.45,0.45,0.45,0.00119135923034317,0.00026755704762974,0.000954060412685357,299,299,299 -"551","IAR_LU_segmented_3step","Artery",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.45,0.45,0.45,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 -"552","IAR_LU_segmented_3step","Artery",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.45,0.45,0.45,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 -"553","IAR_LU_segmented_3step","Artery",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.45,0.45,0.45,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 -"554","IAR_LU_segmented_3step","Artery",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.45,0.45,0.45,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 -"555","IAR_LU_segmented_3step","Artery",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.45,0.45,0.45,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 -"556","IAR_LU_segmented_3step","asc lower intestine",10,0.69,0.029,0.00131,0.690372912460308,0.0320609988287597,0.00128397090175435,0.45,0.45,0.45,0.111831070178776,0.0149362639331092,0.0010310750352814,299,299,299 -"557","IAR_LU_segmented_3step","asc lower intestine",30,0.69,0.029,0.00131,0.688190453018247,0.0294222458071772,0.00132700874616123,0.45,0.45,0.45,0.0448734379198449,0.00411935738276174,0.000393814792063893,299,299,299 -"558","IAR_LU_segmented_3step","asc lower intestine",50,0.69,0.029,0.00131,0.688983156886655,0.0291736810771982,0.00131674147785283,0.45,0.45,0.45,0.0269406517217619,0.00243185875713279,0.000231513954749497,299,299,299 -"559","IAR_LU_segmented_3step","asc lower intestine",100,0.69,0.029,0.00131,0.689404263283331,0.029066159884122,0.00131311787679812,0.45,0.45,0.45,0.013474531543109,0.00120919095640661,0.000114727932084214,299,299,299 -"560","IAR_LU_segmented_3step","asc lower intestine",200,0.69,0.029,0.00131,0.689565493192121,0.0290364327596902,0.00131259560662869,0.45,0.45,0.45,0.00673757540019296,0.000603840709682258,5.72226395519967e-05,299,299,299 -"561","IAR_LU_segmented_3step","Blood RA",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.45,0.45,0.45,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 -"562","IAR_LU_segmented_3step","Blood RA",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.45,0.45,0.45,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 -"563","IAR_LU_segmented_3step","Blood RA",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.45,0.45,0.45,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 -"564","IAR_LU_segmented_3step","Blood RA",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.45,0.45,0.45,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 -"565","IAR_LU_segmented_3step","Blood RA",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.45,0.45,0.45,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 -"566","IAR_LU_segmented_3step","Blood RV",10,1,0.1,0.003,0.921258295752512,0.0983173943497697,0.000602377539314825,0.45,0.45,0.45,0.0258235874592633,0.00488176105309786,0.000954240122896554,299,299,299 -"567","IAR_LU_segmented_3step","Blood RV",30,1,0.1,0.003,0.976019921589139,0.0994829388944177,0.000602393052438452,0.45,0.45,0.45,0.00833093061417054,0.00160385306136018,0.000954268289514534,299,299,299 -"568","IAR_LU_segmented_3step","Blood RV",50,1,0.1,0.003,0.985994865012998,0.0996813363124673,0.000602405603200741,0.45,0.45,0.45,0.00494311872708252,0.000986368951628139,0.000954266532348308,299,299,299 -"569","IAR_LU_segmented_3step","Blood RV",100,1,0.1,0.003,0.993268930010737,0.0998299053836721,0.000602442811986694,0.45,0.45,0.45,0.00241282801400462,0.00051390736455086,0.000954286483399826,299,299,299 -"570","IAR_LU_segmented_3step","Blood RV",200,1,0.1,0.003,0.996782670893716,0.0999081619681687,0.000602417326124585,0.45,0.45,0.45,0.00119125287335306,0.000267526451785148,0.000954060412685357,299,299,299 -"571","IAR_LU_segmented_3step","desc lower intestine",10,0.69,0.029,0.00131,0.690372912834237,0.0320609988208121,0.0012839709016351,0.45,0.45,0.45,0.111831069984292,0.014936263933469,0.0010310750351664,299,299,299 -"572","IAR_LU_segmented_3step","desc lower intestine",30,0.69,0.029,0.00131,0.688190453039754,0.0294222458055492,0.00132700874615634,0.45,0.45,0.45,0.0448734379014875,0.00411935738152716,0.000393814791852722,299,299,299 -"573","IAR_LU_segmented_3step","desc lower intestine",50,0.69,0.029,0.00131,0.68898315689181,0.0291736810768264,0.00131674147781799,0.45,0.45,0.45,0.026940651717003,0.00243185875705343,0.000231513954746746,299,299,299 -"574","IAR_LU_segmented_3step","desc lower intestine",100,0.69,0.029,0.00131,0.689404263283869,0.0290661598843801,0.00131311787679321,0.45,0.45,0.45,0.0134745315463702,0.00120919095682723,0.0001147279321005,299,299,299 -"575","IAR_LU_segmented_3step","desc lower intestine",200,0.69,0.029,0.00131,0.689565493196492,0.0290364327594458,0.00131259560662137,0.45,0.45,0.45,0.00673757540289692,0.000603840709761317,5.72226395589749e-05,299,299,299 -"576","IAR_LU_segmented_3step","esophagus",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.45,0.45,0.45,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 -"577","IAR_LU_segmented_3step","esophagus",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.45,0.45,0.45,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 -"578","IAR_LU_segmented_3step","esophagus",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.45,0.45,0.45,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 -"579","IAR_LU_segmented_3step","esophagus",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.45,0.45,0.45,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 -"580","IAR_LU_segmented_3step","esophagus",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.45,0.45,0.45,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 -"581","IAR_LU_segmented_3step","esophagus cont",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.45,0.45,0.45,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 -"582","IAR_LU_segmented_3step","esophagus cont",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.45,0.45,0.45,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 -"583","IAR_LU_segmented_3step","esophagus cont",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.45,0.45,0.45,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 -"584","IAR_LU_segmented_3step","esophagus cont",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.45,0.45,0.45,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 -"585","IAR_LU_segmented_3step","esophagus cont",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.45,0.45,0.45,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 -"586","IAR_LU_segmented_3step","Left kidney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.45,0.45,0.45,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 -"587","IAR_LU_segmented_3step","Left kidney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.45,0.45,0.45,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 -"588","IAR_LU_segmented_3step","Left kidney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.45,0.45,0.45,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 -"589","IAR_LU_segmented_3step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.45,0.45,0.45,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 -"590","IAR_LU_segmented_3step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.45,0.45,0.45,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 -"591","IAR_LU_segmented_3step","left kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.45,0.45,0.45,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 -"592","IAR_LU_segmented_3step","left kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.45,0.45,0.45,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 -"593","IAR_LU_segmented_3step","left kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.45,0.45,0.45,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 -"594","IAR_LU_segmented_3step","left kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.45,0.45,0.45,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 -"595","IAR_LU_segmented_3step","left kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.45,0.45,0.45,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 -"596","IAR_LU_segmented_3step","Liver",10,0.11,0.1,0.0015,0.146082882050709,0.0559478804902679,0.00152084809188092,0.45,0.45,0.45,0.12417523764379,0.0423510319114557,0.000472993211159269,299,299,299 -"597","IAR_LU_segmented_3step","Liver",30,0.11,0.1,0.0015,0.113015747107183,0.0764337988942673,0.00150154707211704,0.45,0.45,0.45,0.0404962619170089,0.0315961478906252,0.000152137743344338,299,299,299 -"598","IAR_LU_segmented_3step","Liver",50,0.11,0.1,0.0015,0.109957685341215,0.0845663398058661,0.00150017699860271,0.45,0.45,0.45,0.0218837188774183,0.0224781408265878,9.09784274199351e-05,299,299,299 -"599","IAR_LU_segmented_3step","Liver",100,0.11,0.1,0.0015,0.109449356101409,0.0916623226685859,0.00149980895512081,0.45,0.45,0.45,0.0102082812165326,0.0124943114146282,4.54189474712779e-05,299,299,299 -"600","IAR_LU_segmented_3step","Liver",200,0.11,0.1,0.0015,0.109652152384101,0.0956036971815278,0.00149983471124947,0.45,0.45,0.45,0.00504025274062746,0.00673413785148666,2.26988859055568e-05,299,299,299 -"601","IAR_LU_segmented_3step","Myocardium LV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.45,0.45,0.45,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 -"602","IAR_LU_segmented_3step","Myocardium LV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.45,0.45,0.45,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 -"603","IAR_LU_segmented_3step","Myocardium LV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.45,0.45,0.45,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 -"604","IAR_LU_segmented_3step","Myocardium LV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.45,0.45,0.45,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 -"605","IAR_LU_segmented_3step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.45,0.45,0.45,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 -"606","IAR_LU_segmented_3step","myocardium ra",10,0.07,0.07,0.0015,0.120487721848812,0.0474274141714872,0.00151975238387796,0.45,0.45,0.45,0.12292676009053,0.0432757721627324,0.000451902244673881,299,299,299 -"607","IAR_LU_segmented_3step","myocardium ra",30,0.07,0.07,0.0015,0.0794953920685382,0.061701170887567,0.00150135088654914,0.45,0.45,0.45,0.0456443486701864,0.0375179871485709,0.000145531665798083,299,299,299 -"608","IAR_LU_segmented_3step","myocardium ra",50,0.07,0.07,0.0015,0.0733075060795099,0.0668946641370623,0.00150012323561766,0.45,0.45,0.45,0.0253334139193964,0.0313903609700114,8.70510202022302e-05,299,299,299 -"609","IAR_LU_segmented_3step","myocardium ra",100,0.07,0.07,0.0015,0.0706178530327893,0.0704430355516514,0.00149980568738501,0.45,0.45,0.45,0.0111952191897268,0.0218910314178087,4.34633528226247e-05,299,299,299 -"610","IAR_LU_segmented_3step","myocardium ra",200,0.07,0.07,0.0015,0.0700882022200132,0.0711624063551851,0.00149983895305835,0.45,0.45,0.45,0.00530076622265709,0.0136048747365511,2.17222536755328e-05,299,299,299 -"611","IAR_LU_segmented_3step","myocardium RV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.45,0.45,0.45,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 -"612","IAR_LU_segmented_3step","myocardium RV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.45,0.45,0.45,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 -"613","IAR_LU_segmented_3step","myocardium RV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.45,0.45,0.45,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 -"614","IAR_LU_segmented_3step","myocardium RV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.45,0.45,0.45,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 -"615","IAR_LU_segmented_3step","myocardium RV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.45,0.45,0.45,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 -"616","IAR_LU_segmented_3step","pancreas",10,0.15,0.01,0.00129999999999999,0.167876087744328,0.0290823779532465,0.00134733544815708,0.45,0.45,0.45,0.13799145865135,0.0341902078471574,0.000431649675978663,299,299,299 -"617","IAR_LU_segmented_3step","pancreas",30,0.15,0.01,0.00129999999999999,0.141237488923537,0.0173188232665482,0.00133082551202286,0.45,0.45,0.45,0.0599867928753009,0.019107620391262,0.000139043274945453,299,299,299 -"618","IAR_LU_segmented_3step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697382006501,0.013486111899636,0.00132993185853207,0.45,0.45,0.45,0.0376187112217656,0.00990407677614883,8.31806812154377e-05,299,299,299 -"619","IAR_LU_segmented_3step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323640244,0.0115476620033599,0.00132978575875502,0.45,0.45,0.45,0.019514431169108,0.00241787556317726,4.15321586456171e-05,299,299,299 -"620","IAR_LU_segmented_3step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024834420005,0.0112236045300272,0.00132987961477637,0.45,0.45,0.45,0.00985291999759062,0.00107217005947319,2.07569285081239e-05,299,299,299 -"621","IAR_LU_segmented_3step","pericardium",10,0.07,0.00999999999999999,0.003,0.226261705952676,0.0237795489644494,0.00273701082230784,0.45,0.45,0.45,0.232027240194557,0.0336731897895805,0.00088504212200084,299,299,299 -"622","IAR_LU_segmented_3step","pericardium",30,0.07,0.00999999999999999,0.003,0.104611777513852,0.0196860800407026,0.00304612925895245,0.45,0.45,0.45,0.114299017507708,0.0278397487831849,0.00039105626191339,299,299,299 -"623","IAR_LU_segmented_3step","pericardium",50,0.07,0.00999999999999999,0.003,0.0816066699634704,0.0194934718185086,0.00304009046144298,0.45,0.45,0.45,0.0795483736488436,0.0250992834625371,0.000238152536499515,299,299,299 -"624","IAR_LU_segmented_3step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642026522852465,0.0194902394274878,0.00303324788669806,0.45,0.45,0.45,0.0448738243520826,0.0219106454708596,0.000118500604743613,299,299,299 -"625","IAR_LU_segmented_3step","pericardium",200,0.07,0.00999999999999999,0.003,0.058011320597936,0.0143446673004006,0.00303117957616411,0.45,0.45,0.45,0.0239540324724296,0.00980769094663703,5.91963411917844e-05,299,299,299 -"626","IAR_LU_segmented_3step","right kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.45,0.45,0.45,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 -"627","IAR_LU_segmented_3step","right kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.45,0.45,0.45,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 -"628","IAR_LU_segmented_3step","right kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.45,0.45,0.45,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 -"629","IAR_LU_segmented_3step","right kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.45,0.45,0.45,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 -"630","IAR_LU_segmented_3step","right kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.45,0.45,0.45,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 -"631","IAR_LU_segmented_3step","Right kydney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.45,0.45,0.45,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 -"632","IAR_LU_segmented_3step","Right kydney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.45,0.45,0.45,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 -"633","IAR_LU_segmented_3step","Right kydney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.45,0.45,0.45,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 -"634","IAR_LU_segmented_3step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.45,0.45,0.45,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 -"635","IAR_LU_segmented_3step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.45,0.45,0.45,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 -"636","IAR_LU_segmented_3step","small intestine",10,0.69,0.029,0.00131,0.690372912356873,0.0320609988950055,0.00128397090175435,0.45,0.45,0.45,0.111831070379349,0.0149362639486584,0.0010310750352814,299,299,299 -"637","IAR_LU_segmented_3step","small intestine",30,0.69,0.029,0.00131,0.688190453015561,0.0294222458063855,0.00132700874616123,0.45,0.45,0.45,0.0448734379425795,0.00411935738385784,0.000393814792063893,299,299,299 -"638","IAR_LU_segmented_3step","small intestine",50,0.69,0.029,0.00131,0.688983156880932,0.0291736810769727,0.00131674147785283,0.45,0.45,0.45,0.026940651716611,0.00243185875699742,0.000231513954749497,299,299,299 -"639","IAR_LU_segmented_3step","small intestine",100,0.69,0.029,0.00131,0.689404263282608,0.0290661598842716,0.00131311787679812,0.45,0.45,0.45,0.0134745315497881,0.00120919095739295,0.000114727932084214,299,299,299 -"640","IAR_LU_segmented_3step","small intestine",200,0.69,0.029,0.00131,0.68956549319335,0.0290364327596369,0.00131259560662869,0.45,0.45,0.45,0.00673757540024816,0.000603840709655209,5.72226395519967e-05,299,299,299 -"641","IAR_LU_segmented_3step","spleen",10,0.2,0.03,0.00129999999999999,0.225215079244018,0.0408475941745436,0.00131869223769686,0.45,0.45,0.45,0.127374549590845,0.0338321181453734,0.000459161541284809,299,299,299 -"642","IAR_LU_segmented_3step","spleen",30,0.2,0.03,0.00129999999999999,0.203576978248672,0.0339539416807976,0.00130108907088979,0.45,0.45,0.45,0.0443312368356655,0.0176179137760107,0.000147366538355311,299,299,299 -"643","IAR_LU_segmented_3step","spleen",50,0.2,0.03,0.00129999999999999,0.201083539263729,0.0314319351028402,0.00130009526398064,0.45,0.45,0.45,0.026494577015459,0.0097343797369095,8.81308203353264e-05,299,299,299 -"644","IAR_LU_segmented_3step","spleen",100,0.2,0.03,0.00129999999999999,0.200071168884838,0.0303418014706331,0.001299928493873,0.45,0.45,0.45,0.0131754519827359,0.00435303381837777,4.39969723252588e-05,299,299,299 -"645","IAR_LU_segmented_3step","spleen",200,0.2,0.03,0.00129999999999999,0.199885789613915,0.0301070023107681,0.00130002911399547,0.45,0.45,0.45,0.00657087505150261,0.00215139132638464,2.19877335574001e-05,299,299,299 -"646","IAR_LU_segmented_3step","st wall",10,0.3,0.012,0.0015,0.298324938833872,0.0239344077578617,0.00157773932710541,0.45,0.45,0.45,0.16670974705843,0.0264709436324007,0.000614593950499859,299,299,299 -"647","IAR_LU_segmented_3step","st wall",30,0.3,0.012,0.0015,0.283533448008898,0.0146267906410416,0.00155214816764873,0.45,0.45,0.45,0.0667707702398052,0.00784535598914983,0.00019551156370717,299,299,299 -"648","IAR_LU_segmented_3step","st wall",50,0.3,0.012,0.0015,0.282913610595332,0.013356509669699,0.00154952132488848,0.45,0.45,0.45,0.0412585585926891,0.00296623318505363,0.00011668052444887,299,299,299 -"649","IAR_LU_segmented_3step","st wall",100,0.3,0.012,0.0015,0.282957467763654,0.0129414830257878,0.0015486735829641,0.45,0.45,0.45,0.0209295851952189,0.0013127509371942,5.81996976856253e-05,299,299,299 -"650","IAR_LU_segmented_3step","st wall",200,0.3,0.012,0.0015,0.283111796582806,0.0128396431053783,0.00154860379618769,0.45,0.45,0.45,0.0105040225309021,0.000633726038726297,2.90796048726369e-05,299,299,299 -"651","IAR_LU_segmented_3step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.690372912514732,0.0320609988154312,0.00128397090178629,0.45,0.45,0.45,0.11183107022349,0.0149362639063537,0.00103107503559299,299,299,299 -"652","IAR_LU_segmented_3step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190453028525,0.0294222458062765,0.00132700874615982,0.45,0.45,0.45,0.0448734379048314,0.00411935738241528,0.000393814791967693,299,299,299 -"653","IAR_LU_segmented_3step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688983156885389,0.0291736810770989,0.00131674147788471,0.45,0.45,0.45,0.0269406517148853,0.00243185875753381,0.000231513954838717,299,299,299 -"654","IAR_LU_segmented_3step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404263284667,0.0290661598842918,0.00131311787679501,0.45,0.45,0.45,0.0134745315495576,0.00120919095747282,0.000114727932099834,299,299,299 -"655","IAR_LU_segmented_3step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565493192237,0.0290364327597635,0.0013125956066485,0.45,0.45,0.45,0.00673757540531011,0.000603840709857747,5.72226395704009e-05,299,299,299 -"656","IAR_LU_segmented_3step","Vein",10,1,0.1,0.00299999999999999,0.921258295769297,0.0983173943529829,0.000602377539365262,0.45,0.45,0.45,0.0258235874429731,0.00488176105242994,0.000954240122974581,299,299,299 -"657","IAR_LU_segmented_3step","Vein",30,1,0.1,0.00299999999999999,0.976019921590824,0.099482938894657,0.00060239305244365,0.45,0.45,0.45,0.00833093061148117,0.00160385306162368,0.000954268289514292,299,299,299 -"658","IAR_LU_segmented_3step","Vein",50,1,0.1,0.00299999999999999,0.985994865012448,0.0996813363124073,0.000602405603200741,0.45,0.45,0.45,0.00494311872646144,0.000986368952043478,0.000954266532348308,299,299,299 -"659","IAR_LU_segmented_3step","Vein",100,1,0.1,0.00299999999999999,0.993268929663768,0.0998299060636546,0.000602442811986694,0.45,0.45,0.45,0.00241282790462813,0.000513906117480587,0.000954286483399826,299,299,299 -"660","IAR_LU_segmented_3step","Vein",200,1,0.1,0.00299999999999999,0.996782670893754,0.099908161968246,0.000602417326124585,0.45,0.45,0.45,0.00119125287281276,0.00026752645150961,0.000954060412685357,299,299,299 -"661","IAR_LU_subtracted","Artery",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.45,0.45,0.45,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 -"662","IAR_LU_subtracted","Artery",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.45,0.45,0.45,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 -"663","IAR_LU_subtracted","Artery",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.45,0.45,0.45,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 -"664","IAR_LU_subtracted","Artery",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.45,0.45,0.45,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 -"665","IAR_LU_subtracted","Artery",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.45,0.45,0.45,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 -"666","IAR_LU_subtracted","asc lower intestine",10,0.69,0.029,0.00131,0.649071571634918,0.0374643243946707,0.00128397090175435,0.45,0.45,0.45,0.187010914797289,0.0225038113704148,0.0010310750352814,299,299,299 -"667","IAR_LU_subtracted","asc lower intestine",30,0.69,0.029,0.00131,0.681939176199502,0.0302945345470063,0.00132700874616123,0.45,0.45,0.45,0.0603891142506458,0.00615614452380217,0.000393814792063893,299,299,299 -"668","IAR_LU_subtracted","asc lower intestine",50,0.69,0.029,0.00131,0.686488325346289,0.0294805288041424,0.00131674147785283,0.45,0.45,0.45,0.0350265291359118,0.00317717209134006,0.000231513954749497,299,299,299 -"669","IAR_LU_subtracted","asc lower intestine",100,0.69,0.029,0.00131,0.688499643316709,0.0291663813610362,0.00131311787679812,0.45,0.45,0.45,0.0172978748913048,0.00151214165314084,0.000114727932084214,299,299,299 -"670","IAR_LU_subtracted","asc lower intestine",200,0.69,0.029,0.00131,0.689091142138651,0.0290838262951937,0.00131259560662869,0.45,0.45,0.45,0.00862471112757458,0.000746769041441657,5.72226395519967e-05,299,299,299 -"671","IAR_LU_subtracted","Blood RA",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.45,0.45,0.45,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 -"672","IAR_LU_subtracted","Blood RA",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.45,0.45,0.45,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 -"673","IAR_LU_subtracted","Blood RA",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.45,0.45,0.45,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 -"674","IAR_LU_subtracted","Blood RA",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.45,0.45,0.45,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 -"675","IAR_LU_subtracted","Blood RA",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.45,0.45,0.45,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 -"676","IAR_LU_subtracted","Blood RV",10,1,0.1,0.003,0.868045922388077,0.0985985293170771,0.000602377539314825,0.45,0.45,0.45,0.112435321636501,0.00440048348198392,0.000954240122896554,299,299,299 -"677","IAR_LU_subtracted","Blood RV",30,1,0.1,0.003,0.957942477946737,0.0996184418317999,0.000602393052438452,0.45,0.45,0.45,0.033447334956949,0.00133438593586357,0.000954268289514534,299,299,299 -"678","IAR_LU_subtracted","Blood RV",50,1,0.1,0.003,0.974974772688138,0.0997749955437326,0.000602405603200741,0.45,0.45,0.45,0.0196506919536509,0.000799331220799176,0.000954266532348308,299,299,299 -"679","IAR_LU_subtracted","Blood RV",100,1,0.1,0.003,0.987563371296049,0.0998909406438783,0.000602442811986694,0.45,0.45,0.45,0.00967550352526221,0.000393844437553459,0.000954286483399826,299,299,299 -"680","IAR_LU_subtracted","Blood RV",200,1,0.1,0.003,0.993800432483625,0.0999475578955035,0.000602417326124585,0.45,0.45,0.45,0.00480131473462409,0.000192683440854932,0.000954060412685357,299,299,299 -"681","IAR_LU_subtracted","desc lower intestine",10,0.69,0.029,0.00131,0.649071571625974,0.0374643243918038,0.0012839709016351,0.45,0.45,0.45,0.187010914855941,0.0225038113819589,0.0010310750351664,299,299,299 -"682","IAR_LU_subtracted","desc lower intestine",30,0.69,0.029,0.00131,0.681939176203194,0.030294534546328,0.00132700874615634,0.45,0.45,0.45,0.0603891142121709,0.00615614452364872,0.000393814791852722,299,299,299 -"683","IAR_LU_subtracted","desc lower intestine",50,0.69,0.029,0.00131,0.686488325351207,0.0294805288036491,0.00131674147781799,0.45,0.45,0.45,0.0350265291360364,0.00317717209129982,0.000231513954746746,299,299,299 -"684","IAR_LU_subtracted","desc lower intestine",100,0.69,0.029,0.00131,0.688499643317253,0.029166381360917,0.00131311787679321,0.45,0.45,0.45,0.0172978748932321,0.00151214165342676,0.0001147279321005,299,299,299 -"685","IAR_LU_subtracted","desc lower intestine",200,0.69,0.029,0.00131,0.689091142140118,0.02908382629515,0.00131259560662137,0.45,0.45,0.45,0.00862471112793025,0.000746769041292778,5.72226395589749e-05,299,299,299 -"686","IAR_LU_subtracted","esophagus",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.45,0.45,0.45,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 -"687","IAR_LU_subtracted","esophagus",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.45,0.45,0.45,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 -"688","IAR_LU_subtracted","esophagus",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.45,0.45,0.45,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 -"689","IAR_LU_subtracted","esophagus",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.45,0.45,0.45,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 -"690","IAR_LU_subtracted","esophagus",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.45,0.45,0.45,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 -"691","IAR_LU_subtracted","esophagus cont",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.45,0.45,0.45,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 -"692","IAR_LU_subtracted","esophagus cont",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.45,0.45,0.45,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 -"693","IAR_LU_subtracted","esophagus cont",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.45,0.45,0.45,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 -"694","IAR_LU_subtracted","esophagus cont",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.45,0.45,0.45,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 -"695","IAR_LU_subtracted","esophagus cont",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.45,0.45,0.45,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 -"696","IAR_LU_subtracted","Left kidney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.45,0.45,0.45,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 -"697","IAR_LU_subtracted","Left kidney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.45,0.45,0.45,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 -"698","IAR_LU_subtracted","Left kidney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.45,0.45,0.45,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 -"699","IAR_LU_subtracted","Left kidney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.45,0.45,0.45,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 -"700","IAR_LU_subtracted","Left kidney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.45,0.45,0.45,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 -"701","IAR_LU_subtracted","left kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.45,0.45,0.45,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 -"702","IAR_LU_subtracted","left kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.45,0.45,0.45,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 -"703","IAR_LU_subtracted","left kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.45,0.45,0.45,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 -"704","IAR_LU_subtracted","left kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.45,0.45,0.45,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 -"705","IAR_LU_subtracted","left kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.45,0.45,0.45,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 -"706","IAR_LU_subtracted","Liver",10,0.11,0.1,0.0015,0.121102796262656,0.0634637023292287,0.00152084809188092,0.45,0.45,0.45,0.130105575340284,0.0425007401607272,0.000472993211159269,299,299,299 -"707","IAR_LU_subtracted","Liver",30,0.11,0.1,0.0015,0.0977558608603766,0.0724781854232728,0.00150154707211704,0.45,0.45,0.45,0.0613502493964698,0.034666306804501,0.000152137743344338,299,299,299 -"708","IAR_LU_subtracted","Liver",50,0.11,0.1,0.0015,0.100463203481405,0.0787945272430514,0.00150017699860271,0.45,0.45,0.45,0.0409980511902564,0.0284510570921832,9.09784274199351e-05,299,299,299 -"709","IAR_LU_subtracted","Liver",100,0.11,0.1,0.0015,0.105490313170251,0.0868785527973936,0.00149980895512081,0.45,0.45,0.45,0.0208767035787053,0.0189325400054299,4.54189474712779e-05,299,299,299 -"710","IAR_LU_subtracted","Liver",200,0.11,0.1,0.0015,0.107911734542008,0.0926665405232451,0.00149983471124947,0.45,0.45,0.45,0.010493763751019,0.0109829786476278,2.26988859055568e-05,299,299,299 -"711","IAR_LU_subtracted","Myocardium LV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.45,0.45,0.45,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 -"712","IAR_LU_subtracted","Myocardium LV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.45,0.45,0.45,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 -"713","IAR_LU_subtracted","Myocardium LV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.45,0.45,0.45,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 -"714","IAR_LU_subtracted","Myocardium LV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.45,0.45,0.45,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 -"715","IAR_LU_subtracted","Myocardium LV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.45,0.45,0.45,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 -"716","IAR_LU_subtracted","myocardium ra",10,0.07,0.07,0.0015,0.10186810798305,0.0606534117311725,0.00151975238387796,0.45,0.45,0.45,0.120898300340911,0.0434847654606971,0.000451902244673881,299,299,299 -"717","IAR_LU_subtracted","myocardium ra",30,0.07,0.07,0.0015,0.0669092818312048,0.0629092386288161,0.00150135088654914,0.45,0.45,0.45,0.05467533607346,0.0390189481601652,0.000145531665798083,299,299,299 -"718","IAR_LU_subtracted","myocardium ra",50,0.07,0.07,0.0015,0.0649047689569669,0.0657124808261645,0.00150012323561766,0.45,0.45,0.45,0.0373547816491121,0.0345082797190195,8.70510202022302e-05,299,299,299 -"719","IAR_LU_subtracted","myocardium ra",100,0.07,0.07,0.0015,0.0673614139938931,0.0697335469292888,0.00149980568738501,0.45,0.45,0.45,0.0196998246819315,0.0271665305647647,4.34633528226247e-05,299,299,299 -"720","IAR_LU_subtracted","myocardium ra",200,0.07,0.07,0.0015,0.0692312276466145,0.0716133033330059,0.00149983895305835,0.45,0.45,0.45,0.00928973196376031,0.0191722698037651,2.17222536755328e-05,299,299,299 -"721","IAR_LU_subtracted","myocardium RV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.45,0.45,0.45,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 -"722","IAR_LU_subtracted","myocardium RV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.45,0.45,0.45,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 -"723","IAR_LU_subtracted","myocardium RV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.45,0.45,0.45,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 -"724","IAR_LU_subtracted","myocardium RV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.45,0.45,0.45,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 -"725","IAR_LU_subtracted","myocardium RV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.45,0.45,0.45,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 -"726","IAR_LU_subtracted","pancreas",10,0.15,0.01,0.00129999999999999,0.145973572791277,0.0418322359345869,0.00134733544815708,0.45,0.45,0.45,0.133409111984285,0.0427515729870689,0.000431649675978663,299,299,299 -"727","IAR_LU_subtracted","pancreas",30,0.15,0.01,0.00129999999999999,0.128614984268459,0.0196787383317491,0.00133082551202286,0.45,0.45,0.45,0.0591082064465484,0.0231057149671265,0.000139043274945453,299,299,299 -"728","IAR_LU_subtracted","pancreas",50,0.15,0.01,0.00129999999999999,0.129890010988128,0.014418840532864,0.00132993185853207,0.45,0.45,0.45,0.0358391575513234,0.0125046852807563,8.31806812154377e-05,299,299,299 -"729","IAR_LU_subtracted","pancreas",100,0.15,0.01,0.00129999999999999,0.130754692398513,0.0119016729036151,0.00132978575875502,0.45,0.45,0.45,0.0179785444573827,0.00250589698561192,4.15321586456171e-05,299,299,299 -"730","IAR_LU_subtracted","pancreas",200,0.15,0.01,0.00129999999999999,0.131107657691518,0.0115757199693789,0.00132987961477637,0.45,0.45,0.45,0.00899900314885932,0.00109942059007681,2.07569285081239e-05,299,299,299 -"731","IAR_LU_subtracted","pericardium",10,0.07,0.00999999999999999,0.003,0.182005007344476,0.0449399513343394,0.00273701082230784,0.45,0.45,0.45,0.199393895082264,0.0446081430054895,0.00088504212200084,299,299,299 -"732","IAR_LU_subtracted","pericardium",30,0.07,0.00999999999999999,0.003,0.0767264387057665,0.0483395662495535,0.00304612925895245,0.45,0.45,0.45,0.0884446645225644,0.0443972230787564,0.00039105626191339,299,299,299 -"733","IAR_LU_subtracted","pericardium",50,0.07,0.00999999999999999,0.003,0.060765317251112,0.0422176464039951,0.00304009046144298,0.45,0.45,0.45,0.0613396076316471,0.0421072613162647,0.000238152536499515,299,299,299 -"734","IAR_LU_subtracted","pericardium",100,0.07,0.00999999999999999,0.003,0.0523575780666355,0.0289300542806783,0.00303324788669806,0.45,0.45,0.45,0.0371516507191181,0.0324742655660579,0.000118500604743613,299,299,299 -"735","IAR_LU_subtracted","pericardium",200,0.07,0.00999999999999999,0.003,0.0514683102067133,0.0168738578171833,0.00303117957616411,0.45,0.45,0.45,0.0206465635019397,0.0152473956782957,5.91963411917844e-05,299,299,299 -"736","IAR_LU_subtracted","right kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.45,0.45,0.45,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 -"737","IAR_LU_subtracted","right kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.45,0.45,0.45,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 -"738","IAR_LU_subtracted","right kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.45,0.45,0.45,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 -"739","IAR_LU_subtracted","right kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.45,0.45,0.45,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 -"740","IAR_LU_subtracted","right kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.45,0.45,0.45,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 -"741","IAR_LU_subtracted","Right kydney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.45,0.45,0.45,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 -"742","IAR_LU_subtracted","Right kydney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.45,0.45,0.45,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 -"743","IAR_LU_subtracted","Right kydney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.45,0.45,0.45,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 -"744","IAR_LU_subtracted","Right kydney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.45,0.45,0.45,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 -"745","IAR_LU_subtracted","Right kydney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.45,0.45,0.45,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 -"746","IAR_LU_subtracted","small intestine",10,0.69,0.029,0.00131,0.649071571639429,0.037464324397123,0.00128397090175435,0.45,0.45,0.45,0.187010914793362,0.0225038113743857,0.0010310750352814,299,299,299 -"747","IAR_LU_subtracted","small intestine",30,0.69,0.029,0.00131,0.681939176198207,0.0302945345465633,0.00132700874616123,0.45,0.45,0.45,0.0603891142492399,0.00615614452326418,0.000393814792063893,299,299,299 -"748","IAR_LU_subtracted","small intestine",50,0.69,0.029,0.00131,0.686488325345437,0.0294805288039652,0.00131674147785283,0.45,0.45,0.45,0.0350265291349697,0.00317717209152528,0.000231513954749497,299,299,299 -"749","IAR_LU_subtracted","small intestine",100,0.69,0.029,0.00131,0.688499643316856,0.029166381361068,0.00131311787679812,0.45,0.45,0.45,0.0172978748915505,0.00151214165319551,0.000114727932084214,299,299,299 -"750","IAR_LU_subtracted","small intestine",200,0.69,0.029,0.00131,0.689091142138875,0.0290838262952531,0.00131259560662869,0.45,0.45,0.45,0.00862471112761152,0.000746769041454522,5.72226395519967e-05,299,299,299 -"751","IAR_LU_subtracted","spleen",10,0.2,0.03,0.00129999999999999,0.192961858260559,0.0492597470738909,0.00131869223769686,0.45,0.45,0.45,0.14672006477452,0.0390143038859564,0.000459161541284809,299,299,299 -"752","IAR_LU_subtracted","spleen",30,0.2,0.03,0.00129999999999999,0.195619974063773,0.0378660228770973,0.00130108907088979,0.45,0.45,0.45,0.0582480816426133,0.0230396606877878,0.000147366538355311,299,299,299 -"753","IAR_LU_subtracted","spleen",50,0.2,0.03,0.00129999999999999,0.198125993490742,0.0334346769905656,0.00130009526398064,0.45,0.45,0.45,0.033860026554998,0.0141196943300376,8.81308203353264e-05,299,299,299 -"754","IAR_LU_subtracted","spleen",100,0.2,0.03,0.00129999999999999,0.199199769344964,0.0308742355909984,0.001299928493873,0.45,0.45,0.45,0.0167658026535138,0.00575644302154389,4.39969723252588e-05,299,299,299 -"755","IAR_LU_subtracted","spleen",200,0.2,0.03,0.00129999999999999,0.199585281953296,0.0302681533889609,0.00130002911399547,0.45,0.45,0.45,0.00835864747465978,0.00272874833953629,2.19877335574001e-05,299,299,299 -"756","IAR_LU_subtracted","st wall",10,0.3,0.012,0.0015,0.262694585680195,0.0319185653801386,0.00157773932710541,0.45,0.45,0.45,0.172890946488421,0.0349074029422235,0.000614593950499859,299,299,299 -"757","IAR_LU_subtracted","st wall",30,0.3,0.012,0.0015,0.271112584934838,0.0157552797151743,0.00155214816764873,0.45,0.45,0.45,0.0670076659202155,0.0109054102082447,0.00019551156370717,299,299,299 -"758","IAR_LU_subtracted","st wall",50,0.3,0.012,0.0015,0.273986799953669,0.013806573219354,0.00154952132488848,0.45,0.45,0.45,0.0398746950657118,0.00322902951392831,0.00011668052444887,299,299,299 -"759","IAR_LU_subtracted","st wall",100,0.3,0.012,0.0015,0.275412083141614,0.0133114999997825,0.0015486735829641,0.45,0.45,0.45,0.0199011338224045,0.00132338051992791,5.81996976856253e-05,299,299,299 -"760","IAR_LU_subtracted","st wall",200,0.3,0.012,0.0015,0.275903272911037,0.0131993048909566,0.00154860379618769,0.45,0.45,0.45,0.00994694081242093,0.000634013714884041,2.90796048726369e-05,299,299,299 -"761","IAR_LU_subtracted","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.649071571567166,0.037464324385318,0.00128397090178629,0.45,0.45,0.45,0.187010915027799,0.0225038113468096,0.00103107503559299,299,299,299 -"762","IAR_LU_subtracted","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.681939176203752,0.0302945345463009,0.00132700874615982,0.45,0.45,0.45,0.0603891142173648,0.00615614452231295,0.000393814791967693,299,299,299 -"763","IAR_LU_subtracted","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.686488325340787,0.0294805288049083,0.00131674147788471,0.45,0.45,0.45,0.0350265291502769,0.00317717209269235,0.000231513954838717,299,299,299 -"764","IAR_LU_subtracted","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.688499643316927,0.0291663813609283,0.00131311787679501,0.45,0.45,0.45,0.0172978748928733,0.00151214165340536,0.000114727932099834,299,299,299 -"765","IAR_LU_subtracted","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689091142135544,0.0290838262954833,0.0013125956066485,0.45,0.45,0.45,0.0086247111300983,0.000746769041458226,5.72226395704009e-05,299,299,299 -"766","IAR_LU_subtracted","Vein",10,1,0.1,0.00299999999999999,0.868045922383658,0.0985985293150582,0.000602377539365262,0.45,0.45,0.45,0.112435321603995,0.00440048348201647,0.000954240122974581,299,299,299 -"767","IAR_LU_subtracted","Vein",30,1,0.1,0.00299999999999999,0.957942477946852,0.0996184418326707,0.00060239305244365,0.45,0.45,0.45,0.0334473349561743,0.00133438593435031,0.000954268289514292,299,299,299 -"768","IAR_LU_subtracted","Vein",50,1,0.1,0.00299999999999999,0.974974772688412,0.0997749955436001,0.000602405603200741,0.45,0.45,0.45,0.0196506919525737,0.000799331221169125,0.000954266532348308,299,299,299 -"769","IAR_LU_subtracted","Vein",100,1,0.1,0.00299999999999999,0.987563371296023,0.0998909406437419,0.000602442811986694,0.45,0.45,0.45,0.00967550352550441,0.000393844437618856,0.000954286483399826,299,299,299 -"770","IAR_LU_subtracted","Vein",200,1,0.1,0.00299999999999999,0.993800432483541,0.0999475578951229,0.000602417326124585,0.45,0.45,0.45,0.00480131473453758,0.000192683440678621,0.000954060412685357,299,299,299 -"771","OGC_AmsterdamUMC_Bayesian_biexp","Artery",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.45,0.45,0.45,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 -"772","OGC_AmsterdamUMC_Bayesian_biexp","Artery",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.45,0.45,0.45,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 -"773","OGC_AmsterdamUMC_Bayesian_biexp","Artery",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.45,0.45,0.45,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 -"774","OGC_AmsterdamUMC_Bayesian_biexp","Artery",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.45,0.45,0.45,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 -"775","OGC_AmsterdamUMC_Bayesian_biexp","Artery",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.45,0.45,0.45,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 -"776","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694246808778769,0.0332124281614618,0.00115662969455558,0.45,0.45,0.45,0.110159746203623,0.0193048930533793,0.000818020501222016,299,299,299 -"777","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690033147644459,0.0293545237816436,0.00129905886269543,0.45,0.45,0.45,0.036083088630791,0.00362951393892406,0.000284878762206832,299,299,299 -"778","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.689921467398159,0.029138651533785,0.00130314910724909,0.45,0.45,0.45,0.0213772215849651,0.00213834289461457,0.00016610479346135,299,299,299 -"779","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689705414601575,0.0291477643601371,0.0013080534895242,0.45,0.45,0.45,0.0108249806858387,0.00129122051220513,8.27804115283052e-05,299,299,299 -"780","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689676530218629,0.0290763054841384,0.00130801784811619,0.45,0.45,0.45,0.00583323341091172,0.000767401324572525,4.21804967296496e-05,299,299,299 -"781","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.45,0.45,0.45,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 -"782","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.45,0.45,0.45,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 -"783","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.45,0.45,0.45,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 -"784","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.45,0.45,0.45,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 -"785","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.45,0.45,0.45,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 -"786","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",10,1,0.1,0.003,0.914297401004746,0.124952391582887,0.000341385315837157,0.45,0.45,0.45,0.0338704200880721,0.0264919309675768,0.000759817497225985,299,299,299 -"787","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",30,1,0.1,0.003,0.973099598376866,0.107393352119341,0.000232219992515836,0.45,0.45,0.45,0.00780473426493649,0.00748303413275565,0.000430417814946813,299,299,299 -"788","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",50,1,0.1,0.003,0.984110980162476,0.104286733344672,0.000213374085275976,0.45,0.45,0.45,0.00467665532925233,0.00434422535404416,0.000410079794992667,299,299,299 -"789","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",100,1,0.1,0.003,0.992309672842335,0.102048011852143,0.000179453249523488,0.45,0.45,0.45,0.00230376286511362,0.00212585312384098,0.0003773364651911,299,299,299 -"790","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",200,1,0.1,0.003,0.996293917212231,0.100989102049737,0.000153682190571484,0.45,0.45,0.45,0.0011463180878882,0.00105305653525395,0.000356019214536034,299,299,299 -"791","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694246845378351,0.0332125427670004,0.00115663122095504,0.45,0.45,0.45,0.110160150700988,0.0193048206014305,0.000818021742499563,299,299,299 -"792","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690033102633023,0.0293545254824597,0.00129905896131927,0.45,0.45,0.45,0.0360830639131271,0.00362951206875517,0.000284879125083764,299,299,299 -"793","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689855673695442,0.0291428811190877,0.00130360554367507,0.45,0.45,0.45,0.0213154090326844,0.0021325877974294,0.000165776474780529,299,299,299 -"794","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689705423019645,0.029147764170286,0.0013080534599478,0.45,0.45,0.45,0.0108249733952305,0.00129122098709657,8.27803296124957e-05,299,299,299 -"795","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689676538098746,0.0290763056742895,0.00130801775791647,0.45,0.45,0.45,0.00583319664850218,0.000767398183974445,4.21801838019575e-05,299,299,299 -"796","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.45,0.45,0.45,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 -"797","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.45,0.45,0.45,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 -"798","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.45,0.45,0.45,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 -"799","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.45,0.45,0.45,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 -"800","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.45,0.45,0.45,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 -"801","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.45,0.45,0.45,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 -"802","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.45,0.45,0.45,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 -"803","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.45,0.45,0.45,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 -"804","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.45,0.45,0.45,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 -"805","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.45,0.45,0.45,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 -"806","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.45,0.45,0.45,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 -"807","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.45,0.45,0.45,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 -"808","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.45,0.45,0.45,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 -"809","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.45,0.45,0.45,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 -"810","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.45,0.45,0.45,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 -"811","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.45,0.45,0.45,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 -"812","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.45,0.45,0.45,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 -"813","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.45,0.45,0.45,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 -"814","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.45,0.45,0.45,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 -"815","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.45,0.45,0.45,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 -"816","OGC_AmsterdamUMC_Bayesian_biexp","Liver",10,0.11,0.1,0.0015,0.170376564882108,0.469616209489762,0.00136302767202211,0.45,0.45,0.45,0.138211368776015,0.731976840414104,0.000361913909318564,299,299,299 -"817","OGC_AmsterdamUMC_Bayesian_biexp","Liver",30,0.11,0.1,0.0015,0.11810940657777,0.227068026042997,0.0014860402075791,0.45,0.45,0.45,0.0342593875584427,0.390847594433051,9.96091018932598e-05,299,299,299 -"818","OGC_AmsterdamUMC_Bayesian_biexp","Liver",50,0.11,0.1,0.0015,0.112169947194152,0.131862486304358,0.00149587941679805,0.45,0.45,0.45,0.0153976558796226,0.168625986104975,5.11568481112502e-05,299,299,299 -"819","OGC_AmsterdamUMC_Bayesian_biexp","Liver",100,0.11,0.1,0.0015,0.110516960663717,0.104566165417941,0.00149817275530986,0.45,0.45,0.45,0.00752550525764433,0.0281966308117207,2.46815644447154e-05,299,299,299 -"820","OGC_AmsterdamUMC_Bayesian_biexp","Liver",200,0.11,0.1,0.0015,0.110097109059224,0.101175495734664,0.00149922432315367,0.45,0.45,0.45,0.00376626520198992,0.0116170123481358,1.22063280870859e-05,299,299,299 -"821","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.45,0.45,0.45,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 -"822","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.45,0.45,0.45,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 -"823","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.45,0.45,0.45,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 -"824","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.45,0.45,0.45,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 -"825","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.45,0.45,0.45,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 -"826","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",10,0.07,0.07,0.0015,0.132992854081483,0.461997483376288,0.00136831570972518,0.45,0.45,0.45,0.140522743944648,0.734010313718581,0.000346091519424476,299,299,299 -"827","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884517939449098,0.289658964780844,0.0014676259819499,0.45,0.45,0.45,0.0508441257041168,0.529373222441277,0.000119387045545757,299,299,299 -"828","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0761265927150077,0.156862196421825,0.00148987685522847,0.45,0.45,0.45,0.0242266882566584,0.309458478938769,6.34852979630936e-05,299,299,299 -"829","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0709638888897991,0.0784496324481009,0.00149743190633742,0.45,0.45,0.45,0.00811747399978573,0.0469212398862685,2.52774164583531e-05,299,299,299 -"830","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701854186634233,0.0715583354856421,0.00149905296281753,0.45,0.45,0.45,0.00403493989933669,0.0129671102252917,1.23364517371494e-05,299,299,299 -"831","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.45,0.45,0.45,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 -"832","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.45,0.45,0.45,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 -"833","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.45,0.45,0.45,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 -"834","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.45,0.45,0.45,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 -"835","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.45,0.45,0.45,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 -"836","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.177581724321138,0.43065718969884,0.00125654974398315,0.45,0.45,0.45,0.165637117410062,0.745081523961432,0.000402663506351594,299,299,299 -"837","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.176565399528607,0.0605254346275223,0.00126098577319189,0.45,0.45,0.45,0.0941306062972586,0.26112658574032,0.000185523030805802,299,299,299 -"838","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.169797776388179,0.0172281215928433,0.00126914664260273,0.45,0.45,0.45,0.0691911662849515,0.0530402156979167,0.000129620496323605,299,299,299 -"839","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156843915754002,0.0102744645346462,0.00128825630219321,0.45,0.45,0.45,0.0330983274466555,0.00280593527748534,6.19639236378919e-05,299,299,299 -"840","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151525028767084,0.0100578225668435,0.00129696544759154,0.45,0.45,0.45,0.0150042143805674,0.00127728832085491,2.90654102466401e-05,299,299,299 -"841","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.211255537581016,0.249229775871576,0.00250125413556506,0.45,0.45,0.45,0.261211569379197,0.559657730577179,0.000882896050374514,299,299,299 -"842","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.129163583048985,0.267009677446907,0.00288255604574022,0.45,0.45,0.45,0.17935605322893,0.595048801434633,0.000417501553796525,299,299,299 -"843","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.117317522254229,0.229011081795502,0.0029314606487806,0.45,0.45,0.45,0.148570783679304,0.554095364539563,0.000298907038283006,299,299,299 -"844","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.116118730669429,0.0999844203861992,0.00294503908419238,0.45,0.45,0.45,0.115927313526193,0.331589357967683,0.000200447722297107,299,299,299 -"845","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0985240401785247,0.0153444939154568,0.00296476284362889,0.45,0.45,0.45,0.0771271956803151,0.0234254542116207,0.000123398388298247,299,299,299 -"846","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.45,0.45,0.45,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 -"847","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.45,0.45,0.45,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 -"848","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.45,0.45,0.45,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 -"849","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.45,0.45,0.45,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 -"850","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.45,0.45,0.45,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 -"851","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.45,0.45,0.45,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 -"852","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.45,0.45,0.45,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 -"853","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.45,0.45,0.45,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 -"854","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.45,0.45,0.45,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 -"855","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.45,0.45,0.45,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 -"856","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",10,0.69,0.029,0.00131,0.694246360658053,0.0332125553132146,0.00115663016547754,0.45,0.45,0.45,0.110159259316649,0.0193048143897897,0.000818020512686296,299,299,299 -"857","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",30,0.69,0.029,0.00131,0.690033088055209,0.0293545333482025,0.00129905906199326,0.45,0.45,0.45,0.0360830894438484,0.00362952375376617,0.000284878708553556,299,299,299 -"858","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",50,0.69,0.029,0.00131,0.689921486203945,0.0291386488646149,0.00130314885737654,0.45,0.45,0.45,0.0213772482384634,0.00213834833191147,0.00016610478799147,299,299,299 -"859","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",100,0.69,0.029,0.00131,0.689787379406689,0.0291336831256088,0.00130679586340067,0.45,0.45,0.45,0.0108805102554908,0.0012833541569494,8.28438476605137e-05,299,299,299 -"860","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",200,0.69,0.029,0.00131,0.689676541245555,0.0290763054757247,0.00130801778345195,0.45,0.45,0.45,0.00583322921862559,0.000767400913297244,4.21803596038404e-05,299,299,299 -"861","OGC_AmsterdamUMC_Bayesian_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.252378410002267,0.233718646050262,0.00119059786898657,0.45,0.45,0.45,0.143855248399429,0.502476062586288,0.000408972864282049,299,299,299 -"862","OGC_AmsterdamUMC_Bayesian_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206891201646101,0.0391651098808692,0.00128264117770245,0.45,0.45,0.45,0.0390714113206133,0.0577794578547973,0.000116384817598468,299,299,299 -"863","OGC_AmsterdamUMC_Bayesian_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202242372508398,0.0312880376598558,0.00129258240323802,0.45,0.45,0.45,0.0221743225017492,0.00880333853639113,6.60228502625122e-05,299,299,299 -"864","OGC_AmsterdamUMC_Bayesian_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200493108698575,0.0302484422333146,0.00129737230400495,0.45,0.45,0.45,0.0107432935350786,0.00383175326077784,3.20545640691115e-05,299,299,299 -"865","OGC_AmsterdamUMC_Bayesian_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.2000920443937,0.0300527202364231,0.00129896878525322,0.45,0.45,0.45,0.00532447796635576,0.00186704596028927,1.58938321517461e-05,299,299,299 -"866","OGC_AmsterdamUMC_Bayesian_biexp","st wall",10,0.3,0.012,0.0015,0.342171653732148,0.169021111769008,0.00137658979771026,0.45,0.45,0.45,0.209121239054118,0.464911517650575,0.000634230099480539,299,299,299 -"867","OGC_AmsterdamUMC_Bayesian_biexp","st wall",30,0.3,0.012,0.0015,0.322622542108482,0.0163119559447378,0.00144210772050894,0.45,0.45,0.45,0.0995249294874889,0.0358945966856197,0.000264951211719173,299,299,299 -"868","OGC_AmsterdamUMC_Bayesian_biexp","st wall",50,0.3,0.012,0.0015,0.307380239713298,0.0123840142302169,0.00147963560215619,0.45,0.45,0.45,0.0543986230945646,0.00311908608212234,0.000143578936921841,299,299,299 -"869","OGC_AmsterdamUMC_Bayesian_biexp","st wall",100,0.3,0.012,0.0015,0.301693691231062,0.0120871111509783,0.00149429686700861,0.45,0.45,0.45,0.0263415216139092,0.00143226934515234,6.96702203754273e-05,299,299,299 -"870","OGC_AmsterdamUMC_Bayesian_biexp","st wall",200,0.3,0.012,0.0015,0.300260349126461,0.0120289058061544,0.00149847883633801,0.45,0.45,0.45,0.0131909252941061,0.000701134900800486,3.49408339753062e-05,299,299,299 -"871","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694259683027242,0.0332121262581744,0.00115651817908036,0.45,0.45,0.45,0.11017656415909,0.0193052051533991,0.000818178301615205,299,299,299 -"872","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.690033167699518,0.0293545217522552,0.00129905853784076,0.45,0.45,0.45,0.036083058729084,0.00362951389776666,0.000284878311839241,299,299,299 -"873","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689921506074573,0.0291386465936453,0.0013031486571486,0.45,0.45,0.45,0.0213772426772885,0.00213834747992634,0.000166104827306889,299,299,299 -"874","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689705435319841,0.0291477639759397,0.00130805336484234,0.45,0.45,0.45,0.0108250110017957,0.0012912220707904,8.27806112880171e-05,299,299,299 -"875","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689703364774609,0.0290729200975083,0.0013079275799941,0.45,0.45,0.45,0.0057973136397047,0.000764637348817088,4.20153078500508e-05,299,299,299 -"876","OGC_AmsterdamUMC_Bayesian_biexp","Vein",10,1,0.1,0.00299999999999999,0.914295867026791,0.124952449208066,0.000341386376995397,0.45,0.45,0.45,0.033870556357192,0.0264921360903649,0.000759818054968653,299,299,299 -"877","OGC_AmsterdamUMC_Bayesian_biexp","Vein",30,1,0.1,0.00299999999999999,0.973099780568972,0.107393408056422,0.000232219949442385,0.45,0.45,0.45,0.00780476201787954,0.00748295051395532,0.000430417878162574,299,299,299 -"878","OGC_AmsterdamUMC_Bayesian_biexp","Vein",50,1,0.1,0.00299999999999999,0.984111118518383,0.104286700344162,0.000213374328770124,0.45,0.45,0.45,0.00467685321257514,0.00434424421111718,0.000410079679040286,299,299,299 -"879","OGC_AmsterdamUMC_Bayesian_biexp","Vein",100,1,0.1,0.00299999999999999,0.992309696276133,0.102047954866857,0.000179453478078494,0.45,0.45,0.45,0.00230377417751352,0.00212580311791353,0.000377336365917817,299,299,299 -"880","OGC_AmsterdamUMC_Bayesian_biexp","Vein",200,1,0.1,0.00299999999999999,0.996293961868916,0.100989052773125,0.000153682306312602,0.45,0.45,0.45,0.00114635413380225,0.0010530293970243,0.000356019850089775,299,299,299 -"881","OGC_AmsterdamUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.45,0.45,0.45,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 -"882","OGC_AmsterdamUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.45,0.45,0.45,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 -"883","OGC_AmsterdamUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.45,0.45,0.45,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 -"884","OGC_AmsterdamUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.45,0.45,0.45,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 -"885","OGC_AmsterdamUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.45,0.45,0.45,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 -"886","OGC_AmsterdamUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694830688531838,0.0326249863604666,0.00114655138542055,0.45,0.45,0.45,0.0978007798077074,0.0170421542867141,0.00074426190292453,299,299,299 -"887","OGC_AmsterdamUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.689570850554634,0.0293846834593745,0.00130099623058546,0.45,0.45,0.45,0.0358332140742521,0.00328309904723427,0.000279782024748395,299,299,299 -"888","OGC_AmsterdamUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.68982569362266,0.0291500977518991,0.00130432508924539,0.45,0.45,0.45,0.0213881941208833,0.0019024829657527,0.000166083415100297,299,299,299 -"889","OGC_AmsterdamUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689946565171096,0.0290467790735175,0.00130699632921778,0.45,0.45,0.45,0.0106631625297783,0.000938640327346139,8.26562863313582e-05,299,299,299 -"890","OGC_AmsterdamUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689981335122987,0.0290165319422673,0.00130845678093965,0.45,0.45,0.45,0.00532704595643484,0.00046772177618261,4.12831236659919e-05,299,299,299 -"891","OGC_AmsterdamUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.45,0.45,0.45,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 -"892","OGC_AmsterdamUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.45,0.45,0.45,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 -"893","OGC_AmsterdamUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.45,0.45,0.45,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 -"894","OGC_AmsterdamUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.45,0.45,0.45,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 -"895","OGC_AmsterdamUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.45,0.45,0.45,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 -"896","OGC_AmsterdamUMC_biexp","Blood RV",10,1,0.1,0.003,0.916551204477061,0.122369011950598,0.000273066803012016,0.45,0.45,0.45,0.0227251914120853,0.0234330403592379,0.000525988248231766,299,299,299 -"897","OGC_AmsterdamUMC_biexp","Blood RV",30,1,0.1,0.003,0.973161260787835,0.106546698466594,0.000228130843033075,0.45,0.45,0.45,0.0078285922138933,0.00645782890351296,0.000431214372101425,299,299,299 -"898","OGC_AmsterdamUMC_biexp","Blood RV",50,1,0.1,0.003,0.984189738173453,0.103791606376294,0.000208198245221205,0.45,0.45,0.45,0.00468303351061325,0.00375278684341751,0.000406133457828171,299,299,299 -"899","OGC_AmsterdamUMC_biexp","Blood RV",100,1,0.1,0.003,0.992359928406606,0.101811171259488,0.000175728107883654,0.45,0.45,0.45,0.00229602425602299,0.00183520810771947,0.000373114811370238,299,299,299 -"900","OGC_AmsterdamUMC_biexp","Blood RV",200,1,0.1,0.003,0.996323154043503,0.100873285154226,0.000149761334226485,0.45,0.45,0.45,0.0011362202179319,0.000908483065035726,0.000352386145881468,299,299,299 -"901","OGC_AmsterdamUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694830688306291,0.0326249863621617,0.00114655138827578,0.45,0.45,0.45,0.0978007793640295,0.0170421542714422,0.000744261900488319,299,299,299 -"902","OGC_AmsterdamUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.689570850526864,0.029384683464532,0.0013009962306133,0.45,0.45,0.45,0.0358332145166679,0.00328309907506283,0.000279782027560119,299,299,299 -"903","OGC_AmsterdamUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689825693551577,0.0291500977561171,0.00130432508986481,0.45,0.45,0.45,0.0213881941750843,0.00190248296579918,0.00016608341577808,299,299,299 -"904","OGC_AmsterdamUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689946565084964,0.0290467790793416,0.00130699633001302,0.45,0.45,0.45,0.0106631624492495,0.000938640323571297,8.26562859037306e-05,299,299,299 -"905","OGC_AmsterdamUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689981335136009,0.0290165319415151,0.00130845678084101,0.45,0.45,0.45,0.0053270460155283,0.000467721779019385,4.12831240551719e-05,299,299,299 -"906","OGC_AmsterdamUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.45,0.45,0.45,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 -"907","OGC_AmsterdamUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.45,0.45,0.45,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 -"908","OGC_AmsterdamUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.45,0.45,0.45,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 -"909","OGC_AmsterdamUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.45,0.45,0.45,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 -"910","OGC_AmsterdamUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.45,0.45,0.45,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 -"911","OGC_AmsterdamUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.45,0.45,0.45,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 -"912","OGC_AmsterdamUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.45,0.45,0.45,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 -"913","OGC_AmsterdamUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.45,0.45,0.45,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 -"914","OGC_AmsterdamUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.45,0.45,0.45,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 -"915","OGC_AmsterdamUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.45,0.45,0.45,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 -"916","OGC_AmsterdamUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.45,0.45,0.45,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 -"917","OGC_AmsterdamUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.45,0.45,0.45,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 -"918","OGC_AmsterdamUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.45,0.45,0.45,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 -"919","OGC_AmsterdamUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.45,0.45,0.45,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 -"920","OGC_AmsterdamUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.45,0.45,0.45,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 -"921","OGC_AmsterdamUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.45,0.45,0.45,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 -"922","OGC_AmsterdamUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.45,0.45,0.45,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 -"923","OGC_AmsterdamUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.45,0.45,0.45,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 -"924","OGC_AmsterdamUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.45,0.45,0.45,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 -"925","OGC_AmsterdamUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.45,0.45,0.45,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 -"926","OGC_AmsterdamUMC_biexp","Liver",10,0.11,0.1,0.0015,0.168781483710098,0.0998946664266393,0.0013498050183832,0.45,0.45,0.45,0.122995139274488,0.0772265009198665,0.000337252957986261,299,299,299 -"927","OGC_AmsterdamUMC_biexp","Liver",30,0.11,0.1,0.0015,0.114188731736888,0.115331619534224,0.00148632594936495,0.45,0.45,0.45,0.0216959423795506,0.0557579468019812,8.43750873327471e-05,299,299,299 -"928","OGC_AmsterdamUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111084793289577,0.110147712355781,0.00149517257250774,0.45,0.45,0.45,0.01183413282986,0.0399148213895639,4.8761702300905e-05,299,299,299 -"929","OGC_AmsterdamUMC_biexp","Liver",100,0.11,0.1,0.0015,0.110231190403675,0.103476574388879,0.0014982923573173,0.45,0.45,0.45,0.00588808517047419,0.0205159283218359,2.43744136435469e-05,299,299,299 -"930","OGC_AmsterdamUMC_biexp","Liver",200,0.11,0.1,0.0015,0.1100470782725,0.101125031030003,0.00149929708375471,0.45,0.45,0.45,0.00293209185601329,0.00988546801948204,1.21465617474882e-05,299,299,299 -"931","OGC_AmsterdamUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.45,0.45,0.45,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 -"932","OGC_AmsterdamUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.45,0.45,0.45,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 -"933","OGC_AmsterdamUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.45,0.45,0.45,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 -"934","OGC_AmsterdamUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.45,0.45,0.45,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 -"935","OGC_AmsterdamUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.45,0.45,0.45,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 -"936","OGC_AmsterdamUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.140842582474029,0.0815154419321809,0.00133683779290497,0.45,0.45,0.45,0.133651654726981,0.0787637500133576,0.000337383058598956,299,299,299 -"937","OGC_AmsterdamUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0829284043873291,0.0925385612868686,0.00146970569880693,0.45,0.45,0.45,0.040894147264683,0.0669997325413034,0.00010234659109373,299,299,299 -"938","OGC_AmsterdamUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.072923245672355,0.086543488787249,0.00149141826884349,0.45,0.45,0.45,0.0155435838870278,0.050860948922495,5.15890939821251e-05,299,299,299 -"939","OGC_AmsterdamUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.070524437875184,0.0753318595008239,0.00149772019600704,0.45,0.45,0.45,0.00682514888448031,0.025139239611477,2.45968000885053e-05,299,299,299 -"940","OGC_AmsterdamUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701212467432704,0.0714929242888122,0.00149916064828103,0.45,0.45,0.45,0.00338190541112971,0.0111832331213025,1.22606190149771e-05,299,299,299 -"941","OGC_AmsterdamUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.45,0.45,0.45,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 -"942","OGC_AmsterdamUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.45,0.45,0.45,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 -"943","OGC_AmsterdamUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.45,0.45,0.45,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 -"944","OGC_AmsterdamUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.45,0.45,0.45,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 -"945","OGC_AmsterdamUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.45,0.45,0.45,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 -"946","OGC_AmsterdamUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.184853535610611,0.0474378705656416,0.00120984216661857,0.45,0.45,0.45,0.161104187646429,0.0669702421956942,0.000392891369414266,299,299,299 -"947","OGC_AmsterdamUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.1758987150233,0.0213648978673952,0.0012561175701719,0.45,0.45,0.45,0.0959617612998877,0.0372699012998766,0.00018463821702496,299,299,299 -"948","OGC_AmsterdamUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.166798142533227,0.0139339848239637,0.00127239422373439,0.45,0.45,0.45,0.0681687338425591,0.0204281200559457,0.000125570308752639,299,299,299 -"949","OGC_AmsterdamUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.155050447560094,0.0103148716578063,0.00129097893352421,0.45,0.45,0.45,0.0319693578528234,0.00247522256148057,5.97694054006783e-05,299,299,299 -"950","OGC_AmsterdamUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151155511078491,0.0100771654020746,0.00129758916819627,0.45,0.45,0.45,0.01486591983984,0.00114131889925594,2.84629910683132e-05,299,299,299 -"951","OGC_AmsterdamUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.262616475802028,0.0308625180597483,0.00230293995321135,0.45,0.45,0.45,0.288611721740561,0.0557288601070258,0.000959963395181612,299,299,299 -"952","OGC_AmsterdamUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171752736546838,0.0258191200871392,0.00279901103476943,0.45,0.45,0.45,0.188837545487512,0.0473569013409168,0.000422023702062297,299,299,299 -"953","OGC_AmsterdamUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.154585152777794,0.0269701085601376,0.00286376703903012,0.45,0.45,0.45,0.156425793643098,0.0489644773433195,0.000304246897964977,299,299,299 -"954","OGC_AmsterdamUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.130337929311287,0.0221023076365671,0.00291708995451447,0.45,0.45,0.45,0.119422596085694,0.0390373666690182,0.000200857412897068,299,299,299 -"955","OGC_AmsterdamUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0981124920664315,0.01363368266491,0.00296220821462304,0.45,0.45,0.45,0.0749749651464143,0.0203675508518603,0.000119612766836194,299,299,299 -"956","OGC_AmsterdamUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.45,0.45,0.45,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 -"957","OGC_AmsterdamUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.45,0.45,0.45,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 -"958","OGC_AmsterdamUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.45,0.45,0.45,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 -"959","OGC_AmsterdamUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.45,0.45,0.45,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 -"960","OGC_AmsterdamUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.45,0.45,0.45,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 -"961","OGC_AmsterdamUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.45,0.45,0.45,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 -"962","OGC_AmsterdamUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.45,0.45,0.45,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 -"963","OGC_AmsterdamUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.45,0.45,0.45,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 -"964","OGC_AmsterdamUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.45,0.45,0.45,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 -"965","OGC_AmsterdamUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.45,0.45,0.45,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 -"966","OGC_AmsterdamUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.694830687906111,0.0326249863850724,0.001146551391007,0.45,0.45,0.45,0.0978007791606039,0.0170421543207036,0.000744261895530268,299,299,299 -"967","OGC_AmsterdamUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.689570850315831,0.0293846834755066,0.00130099623277285,0.45,0.45,0.45,0.0358332141325587,0.00328309905455554,0.000279782025078523,299,299,299 -"968","OGC_AmsterdamUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.689825693573063,0.0291500977548317,0.0013043250896893,0.45,0.45,0.45,0.0213881941310553,0.00190248296633076,0.000166083414640446,299,299,299 -"969","OGC_AmsterdamUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.68994656517302,0.0290467790735891,0.00130699632918918,0.45,0.45,0.45,0.0106631625130881,0.000938640325588028,8.26562859975714e-05,299,299,299 -"970","OGC_AmsterdamUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.689981335140809,0.0290165319414175,0.00130845678076352,0.45,0.45,0.45,0.00532704601832268,0.000467721780395998,4.1283123962599e-05,299,299,299 -"971","OGC_AmsterdamUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.248565345872263,0.0568790590809539,0.00117109082310806,0.45,0.45,0.45,0.138108152592245,0.0614284067605453,0.000385048669212005,299,299,299 -"972","OGC_AmsterdamUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.204799212322826,0.0344032230756975,0.00128537474230259,0.45,0.45,0.45,0.0373889502807019,0.0196932990153424,0.000109827153921283,299,299,299 -"973","OGC_AmsterdamUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201678467795085,0.0312420978469793,0.00129383894795446,0.45,0.45,0.45,0.0214546726422535,0.0077523763498131,6.40824451508019e-05,299,299,299 -"974","OGC_AmsterdamUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.20040747359065,0.0303107930918353,0.00129785077922554,0.45,0.45,0.45,0.0104719587309842,0.00342852469585086,3.15725299307934e-05,299,299,299 -"975","OGC_AmsterdamUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.200098827653497,0.0300920084049103,0.00129915169076204,0.45,0.45,0.45,0.00519380978047521,0.00166907680512249,1.57069706717535e-05,299,299,299 -"976","OGC_AmsterdamUMC_biexp","st wall",10,0.3,0.012,0.0015,0.361593393686145,0.0323328748012714,0.00130132220666322,0.45,0.45,0.45,0.208350215148267,0.0514342217408351,0.000612311819072441,299,299,299 -"977","OGC_AmsterdamUMC_biexp","st wall",30,0.3,0.012,0.0015,0.316719659160763,0.0137022551884621,0.00145359061242711,0.45,0.45,0.45,0.0970529464093194,0.00856485498776069,0.000254686991328844,299,299,299 -"978","OGC_AmsterdamUMC_biexp","st wall",50,0.3,0.012,0.0015,0.305193533818909,0.0124323700210719,0.00148436640149277,0.45,0.45,0.45,0.053613759973711,0.00282298876439099,0.000140362193961726,299,299,299 -"979","OGC_AmsterdamUMC_biexp","st wall",100,0.3,0.012,0.0015,0.3011193322049,0.0121135942239775,0.00149571619204976,0.45,0.45,0.45,0.0261843319002159,0.00129074569132032,6.85575356626846e-05,299,299,299 -"980","OGC_AmsterdamUMC_biexp","st wall",200,0.3,0.012,0.0015,0.300225825318409,0.0120334534978712,0.00149864155647832,0.45,0.45,0.45,0.0130262845926758,0.000630340215988195,3.40956211098914e-05,299,299,299 -"981","OGC_AmsterdamUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694830688564467,0.032624986312475,0.00114655138620799,0.45,0.45,0.45,0.0978007790483066,0.017042154071943,0.000744261894497508,299,299,299 -"982","OGC_AmsterdamUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689570850550309,0.0293846834605323,0.00130099623067048,0.45,0.45,0.45,0.03583321437894,0.00328309906489773,0.000279782027780018,299,299,299 -"983","OGC_AmsterdamUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689825693412246,0.0291500977660697,0.00130432509126435,0.45,0.45,0.45,0.0213881942331915,0.00190248296909735,0.000166083415658577,299,299,299 -"984","OGC_AmsterdamUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689946565157839,0.0290467790741476,0.00130699632927992,0.45,0.45,0.45,0.0106631624923704,0.000938640325039952,8.2656285973903e-05,299,299,299 -"985","OGC_AmsterdamUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689981335112322,0.0290165319430504,0.00130845678104043,0.45,0.45,0.45,0.00532704598651555,0.000467721780481497,4.1283123603074e-05,299,299,299 -"986","OGC_AmsterdamUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.916551204244533,0.122369011974545,0.000273066816835779,0.45,0.45,0.45,0.022725191121915,0.0234330403198178,0.000525988259691735,299,299,299 -"987","OGC_AmsterdamUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.973161261240563,0.106546698361441,0.000228130761062279,0.45,0.45,0.45,0.00782859243617106,0.0064578289415521,0.000431214198209649,299,299,299 -"988","OGC_AmsterdamUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.984189738028885,0.103791606406811,0.000208198255818229,0.45,0.45,0.45,0.00468303362319796,0.00375278684718259,0.000406133264965843,299,299,299 -"989","OGC_AmsterdamUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.992359928276546,0.101811171283772,0.000175728187662851,0.45,0.45,0.45,0.00229602432637319,0.00183520806791812,0.000373115337318807,299,299,299 -"990","OGC_AmsterdamUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996323153986104,0.100873285167583,0.000149761440764175,0.45,0.45,0.45,0.00113622001644103,0.00090848307766313,0.000352385760028282,299,299,299 -"991","OGC_AmsterdamUMC_biexp_segmented","Artery",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 -"992","OGC_AmsterdamUMC_biexp_segmented","Artery",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 -"993","OGC_AmsterdamUMC_biexp_segmented","Artery",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 -"994","OGC_AmsterdamUMC_biexp_segmented","Artery",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 -"995","OGC_AmsterdamUMC_biexp_segmented","Artery",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 -"996","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390180236,0.00131067694624179,0.45,0.45,0.45,0.143273359410903,0.00746591757058437,0.000965452623261198,299,299,299 -"997","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091792,0.00136286457292459,0.45,0.45,0.45,0.0442643529688101,0.000185589786252479,0.000322790073010869,299,299,299 -"998","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.45,0.45,0.45,0.0260317923438205,1.40320085058926e-10,0.000190041408090366,299,299,299 -"999","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.45,0.45,0.45,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 -"1000","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.45,0.45,0.45,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 -"1001","OGC_AmsterdamUMC_biexp_segmented","Blood RA",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 -"1002","OGC_AmsterdamUMC_biexp_segmented","Blood RA",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 -"1003","OGC_AmsterdamUMC_biexp_segmented","Blood RA",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 -"1004","OGC_AmsterdamUMC_biexp_segmented","Blood RA",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 -"1005","OGC_AmsterdamUMC_biexp_segmented","Blood RA",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 -"1006","OGC_AmsterdamUMC_biexp_segmented","Blood RV",10,1,0.1,0.003,0.89187652895809,0.130371770521945,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595995146847,0.000876166916139467,299,299,299 -"1007","OGC_AmsterdamUMC_biexp_segmented","Blood RV",30,1,0.1,0.003,0.963958649017849,0.108709609162974,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200609997,0.000876181456030473,299,299,299 -"1008","OGC_AmsterdamUMC_biexp_segmented","Blood RV",50,1,0.1,0.003,0.97816921696173,0.105139058114271,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.0046898167166192,0.000912813853531625,299,299,299 -"1009","OGC_AmsterdamUMC_biexp_segmented","Blood RV",100,1,0.1,0.003,0.989084383490558,0.102522060782086,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175040105,0.000912855515978945,299,299,299 -"1010","OGC_AmsterdamUMC_biexp_segmented","Blood RV",200,1,0.1,0.003,0.994541921036986,0.10125504286489,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352008543,0.000913010145476883,299,299,299 -"1011","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",10,0.69,0.029,0.00131,0.661034109543676,0.0519537390427511,0.00131067694617946,0.45,0.45,0.45,0.143273359483562,0.00746591763226972,0.000965452623351917,299,299,299 -"1012","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",30,0.69,0.029,0.00131,0.677766188255513,0.0500107152093789,0.00136286457330544,0.45,0.45,0.45,0.0442643529054461,0.00018558978971045,0.000322790072591844,299,299,299 -"1013","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",50,0.69,0.029,0.00131,0.68022868657494,0.0500000000118474,0.00135564782184761,0.45,0.45,0.45,0.0260317923174537,1.4032007815239e-10,0.000190041407906453,299,299,299 -"1014","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",100,0.69,0.029,0.00131,0.6813744273752,0.0500000000003099,0.00135334951488224,0.45,0.45,0.45,0.0128991835089443,1.00907554152635e-12,9.41499540600846e-05,299,299,299 -"1015","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",200,0.69,0.029,0.00131,0.681731199292581,0.0500000000001251,0.0013531962138951,0.45,0.45,0.45,0.0064313384229787,1.04042230662964e-13,4.6928581419636e-05,299,299,299 -"1016","OGC_AmsterdamUMC_biexp_segmented","esophagus",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.45,0.45,0.45,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 -"1017","OGC_AmsterdamUMC_biexp_segmented","esophagus",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.45,0.45,0.45,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 -"1018","OGC_AmsterdamUMC_biexp_segmented","esophagus",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.45,0.45,0.45,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 -"1019","OGC_AmsterdamUMC_biexp_segmented","esophagus",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.45,0.45,0.45,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 -"1020","OGC_AmsterdamUMC_biexp_segmented","esophagus",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.45,0.45,0.45,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 -"1021","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.45,0.45,0.45,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 -"1022","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.45,0.45,0.45,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 -"1023","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.45,0.45,0.45,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 -"1024","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.45,0.45,0.45,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 -"1025","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.45,0.45,0.45,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 -"1026","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.45,0.45,0.45,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 -"1027","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.45,0.45,0.45,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 -"1028","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.45,0.45,0.45,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 -"1029","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.45,0.45,0.45,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 -"1030","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.45,0.45,0.45,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 -"1031","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.45,0.45,0.45,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 -"1032","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.45,0.45,0.45,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 -"1033","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.45,0.45,0.45,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 -"1034","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.45,0.45,0.45,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 -"1035","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.45,0.45,0.45,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 -"1036","OGC_AmsterdamUMC_biexp_segmented","Liver",10,0.11,0.1,0.0015,0.0972321801659825,0.35559843435101,0.00150859052204052,0.45,0.45,0.45,0.134839808929966,0.632502439816993,0.000367327987709817,299,299,299 -"1037","OGC_AmsterdamUMC_biexp_segmented","Liver",30,0.11,0.1,0.0015,0.107694887153018,0.226173724263367,0.00150016928920599,0.45,0.45,0.45,0.0451472711617818,0.380098790845709,0.000121950650671429,299,299,299 -"1038","OGC_AmsterdamUMC_biexp_segmented","Liver",50,0.11,0.1,0.0015,0.108918954664912,0.137632134381599,0.00149957574189822,0.45,0.45,0.45,0.0269925765528699,0.173220331526938,7.29050804512238e-05,299,299,299 -"1039","OGC_AmsterdamUMC_biexp_segmented","Liver",100,0.11,0.1,0.0015,0.109571576926182,0.10728000421186,0.00149959253645644,0.45,0.45,0.45,0.0134700792856065,0.0365535919006858,3.63764396721475e-05,299,299,299 -"1040","OGC_AmsterdamUMC_biexp_segmented","Liver",200,0.11,0.1,0.0015,0.109813662467211,0.102101719440497,0.00149974766327095,0.45,0.45,0.45,0.00672998368978822,0.0157372078248851,1.81728271900004e-05,299,299,299 -"1041","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.45,0.45,0.45,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 -"1042","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.45,0.45,0.45,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 -"1043","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.45,0.45,0.45,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 -"1044","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.45,0.45,0.45,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 -"1045","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.45,0.45,0.45,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 -"1046","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",10,0.07,0.07,0.0015,0.0578936886535005,0.331287936090609,0.00150745703740933,0.45,0.45,0.45,0.133663508201973,0.620007223240229,0.000349561522849492,299,299,299 -"1047","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",30,0.07,0.07,0.0015,0.0677475633979726,0.252860531918122,0.00150007469297444,0.45,0.45,0.45,0.0451277322847106,0.462488933259553,0.000116654443267633,299,299,299 -"1048","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",50,0.07,0.07,0.0015,0.068936524801532,0.153221079980056,0.00149956512826645,0.45,0.45,0.45,0.0269874814666128,0.288290130918818,6.97554513344443e-05,299,299,299 -"1049","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",100,0.07,0.07,0.0015,0.0695745982637905,0.0851832608134713,0.00149960544347793,0.45,0.45,0.45,0.0134691574388598,0.0574276101213015,3.48091848323947e-05,299,299,299 -"1050","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",200,0.07,0.07,0.0015,0.0698130767438865,0.0732437488492484,0.00149975991644965,0.45,0.45,0.45,0.00672980083126172,0.0176595729765593,1.73906364708644e-05,299,299,299 -"1051","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.45,0.45,0.45,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 -"1052","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.45,0.45,0.45,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 -"1053","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.45,0.45,0.45,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 -"1054","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.45,0.45,0.45,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 -"1055","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.45,0.45,0.45,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 -"1056","OGC_AmsterdamUMC_biexp_segmented","pancreas",10,0.15,0.01,0.00129999999999999,0.100244765420066,0.266741520832647,0.00137548084876521,0.45,0.45,0.45,0.129912389751765,0.562164105737666,0.000344116696880167,299,299,299 -"1057","OGC_AmsterdamUMC_biexp_segmented","pancreas",30,0.15,0.01,0.00129999999999999,0.110360760973366,0.0661716722087468,0.00136667398578444,0.45,0.45,0.45,0.0433110167586883,0.140789670312433,0.000113720557310474,299,299,299 -"1058","OGC_AmsterdamUMC_biexp_segmented","pancreas",50,0.15,0.01,0.00129999999999999,0.111480583752563,0.0539705038259079,0.00136624929746589,0.45,0.45,0.45,0.0259040670714904,0.0479429254670281,6.80011412344266e-05,299,299,299 -"1059","OGC_AmsterdamUMC_biexp_segmented","pancreas",100,0.15,0.01,0.00129999999999999,0.112080763535825,0.0500000065580185,0.00136632895052346,0.45,0.45,0.45,0.0129294848715759,1.69774639357237e-08,3.39338191967857e-05,299,299,299 -"1060","OGC_AmsterdamUMC_biexp_segmented","pancreas",200,0.15,0.01,0.00129999999999999,0.112304748300198,0.050000000728181,0.0013664952449501,0.45,0.45,0.45,0.00646040206372423,6.32502873391021e-09,1.69533243857183e-05,299,299,299 -"1061","OGC_AmsterdamUMC_biexp_segmented","pericardium",10,0.07,0.00999999999999999,0.003,0.0520383050852133,0.17871463052579,0.00290810073173622,0.45,0.45,0.45,0.209231800764477,0.422831401538199,0.000739849912636431,299,299,299 -"1062","OGC_AmsterdamUMC_biexp_segmented","pericardium",30,0.07,0.00999999999999999,0.003,0.0344582030632704,0.193439082301208,0.00306329837568757,0.45,0.45,0.45,0.0804795684271075,0.466549615994945,0.000279719698417709,299,299,299 -"1063","OGC_AmsterdamUMC_biexp_segmented","pericardium",50,0.07,0.00999999999999999,0.003,0.0370860589999383,0.183326258829341,0.00306223557955883,0.45,0.45,0.45,0.0479655490509802,0.442363330135666,0.000167660569102541,299,299,299 -"1064","OGC_AmsterdamUMC_biexp_segmented","pericardium",100,0.07,0.00999999999999999,0.003,0.0387485065804243,0.106024067573401,0.00306070920381438,0.45,0.45,0.45,0.023849433162107,0.267496955607805,8.35301202824561e-05,299,299,299 -"1065","OGC_AmsterdamUMC_biexp_segmented","pericardium",200,0.07,0.00999999999999999,0.003,0.0393008418149469,0.0500135454072159,0.00306053200851328,0.45,0.45,0.45,0.0118997768390481,0.000219338674816968,4.17111224394722e-05,299,299,299 -"1066","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.45,0.45,0.45,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 -"1067","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.45,0.45,0.45,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 -"1068","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.45,0.45,0.45,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 -"1069","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.45,0.45,0.45,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 -"1070","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.45,0.45,0.45,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 -"1071","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.45,0.45,0.45,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 -"1072","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.45,0.45,0.45,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 -"1073","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.45,0.45,0.45,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 -"1074","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.45,0.45,0.45,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 -"1075","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.45,0.45,0.45,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 -"1076","OGC_AmsterdamUMC_biexp_segmented","small intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390164872,0.00131067694624179,0.45,0.45,0.45,0.143273359410903,0.0074659175711477,0.000965452623261198,299,299,299 -"1077","OGC_AmsterdamUMC_biexp_segmented","small intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091894,0.00136286457292459,0.45,0.45,0.45,0.0442643529688101,0.000185589786428744,0.000322790073010869,299,299,299 -"1078","OGC_AmsterdamUMC_biexp_segmented","small intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.45,0.45,0.45,0.0260317923438205,1.40320084211226e-10,0.000190041408090366,299,299,299 -"1079","OGC_AmsterdamUMC_biexp_segmented","small intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.45,0.45,0.45,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 -"1080","OGC_AmsterdamUMC_biexp_segmented","small intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.45,0.45,0.45,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 -"1081","OGC_AmsterdamUMC_biexp_segmented","spleen",10,0.2,0.03,0.00129999999999999,0.18520392281551,0.209255851356637,0.00131436647515706,0.45,0.45,0.45,0.128284620714988,0.43795050055203,0.000366856183513939,299,299,299 -"1082","OGC_AmsterdamUMC_biexp_segmented","spleen",30,0.2,0.03,0.00129999999999999,0.195921638044614,0.0570791154895169,0.00130408703951844,0.45,0.45,0.45,0.0419884764569373,0.0531685484918258,0.000119667429133032,299,299,299 -"1083","OGC_AmsterdamUMC_biexp_segmented","spleen",50,0.2,0.03,0.00129999999999999,0.197041413325606,0.0504893716375674,0.00130363013865361,0.45,0.45,0.45,0.0251082366944411,0.00383960153192709,7.15383551583112e-05,299,299,299 -"1084","OGC_AmsterdamUMC_biexp_segmented","spleen",100,0.2,0.03,0.00129999999999999,0.197638649057216,0.0500000097397441,0.0013037149142624,0.45,0.45,0.45,0.0125312243299692,1.90669760189101e-08,3.5694004704467e-05,299,299,299 -"1085","OGC_AmsterdamUMC_biexp_segmented","spleen",200,0.2,0.03,0.00129999999999999,0.197860311649606,0.050000009538866,0.00130389290756918,0.45,0.45,0.45,0.00626126043010556,1.66111763089958e-08,1.78317987728703e-05,299,299,299 -"1086","OGC_AmsterdamUMC_biexp_segmented","st wall",10,0.3,0.012,0.0015,0.224968563584563,0.152728411143095,0.00164792160735107,0.45,0.45,0.45,0.147842246989045,0.375057604026138,0.000489535231234454,299,299,299 -"1087","OGC_AmsterdamUMC_biexp_segmented","st wall",30,0.3,0.012,0.0015,0.238787520936113,0.0523502353354238,0.00163390334662365,0.45,0.45,0.45,0.048525316538426,0.0309648568654976,0.000160157639209458,299,299,299 -"1088","OGC_AmsterdamUMC_biexp_segmented","st wall",50,0.3,0.012,0.0015,0.240378264028766,0.0500000002507408,0.00163237397051999,0.45,0.45,0.45,0.0289474376095694,2.28400922500028e-09,9.5559900702868e-05,299,299,299 -"1089","OGC_AmsterdamUMC_biexp_segmented","st wall",100,0.3,0.012,0.0015,0.241188415913859,0.0500000000085327,0.00163207076247144,0.45,0.45,0.45,0.0144296581809571,2.55196631854657e-11,4.76338814555705e-05,299,299,299 -"1090","OGC_AmsterdamUMC_biexp_segmented","st wall",200,0.3,0.012,0.0015,0.241472821664073,0.050000000003392,0.00163218547366257,0.45,0.45,0.45,0.00720667286447567,2.68542354759096e-12,2.37887610442069e-05,299,299,299 -"1091","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.661034109428733,0.051953739032677,0.00131067694715308,0.45,0.45,0.45,0.143273359446166,0.00746591768148673,0.000965452622732951,299,299,299 -"1092","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.677766188297563,0.0500107152094703,0.00136286457295964,0.45,0.45,0.45,0.0442643528902771,0.000185589791293374,0.000322790072283088,299,299,299 -"1093","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.680228686551908,0.0500000000118474,0.00135564782204329,0.45,0.45,0.45,0.0260317923637547,1.40320090168179e-10,0.000190041408458065,299,299,299 -"1094","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.681374427368473,0.0500000000003099,0.00135334951494511,0.45,0.45,0.45,0.0128991835128633,1.00907554152635e-12,9.41499541220862e-05,299,299,299 -"1095","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.681731199274704,0.0500000000001251,0.00135319621405087,0.45,0.45,0.45,0.00643133843132689,1.04042199865913e-13,4.69285814418112e-05,299,299,299 -"1096","OGC_AmsterdamUMC_biexp_segmented","Vein",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770524695,0.000532739646128184,0.45,0.45,0.45,0.0603329212170224,0.0338595995383155,0.000876166916139467,299,299,299 -"1097","OGC_AmsterdamUMC_biexp_segmented","Vein",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163886,0.000532747467797313,0.45,0.45,0.45,0.0201116860529649,0.00814087200746512,0.000876181456030473,299,299,299 -"1098","OGC_AmsterdamUMC_biexp_segmented","Vein",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114482,0.000549427490684811,0.45,0.45,0.45,0.0125526161570658,0.00468981671679721,0.000912813853531625,299,299,299 -"1099","OGC_AmsterdamUMC_biexp_segmented","Vein",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060782067,0.000549477159445701,0.45,0.45,0.45,0.00627640558821837,0.00226259175037519,0.000912855515978945,299,299,299 -"1100","OGC_AmsterdamUMC_biexp_segmented","Vein",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864984,0.000549569685652002,0.45,0.45,0.45,0.00313858362490246,0.00111235352002846,0.000913010145476883,299,299,299 -"1101","PV_MUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.45,0.45,0.45,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 -"1102","PV_MUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.45,0.45,0.45,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 -"1103","PV_MUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.45,0.45,0.45,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 -"1104","PV_MUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.45,0.45,0.45,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 -"1105","PV_MUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.45,0.45,0.45,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 -"1106","PV_MUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.691470348442192,0.0320827827770493,0.00124871997099421,0.45,0.45,0.45,0.105711327862916,0.0160018733645475,0.000901831520780432,299,299,299 -"1107","PV_MUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.688093183614171,0.0294562213763849,0.00132700814797154,0.45,0.45,0.45,0.0452600702218041,0.00371662172542782,0.00039381399431472,299,299,299 -"1108","PV_MUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.688966038440429,0.029199601596073,0.00131674145667986,0.45,0.45,0.45,0.0271841976242685,0.0021834868114162,0.000231514013534254,299,299,299 -"1109","PV_MUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689413085208427,0.0290804523150075,0.00131311782214893,0.45,0.45,0.45,0.0135989073526535,0.00108324352490203,0.000114727925771987,299,299,299 -"1110","PV_MUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689573180926678,0.0290430944880149,0.00131259557708985,0.45,0.45,0.45,0.00680047675905179,0.000540559071221946,5.72226175968247e-05,299,299,299 -"1111","PV_MUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.45,0.45,0.45,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 -"1112","PV_MUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.45,0.45,0.45,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 -"1113","PV_MUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.45,0.45,0.45,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 -"1114","PV_MUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.45,0.45,0.45,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 -"1115","PV_MUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.45,0.45,0.45,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 -"1116","PV_MUMC_biexp","Blood RV",10,1,0.1,0.003,0.911157661205427,0.123643660013595,0.000607355415641274,0.45,0.45,0.45,0.0263704296062989,0.0234808191539726,0.000781512767273926,299,299,299 -"1117","PV_MUMC_biexp","Blood RV",30,1,0.1,0.003,0.971237368284705,0.106940870680865,0.000607372598717673,0.45,0.45,0.45,0.00908754537244282,0.00648210009371694,0.000781528535341981,299,299,299 -"1118","PV_MUMC_biexp","Blood RV",50,1,0.1,0.003,0.982984250166763,0.104032609128906,0.000607380534286713,0.45,0.45,0.45,0.00546001928424493,0.00376732124561751,0.000781521963607196,299,299,299 -"1119","PV_MUMC_biexp","Blood RV",100,1,0.1,0.003,0.991733932625732,0.101934073427047,0.000607404386458529,0.45,0.45,0.45,0.00268925596027005,0.00184607816688224,0.000781542209010902,299,299,299 -"1120","PV_MUMC_biexp","Blood RV",200,1,0.1,0.003,0.996022656879395,0.100931454917885,0.000607227933379224,0.45,0.45,0.45,0.00133610299058227,0.00091514738792123,0.000780813589540255,299,299,299 -"1121","PV_MUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.691470348438474,0.0320827827803892,0.00124871997066846,0.45,0.45,0.45,0.105711327913523,0.0160018733571079,0.000901831520760143,299,299,299 -"1122","PV_MUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.688093183608034,0.029456221376894,0.0013270081480873,0.45,0.45,0.45,0.0452600702369857,0.00371662172759421,0.000393813994419125,299,299,299 -"1123","PV_MUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.688966038440901,0.0291996015957491,0.00131674145666527,0.45,0.45,0.45,0.0271841976084912,0.00218348680950215,0.000231514013492556,299,299,299 -"1124","PV_MUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689413085205758,0.0290804523152126,0.00131311782216352,0.45,0.45,0.45,0.0135989073563255,0.00108324352514479,0.00011472792578306,299,299,299 -"1125","PV_MUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689573180931052,0.0290430944877037,0.00131259557707978,0.45,0.45,0.45,0.00680047675835751,0.000540559071153575,5.72226175969141e-05,299,299,299 -"1126","PV_MUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.45,0.45,0.45,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 -"1127","PV_MUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.45,0.45,0.45,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 -"1128","PV_MUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.45,0.45,0.45,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 -"1129","PV_MUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.45,0.45,0.45,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 -"1130","PV_MUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.45,0.45,0.45,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 -"1131","PV_MUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.45,0.45,0.45,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 -"1132","PV_MUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.45,0.45,0.45,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 -"1133","PV_MUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.45,0.45,0.45,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 -"1134","PV_MUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.45,0.45,0.45,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 -"1135","PV_MUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.45,0.45,0.45,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 -"1136","PV_MUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.45,0.45,0.45,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 -"1137","PV_MUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.45,0.45,0.45,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 -"1138","PV_MUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.45,0.45,0.45,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 -"1139","PV_MUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.45,0.45,0.45,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 -"1140","PV_MUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.45,0.45,0.45,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 -"1141","PV_MUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.45,0.45,0.45,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 -"1142","PV_MUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.45,0.45,0.45,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 -"1143","PV_MUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.45,0.45,0.45,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 -"1144","PV_MUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.45,0.45,0.45,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 -"1145","PV_MUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.45,0.45,0.45,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 -"1146","PV_MUMC_biexp","Liver",10,0.11,0.1,0.0015,0.156096041950495,0.103004334953046,0.00143196282270513,0.45,0.45,0.45,0.110349251520112,0.0779961628143732,0.000358196217736956,299,299,299 -"1147","PV_MUMC_biexp","Liver",30,0.11,0.1,0.0015,0.116101779636099,0.1138229593791,0.00149777113036028,0.45,0.45,0.45,0.034776317507387,0.0600988513603365,0.000144925790948956,299,299,299 -"1148","PV_MUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111612534570894,0.109841008435211,0.00150002526959645,0.45,0.45,0.45,0.0190068115405264,0.0441056576363389,9.05346431726557e-05,299,299,299 -"1149","PV_MUMC_biexp","Liver",100,0.11,0.1,0.0015,0.11025104441505,0.103810736875319,0.00149980894457395,0.45,0.45,0.45,0.00905977798222036,0.0236768256802226,4.54189359484425e-05,299,299,299 -"1150","PV_MUMC_biexp","Liver",200,0.11,0.1,0.0015,0.110022352713976,0.101269696328069,0.0014998347111719,0.45,0.45,0.45,0.0044943742719744,0.0114224658712206,2.26988794968306e-05,299,299,299 -"1151","PV_MUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.45,0.45,0.45,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 -"1152","PV_MUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.45,0.45,0.45,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 -"1153","PV_MUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.45,0.45,0.45,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 -"1154","PV_MUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.45,0.45,0.45,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 -"1155","PV_MUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.45,0.45,0.45,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 -"1156","PV_MUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.128345687194747,0.0825316505228132,0.00140833862248053,0.45,0.45,0.45,0.114737913407162,0.0798040133006487,0.000322847727404802,299,299,299 -"1157","PV_MUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0808769411594791,0.093179188822108,0.00149089305452715,0.45,0.45,0.45,0.0404412487711946,0.0680662255269266,0.000129511673752725,299,299,299 -"1158","PV_MUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0738186548068268,0.0870087926746789,0.00149857823558983,0.45,0.45,0.45,0.023244544317497,0.0544978802925074,8.40169485215999e-05,299,299,299 -"1159","PV_MUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0707073237714697,0.0759757339514294,0.0014998056841726,0.45,0.45,0.45,0.0105581939281603,0.0292975136083979,4.34633510601474e-05,299,299,299 -"1160","PV_MUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070115739623736,0.0717332279515257,0.00149983895466135,0.45,0.45,0.45,0.00507917209030401,0.0131396922117831,2.17222451683666e-05,299,299,299 -"1161","PV_MUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.45,0.45,0.45,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 -"1162","PV_MUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.45,0.45,0.45,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 -"1163","PV_MUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.45,0.45,0.45,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 -"1164","PV_MUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.45,0.45,0.45,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 -"1165","PV_MUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.45,0.45,0.45,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 -"1166","PV_MUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.170823203204389,0.0484396671293969,0.00128341130108195,0.45,0.45,0.45,0.135276785103213,0.0693648067906324,0.000342833111852961,299,299,299 -"1167","PV_MUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.139357428753803,0.0211791605193582,0.00132956207649237,0.45,0.45,0.45,0.0600015004474031,0.0343714821910045,0.000136158605057219,299,299,299 -"1168","PV_MUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.136832912331991,0.0133451533082555,0.00132993178960967,0.45,0.45,0.45,0.0378707541645237,0.0118353435907057,8.31807200994293e-05,299,299,299 -"1169","PV_MUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.13591079011917,0.011464130733693,0.00132978574256788,0.45,0.45,0.45,0.019496680742444,0.00219037196718289,4.15321836208148e-05,299,299,299 -"1170","PV_MUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.135796421465576,0.0111580957885994,0.00132987960122183,0.45,0.45,0.45,0.00982799371378257,0.000979299181915567,2.07569431281731e-05,299,299,299 -"1171","PV_MUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.391019540038776,0.044643914104375,0.00245103379176744,0.45,0.45,0.45,0.345288990615877,0.0685553221727792,0.000589805944574225,299,299,299 -"1172","PV_MUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.279254963167638,0.0272516182326572,0.00286523068505902,0.45,0.45,0.45,0.326984869731808,0.0497742750374417,0.000202391605500055,299,299,299 -"1173","PV_MUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.197907121793284,0.0171779174735046,0.00292567942662698,0.45,0.45,0.45,0.257892241602723,0.0314712950254075,0.000122141208493828,299,299,299 -"1174","PV_MUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.101454392147406,0.0102999034458522,0.0029683983156719,0.45,0.45,0.45,0.0986460636016255,0.00484404848123746,5.80586216740766e-05,299,299,299 -"1175","PV_MUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0764077555060485,0.0099589090676984,0.00298894164686365,0.45,0.45,0.45,0.016170934406564,0.00205930827894513,2.4606310997004e-05,299,299,299 -"1176","PV_MUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.45,0.45,0.45,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 -"1177","PV_MUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.45,0.45,0.45,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 -"1178","PV_MUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.45,0.45,0.45,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 -"1179","PV_MUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.45,0.45,0.45,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 -"1180","PV_MUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.45,0.45,0.45,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 -"1181","PV_MUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.45,0.45,0.45,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 -"1182","PV_MUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.45,0.45,0.45,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 -"1183","PV_MUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.45,0.45,0.45,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 -"1184","PV_MUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.45,0.45,0.45,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 -"1185","PV_MUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.45,0.45,0.45,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 -"1186","PV_MUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.691470348425927,0.0320827827806415,0.00124871997099421,0.45,0.45,0.45,0.105711327887533,0.016001873378134,0.000901831520780432,299,299,299 -"1187","PV_MUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.688093183610048,0.0294562213769231,0.00132700814797154,0.45,0.45,0.45,0.0452600702287884,0.0037166217265589,0.00039381399431472,299,299,299 -"1188","PV_MUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.688966038442785,0.0291996015955794,0.00131674145667986,0.45,0.45,0.45,0.027184197603594,0.00218348680956759,0.000231514013534254,299,299,299 -"1189","PV_MUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.689413085207519,0.0290804523150365,0.00131311782214893,0.45,0.45,0.45,0.0135989073510044,0.00108324352463396,0.000114727925771987,299,299,299 -"1190","PV_MUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.68957318092911,0.0290430944878304,0.00131259557708985,0.45,0.45,0.45,0.0068004767604521,0.000540559071379342,5.72226175968247e-05,299,299,299 -"1191","PV_MUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.225876447681667,0.0575696359776324,0.00127966060384555,0.45,0.45,0.45,0.118602073944037,0.062520158480083,0.000393628482668222,299,299,299 -"1192","PV_MUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.203121072306131,0.0348456914497528,0.00130102510958467,0.45,0.45,0.45,0.0446268922956713,0.0210587094438441,0.000147164603791659,299,299,299 -"1193","PV_MUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201082893667275,0.0314005146720823,0.00130009513988208,0.45,0.45,0.45,0.0267655318154766,0.0084356309709076,8.81308491758965e-05,299,299,299 -"1194","PV_MUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200152032734671,0.0303879420503012,0.00129992844970833,0.45,0.45,0.45,0.0133442316652335,0.00389581230793204,4.39969606570532e-05,299,299,299 -"1195","PV_MUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.199941650919663,0.0301350345500522,0.00130002908549186,0.45,0.45,0.45,0.00666620755141141,0.00192377586272549,2.19877190353903e-05,299,299,299 -"1196","PV_MUMC_biexp","st wall",10,0.3,0.012,0.0015,0.298023904016928,0.0321774338838152,0.00153452580530155,0.45,0.45,0.45,0.161634014328888,0.0492747590086314,0.000533257004546953,299,299,299 -"1197","PV_MUMC_biexp","st wall",30,0.3,0.012,0.0015,0.282564165732307,0.0143589906421383,0.0015521476980438,0.45,0.45,0.45,0.0672954043174911,0.00604975921241117,0.000195511671547606,299,299,299 -"1198","PV_MUMC_biexp","st wall",50,0.3,0.012,0.0015,0.282485950207945,0.0132910251735412,0.00154952110824206,0.45,0.45,0.45,0.0414670585791545,0.00269394728308602,0.000116680545563146,299,299,299 -"1199","PV_MUMC_biexp","st wall",100,0.3,0.012,0.0015,0.282721607034729,0.0128953989042575,0.00154867348929894,0.45,0.45,0.45,0.0210071304061686,0.00120056802082814,5.81997124889235e-05,299,299,299 -"1200","PV_MUMC_biexp","st wall",200,0.3,0.012,0.0015,0.282901507396517,0.0127926313384841,0.00154860370649833,0.45,0.45,0.45,0.0105397038722219,0.000580337571786342,2.9079611017769e-05,299,299,299 -"1201","PV_MUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69147034850835,0.0320827827705391,0.00124871997062398,0.45,0.45,0.45,0.105711327778677,0.0160018733594873,0.000901831520052427,299,299,299 -"1202","PV_MUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688093183592201,0.0294562213780215,0.0013270081480987,0.45,0.45,0.45,0.0452600702314974,0.0037166217263804,0.00039381399452838,299,299,299 -"1203","PV_MUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688966038447113,0.0291996015955392,0.00131674145662316,0.45,0.45,0.45,0.0271841976254947,0.00218348681124656,0.000231514013569066,299,299,299 -"1204","PV_MUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689413085205192,0.0290804523152176,0.00131311782217142,0.45,0.45,0.45,0.0135989073535134,0.00108324352525754,0.000114727925798872,299,299,299 -"1205","PV_MUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689573180928788,0.0290430944879027,0.00131259557706545,0.45,0.45,0.45,0.00680047676072954,0.000540559071296888,5.72226175924109e-05,299,299,299 -"1206","PV_MUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.911157661201933,0.123643660019881,0.000607355415641274,0.45,0.45,0.45,0.0263704296071724,0.0234808191547324,0.000781512767273926,299,299,299 -"1207","PV_MUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.971237368284223,0.106940870680377,0.000607372598717673,0.45,0.45,0.45,0.00908754536827744,0.00648210009257791,0.000781528535341981,299,299,299 -"1208","PV_MUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.982984250165467,0.104032609129434,0.000607380534286713,0.45,0.45,0.45,0.00546001928016874,0.00376732124549515,0.000781521963607196,299,299,299 -"1209","PV_MUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.991733932627642,0.101934073426748,0.000607404386458529,0.45,0.45,0.45,0.00268925596046031,0.00184607816687764,0.000781542209010902,299,299,299 -"1210","PV_MUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996022656879185,0.100931454917881,0.000607227933379224,0.45,0.45,0.45,0.00133610299004237,0.00091514738790242,0.000780813589540255,299,299,299 -"1211","PvH_KB_NKI_IVIMfit","Artery",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1212","PvH_KB_NKI_IVIMfit","Artery",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1213","PvH_KB_NKI_IVIMfit","Artery",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1214","PvH_KB_NKI_IVIMfit","Artery",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1215","PvH_KB_NKI_IVIMfit","Artery",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 -"1216","PvH_KB_NKI_IVIMfit","asc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.45,0.45,0.45,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 -"1217","PvH_KB_NKI_IVIMfit","asc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 -"1218","PvH_KB_NKI_IVIMfit","asc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 -"1219","PvH_KB_NKI_IVIMfit","asc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1220","PvH_KB_NKI_IVIMfit","asc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 -"1221","PvH_KB_NKI_IVIMfit","Blood RA",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1222","PvH_KB_NKI_IVIMfit","Blood RA",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1223","PvH_KB_NKI_IVIMfit","Blood RA",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1224","PvH_KB_NKI_IVIMfit","Blood RA",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1225","PvH_KB_NKI_IVIMfit","Blood RA",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 -"1226","PvH_KB_NKI_IVIMfit","Blood RV",10,1,0.1,0.003,0.925854765740672,0.122594446175349,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1227","PvH_KB_NKI_IVIMfit","Blood RV",30,1,0.1,0.003,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1228","PvH_KB_NKI_IVIMfit","Blood RV",50,1,0.1,0.003,0.985264177302766,0.103511662747401,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1229","PvH_KB_NKI_IVIMfit","Blood RV",100,1,0.1,0.003,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1230","PvH_KB_NKI_IVIMfit","Blood RV",200,1,0.1,0.003,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 -"1231","PvH_KB_NKI_IVIMfit","desc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494931,0.00145020569396961,0.45,0.45,0.45,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 -"1232","PvH_KB_NKI_IVIMfit","desc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.0659651209936009,0.0695342477735909,0.000430833853766582,299,299,299 -"1233","PvH_KB_NKI_IVIMfit","desc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 -"1234","PvH_KB_NKI_IVIMfit","desc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.030464931163596,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1235","PvH_KB_NKI_IVIMfit","desc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.2174106371215e-05,299,299,299 -"1236","PvH_KB_NKI_IVIMfit","esophagus",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.45,0.45,0.45,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 -"1237","PvH_KB_NKI_IVIMfit","esophagus",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.45,0.45,0.45,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 -"1238","PvH_KB_NKI_IVIMfit","esophagus",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.45,0.45,0.45,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 -"1239","PvH_KB_NKI_IVIMfit","esophagus",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.45,0.45,0.45,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 -"1240","PvH_KB_NKI_IVIMfit","esophagus",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.45,0.45,0.45,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 -"1241","PvH_KB_NKI_IVIMfit","esophagus cont",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.45,0.45,0.45,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 -"1242","PvH_KB_NKI_IVIMfit","esophagus cont",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.45,0.45,0.45,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 -"1243","PvH_KB_NKI_IVIMfit","esophagus cont",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.45,0.45,0.45,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 -"1244","PvH_KB_NKI_IVIMfit","esophagus cont",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.45,0.45,0.45,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 -"1245","PvH_KB_NKI_IVIMfit","esophagus cont",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.45,0.45,0.45,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 -"1246","PvH_KB_NKI_IVIMfit","Left kidney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.45,0.45,0.45,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 -"1247","PvH_KB_NKI_IVIMfit","Left kidney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.45,0.45,0.45,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 -"1248","PvH_KB_NKI_IVIMfit","Left kidney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.45,0.45,0.45,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 -"1249","PvH_KB_NKI_IVIMfit","Left kidney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.45,0.45,0.45,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 -"1250","PvH_KB_NKI_IVIMfit","Left kidney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.45,0.45,0.45,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 -"1251","PvH_KB_NKI_IVIMfit","left kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.45,0.45,0.45,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 -"1252","PvH_KB_NKI_IVIMfit","left kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.45,0.45,0.45,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 -"1253","PvH_KB_NKI_IVIMfit","left kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.45,0.45,0.45,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 -"1254","PvH_KB_NKI_IVIMfit","left kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.45,0.45,0.45,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 -"1255","PvH_KB_NKI_IVIMfit","left kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.45,0.45,0.45,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 -"1256","PvH_KB_NKI_IVIMfit","Liver",10,0.11,0.1,0.0015,0.130553125135909,0.0509693625828437,0.0016065178196472,0.45,0.45,0.45,0.129706715815292,0.792719308738518,0.000572920768415419,299,299,299 -"1257","PvH_KB_NKI_IVIMfit","Liver",30,0.11,0.1,0.0015,0.110278145674883,0.149442129088004,0.00150011017405457,0.45,0.45,0.45,0.0601392900256081,0.625749782983355,0.000145272381840614,299,299,299 -"1258","PvH_KB_NKI_IVIMfit","Liver",50,0.11,0.1,0.0015,0.110399658585875,0.156527047310139,0.00149684450774862,0.45,0.45,0.45,0.0376036872310902,0.425066413433666,8.60313303494503e-05,299,299,299 -"1259","PvH_KB_NKI_IVIMfit","Liver",100,0.11,0.1,0.0015,0.110613242728435,0.113081530764667,0.00149725968516574,0.45,0.45,0.45,0.0187819737007067,0.139029982910973,4.28771429001848e-05,299,299,299 -"1260","PvH_KB_NKI_IVIMfit","Liver",200,0.11,0.1,0.0015,0.110409079705549,0.104936964791345,0.00149834160010346,0.45,0.45,0.45,0.00940444951440735,0.0672001936578303,2.14439959817085e-05,299,299,299 -"1261","PvH_KB_NKI_IVIMfit","Myocardium LV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.45,0.45,0.45,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 -"1262","PvH_KB_NKI_IVIMfit","Myocardium LV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.45,0.45,0.45,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 -"1263","PvH_KB_NKI_IVIMfit","Myocardium LV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.45,0.45,0.45,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 -"1264","PvH_KB_NKI_IVIMfit","Myocardium LV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.45,0.45,0.45,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 -"1265","PvH_KB_NKI_IVIMfit","Myocardium LV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.45,0.45,0.45,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 -"1266","PvH_KB_NKI_IVIMfit","myocardium ra",10,0.07,0.07,0.0015,0.104891587924175,0.00607975763165955,0.0016006526233169,0.45,0.45,0.45,0.118242882720712,0.784263691811179,0.000552215395037113,299,299,299 -"1267","PvH_KB_NKI_IVIMfit","myocardium ra",30,0.07,0.07,0.0015,0.0739083859817402,0.0645768275334392,0.0014995372849829,0.45,0.45,0.45,0.0552732082517841,0.772165078977779,0.000138751825608962,299,299,299 -"1268","PvH_KB_NKI_IVIMfit","myocardium ra",50,0.07,0.07,0.0015,0.0708663136362167,0.123754667071953,0.00149678850563412,0.45,0.45,0.45,0.0370810778303522,0.731555137917985,8.22913661782403e-05,299,299,299 -"1269","PvH_KB_NKI_IVIMfit","myocardium ra",100,0.07,0.07,0.0015,0.0706249468151481,0.0952858250331106,0.00149733160718627,0.45,0.45,0.45,0.0189664010793653,0.232113078306709,4.10318998599181e-05,299,299,299 -"1270","PvH_KB_NKI_IVIMfit","myocardium ra",200,0.07,0.07,0.0015,0.0704117897329917,0.0782860101683691,0.00149840262255921,0.45,0.45,0.45,0.00949705354554412,0.104550226230099,2.052244821904e-05,299,299,299 -"1271","PvH_KB_NKI_IVIMfit","myocardium RV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.45,0.45,0.45,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 -"1272","PvH_KB_NKI_IVIMfit","myocardium RV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.45,0.45,0.45,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 -"1273","PvH_KB_NKI_IVIMfit","myocardium RV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.45,0.45,0.45,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 -"1274","PvH_KB_NKI_IVIMfit","myocardium RV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.45,0.45,0.45,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 -"1275","PvH_KB_NKI_IVIMfit","myocardium RV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.45,0.45,0.45,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 -"1276","PvH_KB_NKI_IVIMfit","pancreas",10,0.15,0.01,0.00129999999999999,0.136937978548182,0.00740651793198569,0.0014215214212872,0.45,0.45,0.45,0.127266105496299,0.732213635772408,0.000486503747187268,299,299,299 -"1277","PvH_KB_NKI_IVIMfit","pancreas",30,0.15,0.01,0.00129999999999999,0.121887930651615,0.0763137640180288,0.00133959929142515,0.45,0.45,0.45,0.0568364469705239,0.636807478517948,0.000126780491704173,299,299,299 -"1278","PvH_KB_NKI_IVIMfit","pancreas",50,0.15,0.01,0.00129999999999999,0.122753935187266,0.0341776204631551,0.00133777754178323,0.45,0.45,0.45,0.0342667143936854,0.25609885196659,7.54325143220183e-05,299,299,299 -"1279","PvH_KB_NKI_IVIMfit","pancreas",100,0.15,0.01,0.00129999999999999,0.122866903165779,0.0198817713875208,0.00133844951393785,0.45,0.45,0.45,0.0171420721199015,0.115209943762463,3.76500896537364e-05,299,299,299 -"1280","PvH_KB_NKI_IVIMfit","pancreas",200,0.15,0.01,0.00129999999999999,0.122698908969178,0.0153586053551514,0.00133941675752602,0.45,0.45,0.45,0.00858477069866618,0.0566470440677396,1.8833704996794e-05,299,299,299 -"1281","PvH_KB_NKI_IVIMfit","pericardium",10,0.07,0.00999999999999999,0.003,0.200345432832572,0.0186626001573525,0.00287291963623568,0.45,0.45,0.45,0.191226965934387,0.511499382712566,0.000944685697624608,299,299,299 -"1282","PvH_KB_NKI_IVIMfit","pericardium",30,0.07,0.00999999999999999,0.003,0.0875410442211974,0.0439264206482478,0.00319637616853394,0.45,0.45,0.45,0.0985206186954527,0.520788624543118,0.000739212332980352,299,299,299 -"1283","PvH_KB_NKI_IVIMfit","pericardium",50,0.07,0.00999999999999999,0.003,0.0713588507505067,0.0343763501514692,0.0030838364312501,0.45,0.45,0.45,0.0723755425130893,0.468187571504604,0.000430508407815945,299,299,299 -"1284","PvH_KB_NKI_IVIMfit","pericardium",100,0.07,0.00999999999999999,0.003,0.0593432428582622,0.0319897344925359,0.00302450453014257,0.45,0.45,0.45,0.0457502568825803,0.346527742871074,0.000170492747418252,299,299,299 -"1285","PvH_KB_NKI_IVIMfit","pericardium",200,0.07,0.00999999999999999,0.003,0.0541407860947715,0.0270422083825517,0.00301893623987703,0.45,0.45,0.45,0.0277552901447244,0.292432776404661,8.24583932743335e-05,299,299,299 -"1286","PvH_KB_NKI_IVIMfit","right kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.45,0.45,0.45,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 -"1287","PvH_KB_NKI_IVIMfit","right kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.45,0.45,0.45,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 -"1288","PvH_KB_NKI_IVIMfit","right kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.45,0.45,0.45,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 -"1289","PvH_KB_NKI_IVIMfit","right kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.45,0.45,0.45,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 -"1290","PvH_KB_NKI_IVIMfit","right kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.45,0.45,0.45,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 -"1291","PvH_KB_NKI_IVIMfit","Right kydney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.45,0.45,0.45,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 -"1292","PvH_KB_NKI_IVIMfit","Right kydney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.45,0.45,0.45,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 -"1293","PvH_KB_NKI_IVIMfit","Right kydney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.45,0.45,0.45,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 -"1294","PvH_KB_NKI_IVIMfit","Right kydney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.45,0.45,0.45,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 -"1295","PvH_KB_NKI_IVIMfit","Right kydney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.45,0.45,0.45,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 -"1296","PvH_KB_NKI_IVIMfit","small intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.45,0.45,0.45,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 -"1297","PvH_KB_NKI_IVIMfit","small intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 -"1298","PvH_KB_NKI_IVIMfit","small intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 -"1299","PvH_KB_NKI_IVIMfit","small intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1300","PvH_KB_NKI_IVIMfit","small intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 -"1301","PvH_KB_NKI_IVIMfit","spleen",10,0.2,0.03,0.00129999999999999,0.19599662156176,0.0613021299109845,0.00140454927731428,0.45,0.45,0.45,0.142733288723022,0.865447287904048,0.000582749143091828,299,299,299 -"1302","PvH_KB_NKI_IVIMfit","spleen",30,0.2,0.03,0.00129999999999999,0.197871845000451,0.0577937712781124,0.00130150037459746,0.45,0.45,0.45,0.055408133031037,0.277217446552304,0.00013547179107877,299,299,299 -"1303","PvH_KB_NKI_IVIMfit","spleen",50,0.2,0.03,0.00129999999999999,0.199033284978018,0.0416870355859719,0.00129916879604953,0.45,0.45,0.45,0.0330237742731732,0.145965289641754,8.0485438606961e-05,299,299,299 -"1304","PvH_KB_NKI_IVIMfit","spleen",100,0.2,0.03,0.00129999999999999,0.19917657455647,0.0350155098095822,0.00129971733953303,0.45,0.45,0.45,0.0165151433454204,0.0707993903611688,4.01541066264376e-05,299,299,299 -"1305","PvH_KB_NKI_IVIMfit","spleen",200,0.2,0.03,0.00129999999999999,0.199026311814169,0.0324096874623236,0.00130069837749038,0.45,0.45,0.45,0.00827092761229601,0.0352168114201335,2.00852625417637e-05,299,299,299 -"1306","PvH_KB_NKI_IVIMfit","st wall",10,0.3,0.012,0.0015,0.248638297229233,0.036411695424523,0.00172921114226417,0.45,0.45,0.45,0.166347389770017,0.707332243192263,0.000685672723936133,299,299,299 -"1307","PvH_KB_NKI_IVIMfit","st wall",30,0.3,0.012,0.0015,0.258772026363496,0.0293822581865603,0.00157517600100472,0.45,0.45,0.45,0.0644388435309329,0.202407559113073,0.000186844089466446,299,299,299 -"1308","PvH_KB_NKI_IVIMfit","st wall",50,0.3,0.012,0.0015,0.261282486348394,0.0209857397911496,0.00156758941794651,0.45,0.45,0.45,0.0377177202881088,0.108793385587951,0.000109279996332855,299,299,299 -"1309","PvH_KB_NKI_IVIMfit","st wall",100,0.3,0.012,0.0015,0.261756786309685,0.0167953481082953,0.00156685824436581,0.45,0.45,0.45,0.0187674242305055,0.0531745626261237,5.42621275679737e-05,299,299,299 -"1310","PvH_KB_NKI_IVIMfit","st wall",200,0.3,0.012,0.0015,0.261595673443184,0.0150031541093374,0.00156794185426091,0.45,0.45,0.45,0.00939312930329243,0.0264999219499804,2.71220994549821e-05,299,299,299 -"1311","PvH_KB_NKI_IVIMfit","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.680218362444095,0.0500663182494929,0.00145020569396961,0.45,0.45,0.45,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 -"1312","PvH_KB_NKI_IVIMfit","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.0659651209936008,0.0695342477735909,0.000430833853766582,299,299,299 -"1313","PvH_KB_NKI_IVIMfit","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832124,299,299,299 -"1314","PvH_KB_NKI_IVIMfit","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.685021723698742,0.030464931163596,0.00132963191638665,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 -"1315","PvH_KB_NKI_IVIMfit","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.00755023567893948,0.0102124659620522,5.2174106371215e-05,299,299,299 -"1316","PvH_KB_NKI_IVIMfit","Vein",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 -"1317","PvH_KB_NKI_IVIMfit","Vein",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 -"1318","PvH_KB_NKI_IVIMfit","Vein",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 -"1319","PvH_KB_NKI_IVIMfit","Vein",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 -"1320","PvH_KB_NKI_IVIMfit","Vein",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +,Algorithm,Region,SNR,f,Dp,D,f_mu,Dp_mu,D_mu,f_t_alpha,Dp_t_alpha,D_t_alpha,f_f_alpha,Dp_f_alpha,D_f_alpha,f_std,Dp_std,D_std,f_df,Dp_df,D_df +1,ETP_SRI_LinearFitting,Artery,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 +2,ETP_SRI_LinearFitting,Artery,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 +3,ETP_SRI_LinearFitting,Artery,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 +4,ETP_SRI_LinearFitting,Artery,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 +5,ETP_SRI_LinearFitting,Artery,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 +6,ETP_SRI_LinearFitting,asc lower intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 +7,ETP_SRI_LinearFitting,asc lower intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 +8,ETP_SRI_LinearFitting,asc lower intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 +9,ETP_SRI_LinearFitting,asc lower intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 +10,ETP_SRI_LinearFitting,asc lower intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 +11,ETP_SRI_LinearFitting,Blood RA,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 +12,ETP_SRI_LinearFitting,Blood RA,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 +13,ETP_SRI_LinearFitting,Blood RA,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 +14,ETP_SRI_LinearFitting,Blood RA,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 +15,ETP_SRI_LinearFitting,Blood RA,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 +16,ETP_SRI_LinearFitting,Blood RV,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 +17,ETP_SRI_LinearFitting,Blood RV,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 +18,ETP_SRI_LinearFitting,Blood RV,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 +19,ETP_SRI_LinearFitting,Blood RV,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 +20,ETP_SRI_LinearFitting,Blood RV,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 +21,ETP_SRI_LinearFitting,desc lower intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 +22,ETP_SRI_LinearFitting,desc lower intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 +23,ETP_SRI_LinearFitting,desc lower intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 +24,ETP_SRI_LinearFitting,desc lower intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 +25,ETP_SRI_LinearFitting,desc lower intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 +26,ETP_SRI_LinearFitting,esophagus,10,0.32,0.03,0.00167,-16.83514051,0.006852657,0.001873721,0.45,0.45,0.45,0.45,0.45,0.45,276.0520611,0.02678845,0.00186996,299,299,299 +27,ETP_SRI_LinearFitting,esophagus,30,0.32,0.03,0.00167,0.266714752,0.03038082,0.00164932,0.45,0.45,0.45,0.45,0.45,0.45,0.40633316,0.119784575,0.000600457,299,299,299 +28,ETP_SRI_LinearFitting,esophagus,50,0.32,0.03,0.00167,0.313716357,0.027364298,0.001643599,0.45,0.45,0.45,0.45,0.45,0.45,0.182929019,0.079533413,0.000343814,299,299,299 +29,ETP_SRI_LinearFitting,esophagus,100,0.32,0.03,0.00167,0.32371505,0.026010609,0.00165232,0.45,0.45,0.45,0.45,0.45,0.45,0.085484308,0.041369219,0.000169854,299,299,299 +30,ETP_SRI_LinearFitting,esophagus,200,0.32,0.03,0.00167,0.323458157,0.02131288,0.001660077,0.45,0.45,0.45,0.45,0.45,0.45,0.042295624,0.016836796,8.48E-05,299,299,299 +31,ETP_SRI_LinearFitting,esophagus cont,10,0.32,0.03,0.00167,-16.83514051,0.006852657,0.001873721,0.45,0.45,0.45,0.45,0.45,0.45,276.0520611,0.02678845,0.00186996,299,299,299 +32,ETP_SRI_LinearFitting,esophagus cont,30,0.32,0.03,0.00167,0.266714752,0.03038082,0.00164932,0.45,0.45,0.45,0.45,0.45,0.45,0.40633316,0.119784575,0.000600457,299,299,299 +33,ETP_SRI_LinearFitting,esophagus cont,50,0.32,0.03,0.00167,0.313716357,0.027364298,0.001643599,0.45,0.45,0.45,0.45,0.45,0.45,0.182929019,0.079533413,0.000343814,299,299,299 +34,ETP_SRI_LinearFitting,esophagus cont,100,0.32,0.03,0.00167,0.32371505,0.026010609,0.00165232,0.45,0.45,0.45,0.45,0.45,0.45,0.085484308,0.041369219,0.000169854,299,299,299 +35,ETP_SRI_LinearFitting,esophagus cont,200,0.32,0.03,0.00167,0.323458157,0.02131288,0.001660077,0.45,0.45,0.45,0.45,0.45,0.45,0.042295624,0.016836796,8.48E-05,299,299,299 +36,ETP_SRI_LinearFitting,Left kidney cortex,10,0.097,0.02,0.00212,-14.39555959,0.003917053,0.002285375,0.45,0.45,0.45,0.45,0.45,0.45,192.5980892,0.002844899,0.002079199,299,299,299 +37,ETP_SRI_LinearFitting,Left kidney cortex,30,0.097,0.02,0.00212,-0.04287548,0.006717437,0.002117706,0.45,0.45,0.45,0.45,0.45,0.45,0.980652959,0.027646525,0.000717331,299,299,299 +38,ETP_SRI_LinearFitting,Left kidney cortex,50,0.097,0.02,0.00212,0.08100144,0.020860978,0.002094457,0.45,0.45,0.45,0.45,0.45,0.45,0.2809026,0.162555556,0.00039293,299,299,299 +39,ETP_SRI_LinearFitting,Left kidney cortex,100,0.097,0.02,0.00212,0.101777729,0.031966178,0.002100176,0.45,0.45,0.45,0.45,0.45,0.45,0.125657669,0.191290496,0.000192523,299,299,299 +40,ETP_SRI_LinearFitting,Left kidney cortex,200,0.097,0.02,0.00212,0.102240302,0.025577432,0.002108413,0.45,0.45,0.45,0.45,0.45,0.45,0.061737412,0.065717194,9.60E-05,299,299,299 +41,ETP_SRI_LinearFitting,left kidney medulla,10,0.158,0.019,0.00209,-3.118954546,0.003822726,0.002225559,0.45,0.45,0.45,0.45,0.45,0.45,17.30208987,0.002621005,0.002013047,299,299,299 +42,ETP_SRI_LinearFitting,left kidney medulla,30,0.158,0.019,0.00209,-0.013232776,0.019011833,0.002093524,0.45,0.45,0.45,0.45,0.45,0.45,1.29784271,0.133264708,0.00076512,299,299,299 +43,ETP_SRI_LinearFitting,left kidney medulla,50,0.158,0.019,0.00209,0.13994923,0.043512278,0.002064634,0.45,0.45,0.45,0.45,0.45,0.45,0.277961932,0.272277019,0.000411062,299,299,299 +44,ETP_SRI_LinearFitting,left kidney medulla,100,0.158,0.019,0.00209,0.162111331,0.028419206,0.002069675,0.45,0.45,0.45,0.45,0.45,0.45,0.122752663,0.141684151,0.000200943,299,299,299 +45,ETP_SRI_LinearFitting,left kidney medulla,200,0.158,0.019,0.00209,0.16294032,0.018633137,0.002078042,0.45,0.45,0.45,0.45,0.45,0.45,0.060191046,0.019573477,0.000100189,299,299,299 +46,ETP_SRI_LinearFitting,Liver,10,0.11,0.1,0.0015,-3.671058549,0.010332292,0.00161496,0.45,0.45,0.45,0.45,0.45,0.45,50.57251512,0.100845173,0.001408574,299,299,299 +47,ETP_SRI_LinearFitting,Liver,30,0.11,0.1,0.0015,0.096931841,0.014564293,0.001472467,0.45,0.45,0.45,0.45,0.45,0.45,0.269776486,0.097189351,0.000377589,299,299,299 +48,ETP_SRI_LinearFitting,Liver,50,0.11,0.1,0.0015,0.112644421,0.098849255,0.0014787,0.45,0.45,0.45,0.45,0.45,0.45,0.150827872,0.38069346,0.000223664,299,299,299 +49,ETP_SRI_LinearFitting,Liver,100,0.11,0.1,0.0015,0.114915103,0.088909592,0.001487642,0.45,0.45,0.45,0.45,0.45,0.45,0.073847306,0.328370789,0.000111503,299,299,299 +50,ETP_SRI_LinearFitting,Liver,200,0.11,0.1,0.0015,0.113341187,0.072534053,0.001493397,0.45,0.45,0.45,0.45,0.45,0.45,0.036840498,0.138234643,5.58E-05,299,299,299 +51,ETP_SRI_LinearFitting,Myocardium LV,10,0.15,0.08,0.0024,-5.410078294,0.009418423,0.002382229,0.45,0.45,0.45,0.45,0.45,0.45,43.93502167,0.097852244,0.0022263,299,299,299 +52,ETP_SRI_LinearFitting,Myocardium LV,30,0.15,0.08,0.0024,-0.593493538,0.03073956,0.002476974,0.45,0.45,0.45,0.45,0.45,0.45,4.684077827,0.268537532,0.001150104,299,299,299 +53,ETP_SRI_LinearFitting,Myocardium LV,50,0.15,0.08,0.0024,0.092018455,0.031374216,0.002384144,0.45,0.45,0.45,0.45,0.45,0.45,0.464498483,0.152892133,0.000563768,299,299,299 +54,ETP_SRI_LinearFitting,Myocardium LV,100,0.15,0.08,0.0024,0.150567855,0.051497003,0.002376186,0.45,0.45,0.45,0.45,0.45,0.45,0.165469383,0.127123616,0.000266535,299,299,299 +55,ETP_SRI_LinearFitting,Myocardium LV,200,0.15,0.08,0.0024,0.155639735,0.093387688,0.002384589,0.45,0.45,0.45,0.45,0.45,0.45,0.079130659,0.288726462,0.000132239,299,299,299 +56,ETP_SRI_LinearFitting,myocardium ra,10,0.07,0.07,0.0015,-1.659516654,0.017723877,0.001609573,0.45,0.45,0.45,0.45,0.45,0.45,13.15540177,0.183131673,0.001360886,299,299,299 +57,ETP_SRI_LinearFitting,myocardium ra,30,0.07,0.07,0.0015,0.058956457,0.029609394,0.001472798,0.45,0.45,0.45,0.45,0.45,0.45,0.266937871,0.242638674,0.000360646,299,299,299 +58,ETP_SRI_LinearFitting,myocardium ra,50,0.07,0.07,0.0015,0.073275901,0.03283717,0.001479332,0.45,0.45,0.45,0.45,0.45,0.45,0.150415017,0.216423077,0.000213946,299,299,299 +59,ETP_SRI_LinearFitting,myocardium ra,100,0.07,0.07,0.0015,0.075067262,0.067777446,0.001488103,0.45,0.45,0.45,0.45,0.45,0.45,0.073817787,0.269492649,0.000106706,299,299,299 +60,ETP_SRI_LinearFitting,myocardium ra,200,0.07,0.07,0.0015,0.073379231,0.062367615,0.001493664,0.45,0.45,0.45,0.45,0.45,0.45,0.036841195,0.237445082,5.34E-05,299,299,299 +61,ETP_SRI_LinearFitting,myocardium RV,10,0.15,0.08,0.0024,-5.410078294,0.009418423,0.002382229,0.45,0.45,0.45,0.45,0.45,0.45,43.93502167,0.097852244,0.0022263,299,299,299 +62,ETP_SRI_LinearFitting,myocardium RV,30,0.15,0.08,0.0024,-0.593493538,0.03073956,0.002476974,0.45,0.45,0.45,0.45,0.45,0.45,4.684077827,0.268537532,0.001150104,299,299,299 +63,ETP_SRI_LinearFitting,myocardium RV,50,0.15,0.08,0.0024,0.092018455,0.031374216,0.002384144,0.45,0.45,0.45,0.45,0.45,0.45,0.464498483,0.152892133,0.000563768,299,299,299 +64,ETP_SRI_LinearFitting,myocardium RV,100,0.15,0.08,0.0024,0.150567855,0.051497003,0.002376186,0.45,0.45,0.45,0.45,0.45,0.45,0.165469383,0.127123616,0.000266535,299,299,299 +65,ETP_SRI_LinearFitting,myocardium RV,200,0.15,0.08,0.0024,0.155639735,0.093387688,0.002384589,0.45,0.45,0.45,0.45,0.45,0.45,0.079130659,0.288726462,0.000132239,299,299,299 +66,ETP_SRI_LinearFitting,pancreas,10,0.15,0.01,0.0013,-0.650527215,0.003733686,0.001388666,0.45,0.45,0.45,0.45,0.45,0.45,4.936673942,0.007224742,0.001192487,299,299,299 +67,ETP_SRI_LinearFitting,pancreas,30,0.15,0.01,0.0013,0.14118139,0.057102218,0.001276319,0.45,0.45,0.45,0.45,0.45,0.45,0.223328699,0.302359176,0.000329779,299,299,299 +68,ETP_SRI_LinearFitting,pancreas,50,0.15,0.01,0.0013,0.151003608,0.015294408,0.001283857,0.45,0.45,0.45,0.45,0.45,0.45,0.127982123,0.126325868,0.000196269,299,299,299 +69,ETP_SRI_LinearFitting,pancreas,100,0.15,0.01,0.0013,0.151847983,0.013162645,0.001292321,0.45,0.45,0.45,0.45,0.45,0.45,0.063129376,0.037792736,9.80E-05,299,299,299 +70,ETP_SRI_LinearFitting,pancreas,200,0.15,0.01,0.0013,0.150332194,0.010944593,0.001297416,0.45,0.45,0.45,0.45,0.45,0.45,0.031532784,0.005872722,4.90E-05,299,299,299 +71,ETP_SRI_LinearFitting,pericardium,10,0.07,0.01,0.003,-1.710694554,0.004138065,0.002220024,0.45,0.45,0.45,0.45,0.45,0.45,11.3461458,0.007963309,0.002143504,299,299,299 +72,ETP_SRI_LinearFitting,pericardium,30,0.07,0.01,0.003,-2.915277448,0.005071733,0.003219865,0.45,0.45,0.45,0.45,0.45,0.45,18.81629556,0.003158921,0.001765429,299,299,299 +73,ETP_SRI_LinearFitting,pericardium,50,0.07,0.01,0.003,-0.72510748,0.014614316,0.003084362,0.45,0.45,0.45,0.45,0.45,0.45,5.028923977,0.139670662,0.001122843,299,299,299 +74,ETP_SRI_LinearFitting,pericardium,100,0.07,0.01,0.003,0.039507292,0.007397628,0.002981328,0.45,0.45,0.45,0.45,0.45,0.45,0.337660314,0.026548244,0.0004424,299,299,299 +75,ETP_SRI_LinearFitting,pericardium,200,0.07,0.01,0.003,0.071794092,0.03149852,0.002981441,0.45,0.45,0.45,0.45,0.45,0.45,0.139726244,0.210455939,0.000213772,299,299,299 +76,ETP_SRI_LinearFitting,right kidney medulla,10,0.158,0.019,0.00209,-3.118954546,0.003822726,0.002225559,0.45,0.45,0.45,0.45,0.45,0.45,17.30208987,0.002621005,0.002013047,299,299,299 +77,ETP_SRI_LinearFitting,right kidney medulla,30,0.158,0.019,0.00209,-0.013232776,0.019011833,0.002093524,0.45,0.45,0.45,0.45,0.45,0.45,1.29784271,0.133264708,0.00076512,299,299,299 +78,ETP_SRI_LinearFitting,right kidney medulla,50,0.158,0.019,0.00209,0.13994923,0.043512278,0.002064634,0.45,0.45,0.45,0.45,0.45,0.45,0.277961932,0.272277019,0.000411062,299,299,299 +79,ETP_SRI_LinearFitting,right kidney medulla,100,0.158,0.019,0.00209,0.162111331,0.028419206,0.002069675,0.45,0.45,0.45,0.45,0.45,0.45,0.122752663,0.141684151,0.000200943,299,299,299 +80,ETP_SRI_LinearFitting,right kidney medulla,200,0.158,0.019,0.00209,0.16294032,0.018633137,0.002078042,0.45,0.45,0.45,0.45,0.45,0.45,0.060191046,0.019573477,0.000100189,299,299,299 +81,ETP_SRI_LinearFitting,Right kydney cortex,10,0.097,0.02,0.00212,-14.39555959,0.003917053,0.002285375,0.45,0.45,0.45,0.45,0.45,0.45,192.5980892,0.002844899,0.002079199,299,299,299 +82,ETP_SRI_LinearFitting,Right kydney cortex,30,0.097,0.02,0.00212,-0.04287548,0.006717437,0.002117706,0.45,0.45,0.45,0.45,0.45,0.45,0.980652959,0.027646525,0.000717331,299,299,299 +83,ETP_SRI_LinearFitting,Right kydney cortex,50,0.097,0.02,0.00212,0.08100144,0.020860978,0.002094457,0.45,0.45,0.45,0.45,0.45,0.45,0.2809026,0.162555556,0.00039293,299,299,299 +84,ETP_SRI_LinearFitting,Right kydney cortex,100,0.097,0.02,0.00212,0.101777729,0.031966178,0.002100176,0.45,0.45,0.45,0.45,0.45,0.45,0.125657669,0.191290496,0.000192523,299,299,299 +85,ETP_SRI_LinearFitting,Right kydney cortex,200,0.097,0.02,0.00212,0.102240302,0.025577432,0.002108413,0.45,0.45,0.45,0.45,0.45,0.45,0.061737412,0.065717194,9.60E-05,299,299,299 +86,ETP_SRI_LinearFitting,small intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 +87,ETP_SRI_LinearFitting,small intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 +88,ETP_SRI_LinearFitting,small intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 +89,ETP_SRI_LinearFitting,small intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 +90,ETP_SRI_LinearFitting,small intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 +91,ETP_SRI_LinearFitting,spleen,10,0.2,0.03,0.0013,-3.374013252,0.005536183,0.001434337,0.45,0.45,0.45,0.45,0.45,0.45,32.2937373,0.019919958,0.001436225,299,299,299 +92,ETP_SRI_LinearFitting,spleen,30,0.2,0.03,0.0013,0.191616803,0.052433937,0.001272463,0.45,0.45,0.45,0.45,0.45,0.45,0.225231223,0.241188206,0.00035123,299,299,299 +93,ETP_SRI_LinearFitting,spleen,50,0.2,0.03,0.0013,0.202791755,0.039825291,0.001279879,0.45,0.45,0.45,0.45,0.45,0.45,0.128062905,0.160615566,0.000208716,299,299,299 +94,ETP_SRI_LinearFitting,spleen,100,0.2,0.03,0.0013,0.204134186,0.02969012,0.001288643,0.45,0.45,0.45,0.45,0.45,0.45,0.063013884,0.059005431,0.000104156,299,299,299 +95,ETP_SRI_LinearFitting,spleen,200,0.2,0.03,0.0013,0.202743965,0.021797949,0.001294,0.45,0.45,0.45,0.45,0.45,0.45,0.031461407,0.020464399,5.21E-05,299,299,299 +96,ETP_SRI_LinearFitting,st wall,10,0.3,0.012,0.0015,-1.646104693,0.004698726,0.001672271,0.45,0.45,0.45,0.45,0.45,0.45,15.80559975,0.011689631,0.001581713,299,299,299 +97,ETP_SRI_LinearFitting,st wall,30,0.3,0.012,0.0015,0.270890695,0.014594654,0.00147534,0.45,0.45,0.45,0.45,0.45,0.45,0.29617677,0.064457531,0.000487785,299,299,299 +98,ETP_SRI_LinearFitting,st wall,50,0.3,0.012,0.0015,0.296764049,0.020611866,0.001478122,0.45,0.45,0.45,0.45,0.45,0.45,0.154483981,0.138058216,0.000285388,299,299,299 +99,ETP_SRI_LinearFitting,st wall,100,0.3,0.012,0.0015,0.302162253,0.01270729,0.001487653,0.45,0.45,0.45,0.45,0.45,0.45,0.074253544,0.009993362,0.000141764,299,299,299 +100,ETP_SRI_LinearFitting,st wall,200,0.3,0.012,0.0015,0.301306787,0.011583951,0.001494531,0.45,0.45,0.45,0.45,0.45,0.45,0.036919544,0.003925196,7.09E-05,299,299,299 +101,ETP_SRI_LinearFitting,trans lower intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 +102,ETP_SRI_LinearFitting,trans lower intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 +103,ETP_SRI_LinearFitting,trans lower intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 +104,ETP_SRI_LinearFitting,trans lower intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 +105,ETP_SRI_LinearFitting,trans lower intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 +106,ETP_SRI_LinearFitting,Vein,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 +107,ETP_SRI_LinearFitting,Vein,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 +108,ETP_SRI_LinearFitting,Vein,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 +109,ETP_SRI_LinearFitting,Vein,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 +110,ETP_SRI_LinearFitting,Vein,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 +111,IAR_LU_biexp,Artery,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 +112,IAR_LU_biexp,Artery,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 +113,IAR_LU_biexp,Artery,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 +114,IAR_LU_biexp,Artery,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 +115,IAR_LU_biexp,Artery,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 +116,IAR_LU_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.697212668,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.09691496,0.015087311,0.000756516,299,299,299 +117,IAR_LU_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.03609476,0.00363626,0.00028388,299,299,299 +118,IAR_LU_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.690035517,0.029111598,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472224,0.002118058,0.000167873,299,299,299 +119,IAR_LU_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 +120,IAR_LU_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 +121,IAR_LU_biexp,Blood RA,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 +122,IAR_LU_biexp,Blood RA,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 +123,IAR_LU_biexp,Blood RA,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 +124,IAR_LU_biexp,Blood RA,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 +125,IAR_LU_biexp,Blood RA,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 +126,IAR_LU_biexp,Blood RV,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 +127,IAR_LU_biexp,Blood RV,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 +128,IAR_LU_biexp,Blood RV,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 +129,IAR_LU_biexp,Blood RV,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 +130,IAR_LU_biexp,Blood RV,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 +131,IAR_LU_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.697212667,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.096914961,0.015087311,0.000756516,299,299,299 +132,IAR_LU_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.036094759,0.00363626,0.00028388,299,299,299 +133,IAR_LU_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.690035516,0.029111599,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472226,0.002118059,0.000167873,299,299,299 +134,IAR_LU_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 +135,IAR_LU_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 +136,IAR_LU_biexp,esophagus,10,0.32,0.03,0.00167,0.36768348,0.038773902,0.001499688,0.45,0.45,0.45,0.45,0.45,0.45,0.137924392,0.028700675,0.000539608,299,299,299 +137,IAR_LU_biexp,esophagus,30,0.32,0.03,0.00167,0.324535978,0.031699292,0.001652039,0.45,0.45,0.45,0.45,0.45,0.45,0.041414652,0.010218498,0.000163809,299,299,299 +138,IAR_LU_biexp,esophagus,50,0.32,0.03,0.00167,0.321543302,0.030498119,0.001661859,0.45,0.45,0.45,0.45,0.45,0.45,0.024129146,0.005222801,9.57E-05,299,299,299 +139,IAR_LU_biexp,esophagus,100,0.32,0.03,0.00167,0.320352104,0.030104494,0.00166689,0.45,0.45,0.45,0.45,0.45,0.45,0.011843438,0.002475232,4.71E-05,299,299,299 +140,IAR_LU_biexp,esophagus,200,0.32,0.03,0.00167,0.32007433,0.030021151,0.001668683,0.45,0.45,0.45,0.45,0.45,0.45,0.005887283,0.001220815,2.34E-05,299,299,299 +141,IAR_LU_biexp,esophagus cont,10,0.32,0.03,0.00167,0.36768348,0.038773902,0.001499688,0.45,0.45,0.45,0.45,0.45,0.45,0.137924392,0.028700675,0.000539608,299,299,299 +142,IAR_LU_biexp,esophagus cont,30,0.32,0.03,0.00167,0.324535978,0.031699292,0.001652039,0.45,0.45,0.45,0.45,0.45,0.45,0.041414652,0.010218498,0.000163809,299,299,299 +143,IAR_LU_biexp,esophagus cont,50,0.32,0.03,0.00167,0.321543302,0.030498119,0.001661859,0.45,0.45,0.45,0.45,0.45,0.45,0.024129146,0.005222801,9.57E-05,299,299,299 +144,IAR_LU_biexp,esophagus cont,100,0.32,0.03,0.00167,0.320352104,0.030104494,0.00166689,0.45,0.45,0.45,0.45,0.45,0.45,0.011843438,0.002475232,4.71E-05,299,299,299 +145,IAR_LU_biexp,esophagus cont,200,0.32,0.03,0.00167,0.32007433,0.030021151,0.001668683,0.45,0.45,0.45,0.45,0.45,0.45,0.005887283,0.001220815,2.34E-05,299,299,299 +146,IAR_LU_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.210970907,0.031031066,0.001822947,0.45,0.45,0.45,0.45,0.45,0.45,0.203989005,0.03446746,0.000586837,299,299,299 +147,IAR_LU_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.157683966,0.026659908,0.002001881,0.45,0.45,0.45,0.45,0.45,0.45,0.114151569,0.026341188,0.000253816,299,299,299 +148,IAR_LU_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.121533306,0.026859566,0.002072999,0.45,0.45,0.45,0.45,0.45,0.45,0.070205006,0.022595261,0.000153941,299,299,299 +149,IAR_LU_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.100982702,0.021817156,0.002110922,0.45,0.45,0.45,0.45,0.45,0.45,0.023188431,0.008841303,6.24E-05,299,299,299 +150,IAR_LU_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.097941317,0.020324544,0.002117204,0.45,0.45,0.45,0.45,0.45,0.45,0.01052426,0.003348266,2.96E-05,299,299,299 +151,IAR_LU_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.278725113,0.029929528,0.001754916,0.45,0.45,0.45,0.45,0.45,0.45,0.214439227,0.032066541,0.000647004,299,299,299 +152,IAR_LU_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.195052951,0.026185606,0.002008375,0.45,0.45,0.45,0.45,0.45,0.45,0.107212847,0.022730281,0.000274367,299,299,299 +153,IAR_LU_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.168666541,0.022131208,0.002065348,0.45,0.45,0.45,0.45,0.45,0.45,0.051119773,0.013054907,0.000140952,299,299,299 +154,IAR_LU_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.160303514,0.019506394,0.002083251,0.45,0.45,0.45,0.45,0.45,0.45,0.022096746,0.004024377,6.45E-05,299,299,299 +155,IAR_LU_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.158549311,0.019121903,0.002087809,0.45,0.45,0.45,0.45,0.45,0.45,0.010717109,0.001954292,3.17E-05,299,299,299 +156,IAR_LU_biexp,Liver,10,0.11,0.1,0.0015,0.171505033,0.058589487,0.001330829,0.45,0.45,0.45,0.45,0.45,0.45,0.136516097,0.040090039,0.000354915,299,299,299 +157,IAR_LU_biexp,Liver,30,0.11,0.1,0.0015,0.116524923,0.079746132,0.001470396,0.45,0.45,0.45,0.45,0.45,0.45,0.033344572,0.027358664,9.54E-05,299,299,299 +158,IAR_LU_biexp,Liver,50,0.11,0.1,0.0015,0.111213986,0.087171084,0.001487978,0.45,0.45,0.45,0.45,0.45,0.45,0.015400616,0.018117775,4.77E-05,299,299,299 +159,IAR_LU_biexp,Liver,100,0.11,0.1,0.0015,0.110305057,0.092787224,0.001494436,0.45,0.45,0.45,0.45,0.45,0.45,0.007603673,0.010636985,2.35E-05,299,299,299 +160,IAR_LU_biexp,Liver,200,0.11,0.1,0.0015,0.110083102,0.096108863,0.001497297,0.45,0.45,0.45,0.45,0.45,0.45,0.003774092,0.005893522,1.17E-05,299,299,299 +161,IAR_LU_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.270068425,0.051790092,0.001976774,0.45,0.45,0.45,0.45,0.45,0.45,0.196904006,0.039079007,0.00065725,299,299,299 +162,IAR_LU_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.159128615,0.075299601,0.002360279,0.45,0.45,0.45,0.45,0.45,0.45,0.044062237,0.025826858,0.00017363,299,299,299 +163,IAR_LU_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.152177073,0.079191981,0.002386876,0.45,0.45,0.45,0.45,0.45,0.45,0.017389108,0.018489134,8.64E-05,299,299,299 +164,IAR_LU_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.150508149,0.080680789,0.002396117,0.45,0.45,0.45,0.45,0.45,0.45,0.008522016,0.012076753,4.33E-05,299,299,299 +165,IAR_LU_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150084202,0.080485951,0.002398748,0.45,0.45,0.45,0.45,0.45,0.45,0.004245994,0.006943954,2.19E-05,299,299,299 +166,IAR_LU_biexp,myocardium ra,10,0.07,0.07,0.0015,0.144345298,0.049616044,0.001329984,0.45,0.45,0.45,0.45,0.45,0.45,0.14085515,0.040460542,0.000341449,299,299,299 +167,IAR_LU_biexp,myocardium ra,30,0.07,0.07,0.0015,0.088493402,0.060599019,0.001455011,0.45,0.45,0.45,0.45,0.45,0.45,0.049232584,0.035197619,0.000113777,299,299,299 +168,IAR_LU_biexp,myocardium ra,50,0.07,0.07,0.0015,0.075864717,0.067916501,0.00148333,0.45,0.45,0.45,0.45,0.45,0.45,0.023045666,0.029100163,5.94E-05,299,299,299 +169,IAR_LU_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070874913,0.071193644,0.001496424,0.45,0.45,0.45,0.45,0.45,0.45,0.008165007,0.019272121,2.44E-05,299,299,299 +170,IAR_LU_biexp,myocardium ra,200,0.07,0.07,0.0015,0.070182595,0.071171768,0.001498969,0.45,0.45,0.45,0.45,0.45,0.45,0.004032984,0.011962012,1.22E-05,299,299,299 +171,IAR_LU_biexp,myocardium RV,10,0.15,0.08,0.0024,0.270068425,0.051790092,0.001976774,0.45,0.45,0.45,0.45,0.45,0.45,0.196904006,0.039079007,0.00065725,299,299,299 +172,IAR_LU_biexp,myocardium RV,30,0.15,0.08,0.0024,0.159128615,0.075299601,0.002360279,0.45,0.45,0.45,0.45,0.45,0.45,0.044062237,0.025826858,0.00017363,299,299,299 +173,IAR_LU_biexp,myocardium RV,50,0.15,0.08,0.0024,0.152177073,0.079191981,0.002386876,0.45,0.45,0.45,0.45,0.45,0.45,0.017389108,0.018489134,8.64E-05,299,299,299 +174,IAR_LU_biexp,myocardium RV,100,0.15,0.08,0.0024,0.150508149,0.080680789,0.002396117,0.45,0.45,0.45,0.45,0.45,0.45,0.008522016,0.012076753,4.33E-05,299,299,299 +175,IAR_LU_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150084202,0.080485951,0.002398748,0.45,0.45,0.45,0.45,0.45,0.45,0.004245994,0.006943954,2.19E-05,299,299,299 +176,IAR_LU_biexp,pancreas,10,0.15,0.01,0.0013,0.194101488,0.031275884,0.001205266,0.45,0.45,0.45,0.45,0.45,0.45,0.163835606,0.035113417,0.000389002,299,299,299 +177,IAR_LU_biexp,pancreas,30,0.15,0.01,0.0013,0.180577811,0.017290382,0.001251611,0.45,0.45,0.45,0.45,0.45,0.45,0.094620148,0.020761393,0.000184226,299,299,299 +178,IAR_LU_biexp,pancreas,50,0.15,0.01,0.0013,0.172218378,0.012201506,0.001264619,0.45,0.45,0.45,0.45,0.45,0.45,0.068005782,0.010289547,0.00012628,299,299,299 +179,IAR_LU_biexp,pancreas,100,0.15,0.01,0.0013,0.15681439,0.010276361,0.001288314,0.45,0.45,0.45,0.45,0.45,0.45,0.033092544,0.002805941,6.20E-05,299,299,299 +180,IAR_LU_biexp,pancreas,200,0.15,0.01,0.0013,0.151550794,0.010051333,0.001296881,0.45,0.45,0.45,0.45,0.45,0.45,0.015024922,0.00127662,2.91E-05,299,299,299 +181,IAR_LU_biexp,pericardium,10,0.07,0.01,0.003,0.285492213,0.019067033,0.002261575,0.45,0.45,0.45,0.45,0.45,0.45,0.295897833,0.028197474,0.000970922,299,299,299 +182,IAR_LU_biexp,pericardium,30,0.07,0.01,0.003,0.171300202,0.017665897,0.002797556,0.45,0.45,0.45,0.45,0.45,0.45,0.19234322,0.024975905,0.000428028,299,299,299 +183,IAR_LU_biexp,pericardium,50,0.07,0.01,0.003,0.150556932,0.018667329,0.002870296,0.45,0.45,0.45,0.45,0.45,0.45,0.153716457,0.02482354,0.000300739,299,299,299 +184,IAR_LU_biexp,pericardium,100,0.07,0.01,0.003,0.137271521,0.016047399,0.002909275,0.45,0.45,0.45,0.45,0.45,0.45,0.117893567,0.019515272,0.000196242,299,299,299 +185,IAR_LU_biexp,pericardium,200,0.07,0.01,0.003,0.102312394,0.012593093,0.002957776,0.45,0.45,0.45,0.45,0.45,0.45,0.078504107,0.010905113,0.000124247,299,299,299 +186,IAR_LU_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.278725113,0.029929528,0.001754916,0.45,0.45,0.45,0.45,0.45,0.45,0.214439227,0.032066541,0.000647004,299,299,299 +187,IAR_LU_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.195052951,0.026185606,0.002008375,0.45,0.45,0.45,0.45,0.45,0.45,0.107212847,0.022730281,0.000274367,299,299,299 +188,IAR_LU_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.168666541,0.022131208,0.002065348,0.45,0.45,0.45,0.45,0.45,0.45,0.051119773,0.013054907,0.000140952,299,299,299 +189,IAR_LU_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.160303514,0.019506394,0.002083251,0.45,0.45,0.45,0.45,0.45,0.45,0.022096746,0.004024377,6.45E-05,299,299,299 +190,IAR_LU_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.158549311,0.019121903,0.002087809,0.45,0.45,0.45,0.45,0.45,0.45,0.010717109,0.001954292,3.17E-05,299,299,299 +191,IAR_LU_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.210970907,0.031031066,0.001822947,0.45,0.45,0.45,0.45,0.45,0.45,0.203989005,0.03446746,0.000586837,299,299,299 +192,IAR_LU_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.157683966,0.026659908,0.002001881,0.45,0.45,0.45,0.45,0.45,0.45,0.114151569,0.026341188,0.000253816,299,299,299 +193,IAR_LU_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.121533306,0.026859566,0.002072999,0.45,0.45,0.45,0.45,0.45,0.45,0.070205006,0.022595261,0.000153941,299,299,299 +194,IAR_LU_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.100982702,0.021817156,0.002110922,0.45,0.45,0.45,0.45,0.45,0.45,0.023188431,0.008841303,6.24E-05,299,299,299 +195,IAR_LU_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.097941317,0.020324544,0.002117204,0.45,0.45,0.45,0.45,0.45,0.45,0.01052426,0.003348266,2.96E-05,299,299,299 +196,IAR_LU_biexp,small intestine,10,0.69,0.029,0.00131,0.697212667,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.096914961,0.015087311,0.000756516,299,299,299 +197,IAR_LU_biexp,small intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.036094759,0.00363626,0.00028388,299,299,299 +198,IAR_LU_biexp,small intestine,50,0.69,0.029,0.00131,0.690035516,0.029111599,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472226,0.002118059,0.000167873,299,299,299 +199,IAR_LU_biexp,small intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 +200,IAR_LU_biexp,small intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 +201,IAR_LU_biexp,spleen,10,0.2,0.03,0.0013,0.258238381,0.041585549,0.001156583,0.45,0.45,0.45,0.45,0.45,0.45,0.138972936,0.033199359,0.000392003,299,299,299 +202,IAR_LU_biexp,spleen,30,0.2,0.03,0.0013,0.206967214,0.033891958,0.001281564,0.45,0.45,0.45,0.45,0.45,0.45,0.038763348,0.01754092,0.000113885,299,299,299 +203,IAR_LU_biexp,spleen,50,0.2,0.03,0.0013,0.202249287,0.031283391,0.00129257,0.45,0.45,0.45,0.45,0.45,0.45,0.022158151,0.008797369,6.60E-05,299,299,299 +204,IAR_LU_biexp,spleen,100,0.2,0.03,0.0013,0.20048708,0.030250428,0.001297394,0.45,0.45,0.45,0.45,0.45,0.45,0.010745718,0.003832956,3.21E-05,299,299,299 +205,IAR_LU_biexp,spleen,200,0.2,0.03,0.0013,0.200092056,0.030052736,0.001298975,0.45,0.45,0.45,0.45,0.45,0.45,0.005316567,0.001865286,1.59E-05,299,299,299 +206,IAR_LU_biexp,st wall,10,0.3,0.012,0.0015,0.361045682,0.025295608,0.001317174,0.45,0.45,0.45,0.45,0.45,0.45,0.203267228,0.028564728,0.000612145,299,299,299 +207,IAR_LU_biexp,st wall,30,0.3,0.012,0.0015,0.323962429,0.013419393,0.001438868,0.45,0.45,0.45,0.45,0.45,0.45,0.098208329,0.007989333,0.000260082,299,299,299 +208,IAR_LU_biexp,st wall,50,0.3,0.012,0.0015,0.307361981,0.012384744,0.001479686,0.45,0.45,0.45,0.45,0.45,0.45,0.054390627,0.003119057,0.000143561,299,299,299 +209,IAR_LU_biexp,st wall,100,0.3,0.012,0.0015,0.301677558,0.012087836,0.001494343,0.45,0.45,0.45,0.45,0.45,0.45,0.026338451,0.001432276,6.97E-05,299,299,299 +210,IAR_LU_biexp,st wall,200,0.3,0.012,0.0015,0.300399088,0.012019304,0.001498139,0.45,0.45,0.45,0.45,0.45,0.45,0.013097968,0.000698591,3.46E-05,299,299,299 +211,IAR_LU_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.697212668,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.096914961,0.015087311,0.000756516,299,299,299 +212,IAR_LU_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.03609476,0.00363626,0.00028388,299,299,299 +213,IAR_LU_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.690035516,0.029111599,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472226,0.002118059,0.000167873,299,299,299 +214,IAR_LU_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 +215,IAR_LU_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 +216,IAR_LU_biexp,Vein,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 +217,IAR_LU_biexp,Vein,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 +218,IAR_LU_biexp,Vein,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 +219,IAR_LU_biexp,Vein,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 +220,IAR_LU_biexp,Vein,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 +221,IAR_LU_modified_mix,Artery,10,1,0.1,0.003,0.933585498,0.098157464,9.69E-05,0.35,0.35,0.35,0,0,0,0.021536789,0.004837369,0.000275993,299,299,299 +222,IAR_LU_modified_mix,Artery,30,1,0.1,0.003,0.97866099,0.098925381,0.000105438,0.35,0.35,0.35,0,0,0,0.007178486,0.002552449,0.000389452,299,299,299 +223,IAR_LU_modified_mix,Artery,50,1,0.1,0.003,0.987498292,0.099329795,0.000129154,0.35,0.35,0.35,0,0,0,0.004229407,0.001602046,0.000484318,299,299,299 +224,IAR_LU_modified_mix,Artery,100,1,0.1,0.003,0.993800721,0.099629788,0.000654204,0.35,0.35,0.35,0,0,0,0.002234854,0.000852588,0.000795654,299,299,299 +225,IAR_LU_modified_mix,Artery,200,1,0.1,0.003,0.996838931,0.099812023,0.000929915,0.35,0.35,0.35,0,0,0,0.001219395,0.00043314,0.000927151,299,299,299 +226,IAR_LU_modified_mix,asc lower intestine,10,0.69,0.029,0.00131,0.701183027,0.037663182,0.001235528,0.35,0.35,0.35,0,0,0,0.083800073,0.014230338,0.000699879,299,299,299 +227,IAR_LU_modified_mix,asc lower intestine,30,0.69,0.029,0.00131,0.689290201,0.030566797,0.001325736,0.35,0.35,0.35,0,0,0,0.034311286,0.003874222,0.000274365,299,299,299 +228,IAR_LU_modified_mix,asc lower intestine,50,0.69,0.029,0.00131,0.689070661,0.029613329,0.001316619,0.35,0.35,0.35,0,0,0,0.021103665,0.002314011,0.000165641,299,299,299 +229,IAR_LU_modified_mix,asc lower intestine,100,0.69,0.029,0.00131,0.689235661,0.029167441,0.001312393,0.35,0.35,0.35,0,0,0,0.010621284,0.001184636,8.32E-05,299,299,299 +230,IAR_LU_modified_mix,asc lower intestine,200,0.69,0.029,0.00131,0.689605412,0.029061354,0.00131096,0.35,0.35,0.35,0,0,0,0.005304789,0.000596434,4.16E-05,299,299,299 +231,IAR_LU_modified_mix,Blood RA,10,1,0.1,0.003,0.933571674,0.098179996,9.69E-05,0.35,0.35,0.35,0,0,0,0.021531762,0.00482884,0.000274227,299,299,299 +232,IAR_LU_modified_mix,Blood RA,30,1,0.1,0.003,0.97866475,0.098924147,0.00010546,0.35,0.35,0.35,0,0,0,0.00717458,0.002560317,0.00039157,299,299,299 +233,IAR_LU_modified_mix,Blood RA,50,1,0.1,0.003,0.987513436,0.09931794,0.000133319,0.35,0.35,0.35,0,0,0,0.004260592,0.001630674,0.000506176,299,299,299 +234,IAR_LU_modified_mix,Blood RA,100,1,0.1,0.003,0.99377906,0.099631741,0.000656412,0.35,0.35,0.35,0,0,0,0.002233794,0.000861993,0.000794136,299,299,299 +235,IAR_LU_modified_mix,Blood RA,200,1,0.1,0.003,0.996844779,0.099803471,0.000950963,0.35,0.35,0.35,0,0,0,0.00123142,0.000438548,0.000907622,299,299,299 +236,IAR_LU_modified_mix,Blood RV,10,1,0.1,0.003,0.933567035,0.0981804,9.72E-05,0.35,0.35,0.35,0,0,0,0.021532249,0.004827321,0.000276299,299,299,299 +237,IAR_LU_modified_mix,Blood RV,30,1,0.1,0.003,0.978662585,0.098927544,0.000105269,0.35,0.35,0.35,0,0,0,0.007176238,0.0025574,0.000390635,299,299,299 +238,IAR_LU_modified_mix,Blood RV,50,1,0.1,0.003,0.987518052,0.099326331,0.000138935,0.35,0.35,0.35,0,0,0,0.004288932,0.001598073,0.000530085,299,299,299 +239,IAR_LU_modified_mix,Blood RV,100,1,0.1,0.003,0.993800121,0.099630889,0.00066833,0.35,0.35,0.35,0,0,0,0.002255411,0.000846892,0.000826259,299,299,299 +240,IAR_LU_modified_mix,Blood RV,200,1,0.1,0.003,0.996847422,0.099804533,0.000864913,0.35,0.35,0.35,0,0,0,0.001218892,0.000451967,0.000878525,299,299,299 +241,IAR_LU_modified_mix,desc lower intestine,10,0.69,0.029,0.00131,0.701210417,0.037659365,0.001235281,0.35,0.35,0.35,0,0,0,0.0838037,0.01422387,0.000699364,299,299,299 +242,IAR_LU_modified_mix,desc lower intestine,30,0.69,0.029,0.00131,0.689288149,0.030567592,0.001325803,0.35,0.35,0.35,0,0,0,0.034291465,0.003874974,0.000274453,299,299,299 +243,IAR_LU_modified_mix,desc lower intestine,50,0.69,0.029,0.00131,0.689067879,0.029613638,0.001316604,0.35,0.35,0.35,0,0,0,0.02111824,0.002315829,0.000165691,299,299,299 +244,IAR_LU_modified_mix,desc lower intestine,100,0.69,0.029,0.00131,0.689242118,0.029166501,0.001312342,0.35,0.35,0.35,0,0,0,0.010611633,0.001184343,8.32E-05,299,299,299 +245,IAR_LU_modified_mix,desc lower intestine,200,0.69,0.029,0.00131,0.689582683,0.029063778,0.001311114,0.35,0.35,0.35,0,0,0,0.005303206,0.000594675,4.16E-05,299,299,299 +246,IAR_LU_modified_mix,esophagus,10,0.32,0.03,0.00167,0.401162145,0.044505563,0.001539736,0.35,0.35,0.35,0,0,0,0.102560346,0.025884854,0.000432757,299,299,299 +247,IAR_LU_modified_mix,esophagus,30,0.32,0.03,0.00167,0.337533779,0.033315069,0.001648339,0.35,0.35,0.35,0,0,0,0.040471693,0.009673424,0.000155139,299,299,299 +248,IAR_LU_modified_mix,esophagus,50,0.32,0.03,0.00167,0.32780132,0.031278484,0.001659346,0.35,0.35,0.35,0,0,0,0.025189402,0.005042477,9.38E-05,299,299,299 +249,IAR_LU_modified_mix,esophagus,100,0.32,0.03,0.00167,0.321627369,0.030363705,0.001667009,0.35,0.35,0.35,0,0,0,0.013005665,0.002464501,4.73E-05,299,299,299 +250,IAR_LU_modified_mix,esophagus,200,0.32,0.03,0.00167,0.319960908,0.030126514,0.001669589,0.35,0.35,0.35,0,0,0,0.006666776,0.001239427,2.37E-05,299,299,299 +251,IAR_LU_modified_mix,esophagus cont,10,0.32,0.03,0.00167,0.400889682,0.044522675,0.001541568,0.35,0.35,0.35,0,0,0,0.102185902,0.025853926,0.000435332,299,299,299 +252,IAR_LU_modified_mix,esophagus cont,30,0.32,0.03,0.00167,0.337499868,0.033327122,0.001648476,0.35,0.35,0.35,0,0,0,0.04046196,0.009685408,0.000155032,299,299,299 +253,IAR_LU_modified_mix,esophagus cont,50,0.32,0.03,0.00167,0.327741721,0.031294305,0.001659477,0.35,0.35,0.35,0,0,0,0.025218858,0.005067032,9.40E-05,299,299,299 +254,IAR_LU_modified_mix,esophagus cont,100,0.32,0.03,0.00167,0.32157592,0.030376402,0.00166719,0.35,0.35,0.35,0,0,0,0.013010309,0.002457789,4.72E-05,299,299,299 +255,IAR_LU_modified_mix,esophagus cont,200,0.32,0.03,0.00167,0.319991094,0.030119433,0.001669495,0.35,0.35,0.35,0,0,0,0.006662012,0.001238349,2.36E-05,299,299,299 +256,IAR_LU_modified_mix,Left kidney cortex,10,0.097,0.02,0.00212,0.251345368,0.047102019,0.001874486,0.35,0.35,0.35,0,0,0,0.152953898,0.03267794,0.00051008,299,299,299 +257,IAR_LU_modified_mix,Left kidney cortex,30,0.097,0.02,0.00212,0.151979124,0.033994137,0.002042844,0.35,0.35,0.35,0,0,0,0.07608832,0.027346893,0.000194312,299,299,299 +258,IAR_LU_modified_mix,Left kidney cortex,50,0.097,0.02,0.00212,0.125804872,0.028875206,0.002080221,0.35,0.35,0.35,0,0,0,0.048064026,0.022048945,0.000120439,299,299,299 +259,IAR_LU_modified_mix,Left kidney cortex,100,0.097,0.02,0.00212,0.109168358,0.02107736,0.002100506,0.35,0.35,0.35,0,0,0,0.020268428,0.008565169,5.54E-05,299,299,299 +260,IAR_LU_modified_mix,Left kidney cortex,200,0.097,0.02,0.00212,0.102581896,0.019542534,0.002109142,0.35,0.35,0.35,0,0,0,0.009946767,0.003013677,2.73E-05,299,299,299 +261,IAR_LU_modified_mix,left kidney medulla,10,0.158,0.019,0.00209,0.29203463,0.046164277,0.001862116,0.35,0.35,0.35,0,0,0,0.155532305,0.032754471,0.000547848,299,299,299 +262,IAR_LU_modified_mix,left kidney medulla,30,0.158,0.019,0.00209,0.194835612,0.029847423,0.002044034,0.35,0.35,0.35,0,0,0,0.071093392,0.021799987,0.000204183,299,299,299 +263,IAR_LU_modified_mix,left kidney medulla,50,0.158,0.019,0.00209,0.17422836,0.024244612,0.002072577,0.35,0.35,0.35,0,0,0,0.04157661,0.012938034,0.000121633,299,299,299 +264,IAR_LU_modified_mix,left kidney medulla,100,0.158,0.019,0.00209,0.163237476,0.020316331,0.002084258,0.35,0.35,0.35,0,0,0,0.021011224,0.00392657,6.10E-05,299,299,299 +265,IAR_LU_modified_mix,left kidney medulla,200,0.158,0.019,0.00209,0.15888846,0.019441617,0.002089164,0.35,0.35,0.35,0,0,0,0.011107822,0.001963321,3.16E-05,299,299,299 +266,IAR_LU_modified_mix,Liver,10,0.11,0.1,0.0015,0.241195763,0.064165448,0.001329128,0.35,0.35,0.35,0,0,0,0.100694311,0.034250612,0.000295057,299,299,299 +267,IAR_LU_modified_mix,Liver,30,0.11,0.1,0.0015,0.141213557,0.080030575,0.001457676,0.35,0.35,0.35,0,0,0,0.03293353,0.026310745,8.89E-05,299,299,299 +268,IAR_LU_modified_mix,Liver,50,0.11,0.1,0.0015,0.123094957,0.086999016,0.001481294,0.35,0.35,0.35,0,0,0,0.018455659,0.017850533,4.85E-05,299,299,299 +269,IAR_LU_modified_mix,Liver,100,0.11,0.1,0.0015,0.113750268,0.092524083,0.001492491,0.35,0.35,0.35,0,0,0,0.009702994,0.010461345,2.39E-05,299,299,299 +270,IAR_LU_modified_mix,Liver,200,0.11,0.1,0.0015,0.111149886,0.095790054,0.001496602,0.35,0.35,0.35,0,0,0,0.005229869,0.005808767,1.19E-05,299,299,299 +271,IAR_LU_modified_mix,Myocardium LV,10,0.15,0.08,0.0024,0.291461531,0.06337411,0.002073548,0.35,0.35,0.35,0,0,0,0.127600865,0.03342574,0.000514838,299,299,299 +272,IAR_LU_modified_mix,Myocardium LV,30,0.15,0.08,0.0024,0.178238819,0.076415923,0.002345026,0.35,0.35,0.35,0,0,0,0.037182528,0.024327275,0.000153544,299,299,299 +273,IAR_LU_modified_mix,Myocardium LV,50,0.15,0.08,0.0024,0.160907615,0.079285372,0.002378232,0.35,0.35,0.35,0,0,0,0.020775703,0.018277161,8.80E-05,299,299,299 +274,IAR_LU_modified_mix,Myocardium LV,100,0.15,0.08,0.0024,0.152018374,0.080628062,0.002394546,0.35,0.35,0.35,0,0,0,0.010877123,0.011966734,4.44E-05,299,299,299 +275,IAR_LU_modified_mix,Myocardium LV,200,0.15,0.08,0.0024,0.150216575,0.080439513,0.002398536,0.35,0.35,0.35,0,0,0,0.005765294,0.006947921,2.26E-05,299,299,299 +276,IAR_LU_modified_mix,myocardium ra,10,0.07,0.07,0.0015,0.217381435,0.054601498,0.001330884,0.35,0.35,0.35,0,0,0,0.107017813,0.033504387,0.000296878,299,299,299 +277,IAR_LU_modified_mix,myocardium ra,30,0.07,0.07,0.0015,0.114067575,0.060985985,0.001446651,0.35,0.35,0.35,0,0,0,0.040808188,0.032104126,9.70E-05,299,299,299 +278,IAR_LU_modified_mix,myocardium ra,50,0.07,0.07,0.0015,0.09065019,0.066402557,0.001475263,0.35,0.35,0.35,0,0,0,0.022995129,0.026747369,5.63E-05,299,299,299 +279,IAR_LU_modified_mix,myocardium ra,100,0.07,0.07,0.0015,0.076308143,0.070311823,0.001492231,0.35,0.35,0.35,0,0,0,0.01097264,0.020399942,2.73E-05,299,299,299 +280,IAR_LU_modified_mix,myocardium ra,200,0.07,0.07,0.0015,0.07119761,0.070948319,0.001498179,0.35,0.35,0.35,0,0,0,0.005499449,0.01239686,1.33E-05,299,299,299 +281,IAR_LU_modified_mix,myocardium RV,10,0.15,0.08,0.0024,0.290343842,0.063156542,0.002079168,0.35,0.35,0.35,0,0,0,0.123193212,0.033541987,0.000502527,299,299,299 +282,IAR_LU_modified_mix,myocardium RV,30,0.15,0.08,0.0024,0.17848393,0.076183088,0.002344261,0.35,0.35,0.35,0,0,0,0.037003453,0.024499514,0.000155052,299,299,299 +283,IAR_LU_modified_mix,myocardium RV,50,0.15,0.08,0.0024,0.160935832,0.079243465,0.002378149,0.35,0.35,0.35,0,0,0,0.020811916,0.018271547,8.79E-05,299,299,299 +284,IAR_LU_modified_mix,myocardium RV,100,0.15,0.08,0.0024,0.152022055,0.080619221,0.002394526,0.35,0.35,0.35,0,0,0,0.010880877,0.01197127,4.44E-05,299,299,299 +285,IAR_LU_modified_mix,myocardium RV,200,0.15,0.08,0.0024,0.150196055,0.080475848,0.002398612,0.35,0.35,0.35,0,0,0,0.005723963,0.006909242,2.26E-05,299,299,299 +286,IAR_LU_modified_mix,pancreas,10,0.15,0.01,0.0013,0.252480197,0.042321361,0.001228359,0.35,0.35,0.35,0,0,0,0.126759368,0.032789127,0.000344745,299,299,299 +287,IAR_LU_modified_mix,pancreas,30,0.15,0.01,0.0013,0.18315252,0.021870382,0.001278366,0.35,0.35,0.35,0,0,0,0.071009081,0.02209634,0.00014983,299,299,299 +288,IAR_LU_modified_mix,pancreas,50,0.15,0.01,0.0013,0.169795981,0.014403054,0.00128504,0.35,0.35,0.35,0,0,0,0.050063293,0.010753154,0.000100029,299,299,299 +289,IAR_LU_modified_mix,pancreas,100,0.15,0.01,0.0013,0.156711248,0.011269338,0.001295759,0.35,0.35,0.35,0,0,0,0.027629876,0.002813866,5.38E-05,299,299,299 +290,IAR_LU_modified_mix,pancreas,200,0.15,0.01,0.0013,0.151391515,0.010446564,0.001299811,0.35,0.35,0.35,0,0,0,0.014141099,0.001306694,2.74E-05,299,299,299 +291,IAR_LU_modified_mix,pericardium,10,0.07,0.01,0.003,0.258557302,0.047106818,0.002487954,0.35,0.35,0.35,0,0,0,0.214903019,0.033510828,0.000830838,299,299,299 +292,IAR_LU_modified_mix,pericardium,30,0.07,0.01,0.003,0.149947239,0.036923758,0.002845034,0.35,0.35,0.35,0,0,0,0.158441859,0.030830048,0.000396003,299,299,299 +293,IAR_LU_modified_mix,pericardium,50,0.07,0.01,0.003,0.135294848,0.033060056,0.002890363,0.35,0.35,0.35,0,0,0,0.137727374,0.031802391,0.000292283,299,299,299 +294,IAR_LU_modified_mix,pericardium,100,0.07,0.01,0.003,0.119582922,0.021466818,0.00292934,0.35,0.35,0.35,0,0,0,0.106494154,0.024864291,0.000191539,299,299,299 +295,IAR_LU_modified_mix,pericardium,200,0.07,0.01,0.003,0.099798112,0.012912109,0.002958068,0.35,0.35,0.35,0,0,0,0.071439988,0.011033722,0.000118667,299,299,299 +296,IAR_LU_modified_mix,right kidney medulla,10,0.158,0.019,0.00209,0.287388355,0.046990232,0.0018749,0.35,0.35,0.35,0,0,0,0.154088233,0.032941051,0.000549302,299,299,299 +297,IAR_LU_modified_mix,right kidney medulla,30,0.158,0.019,0.00209,0.195385185,0.029642672,0.002042645,0.35,0.35,0.35,0,0,0,0.071080737,0.021685682,0.000203684,299,299,299 +298,IAR_LU_modified_mix,right kidney medulla,50,0.158,0.019,0.00209,0.174199345,0.024283387,0.002072714,0.35,0.35,0.35,0,0,0,0.041529718,0.013037896,0.000121526,299,299,299 +299,IAR_LU_modified_mix,right kidney medulla,100,0.158,0.019,0.00209,0.163223785,0.020315874,0.002084306,0.35,0.35,0.35,0,0,0,0.021039576,0.003904718,6.11E-05,299,299,299 +300,IAR_LU_modified_mix,right kidney medulla,200,0.158,0.019,0.00209,0.158956494,0.019425636,0.002088993,0.35,0.35,0.35,0,0,0,0.011042297,0.001941881,3.14E-05,299,299,299 +301,IAR_LU_modified_mix,Right kydney cortex,10,0.097,0.02,0.00212,0.250888349,0.047371403,0.001875637,0.35,0.35,0.35,0,0,0,0.152600475,0.032884472,0.000509347,299,299,299 +302,IAR_LU_modified_mix,Right kydney cortex,30,0.097,0.02,0.00212,0.152394367,0.033834225,0.002041764,0.35,0.35,0.35,0,0,0,0.076460293,0.027206016,0.000194417,299,299,299 +303,IAR_LU_modified_mix,Right kydney cortex,50,0.097,0.02,0.00212,0.125722136,0.028841893,0.002080458,0.35,0.35,0.35,0,0,0,0.047941096,0.022098772,0.000120008,299,299,299 +304,IAR_LU_modified_mix,Right kydney cortex,100,0.097,0.02,0.00212,0.109258251,0.021088834,0.002100269,0.35,0.35,0.35,0,0,0,0.020115657,0.009065525,5.50E-05,299,299,299 +305,IAR_LU_modified_mix,Right kydney cortex,200,0.097,0.02,0.00212,0.102591352,0.01951949,0.002109078,0.35,0.35,0.35,0,0,0,0.009874238,0.002906333,2.72E-05,299,299,299 +306,IAR_LU_modified_mix,small intestine,10,0.69,0.029,0.00131,0.701245974,0.037653311,0.001234943,0.35,0.35,0.35,0,0,0,0.083808798,0.014220898,0.000699569,299,299,299 +307,IAR_LU_modified_mix,small intestine,30,0.69,0.029,0.00131,0.689282253,0.030567952,0.001325823,0.35,0.35,0.35,0,0,0,0.034312035,0.003873819,0.000274505,299,299,299 +308,IAR_LU_modified_mix,small intestine,50,0.69,0.029,0.00131,0.689064699,0.029614147,0.001316647,0.35,0.35,0.35,0,0,0,0.021104638,0.002315034,0.000165568,299,299,299 +309,IAR_LU_modified_mix,small intestine,100,0.69,0.029,0.00131,0.689240856,0.029166955,0.001312365,0.35,0.35,0.35,0,0,0,0.010592721,0.00118429,8.30E-05,299,299,299 +310,IAR_LU_modified_mix,small intestine,200,0.69,0.029,0.00131,0.689565538,0.029065431,0.001311213,0.35,0.35,0.35,0,0,0,0.005318597,0.000596168,4.16E-05,299,299,299 +311,IAR_LU_modified_mix,spleen,10,0.2,0.03,0.0013,0.307436964,0.047114743,0.001181115,0.35,0.35,0.35,0,0,0,0.098990291,0.029448219,0.000309748,299,299,299 +312,IAR_LU_modified_mix,spleen,30,0.2,0.03,0.0013,0.226765953,0.035745682,0.001274169,0.35,0.35,0.35,0,0,0,0.038338503,0.01667343,0.000105849,299,299,299 +313,IAR_LU_modified_mix,spleen,50,0.2,0.03,0.0013,0.212801364,0.032218085,0.001287327,0.35,0.35,0.35,0,0,0,0.023950932,0.00843275,6.46E-05,299,299,299 +314,IAR_LU_modified_mix,spleen,100,0.2,0.03,0.0013,0.20393232,0.030585515,0.001295591,0.35,0.35,0.35,0,0,0,0.012419155,0.003777132,3.24E-05,299,299,299 +315,IAR_LU_modified_mix,spleen,200,0.2,0.03,0.0013,0.200647029,0.030153375,0.001298839,0.35,0.35,0.35,0,0,0,0.006475836,0.001864115,1.62E-05,299,299,299 +316,IAR_LU_modified_mix,st wall,10,0.3,0.012,0.0015,0.367945972,0.032881553,0.001434967,0.35,0.35,0.35,0,0,0,0.147807528,0.027194488,0.000506058,299,299,299 +317,IAR_LU_modified_mix,st wall,30,0.3,0.012,0.0015,0.308728622,0.016604929,0.001511115,0.35,0.35,0.35,0,0,0,0.072613174,0.007994054,0.000207407,299,299,299 +318,IAR_LU_modified_mix,st wall,50,0.3,0.012,0.0015,0.300780288,0.014131458,0.001513982,0.35,0.35,0.35,0,0,0,0.045953191,0.003478269,0.000127429,299,299,299 +319,IAR_LU_modified_mix,st wall,100,0.3,0.012,0.0015,0.298614415,0.012747355,0.001508151,0.35,0.35,0.35,0,0,0,0.024645578,0.001586662,6.63E-05,299,299,299 +320,IAR_LU_modified_mix,st wall,200,0.3,0.012,0.0015,0.298468884,0.012252636,0.001504399,0.35,0.35,0.35,0,0,0,0.012803407,0.000749712,3.39E-05,299,299,299 +321,IAR_LU_modified_mix,trans lower intestine,10,0.69,0.029,0.00131,0.701172083,0.037664336,0.001235321,0.35,0.35,0.35,0,0,0,0.083827604,0.014237105,0.000699686,299,299,299 +322,IAR_LU_modified_mix,trans lower intestine,30,0.69,0.029,0.00131,0.689289919,0.030566993,0.001325747,0.35,0.35,0.35,0,0,0,0.034310373,0.003875815,0.000274566,299,299,299 +323,IAR_LU_modified_mix,trans lower intestine,50,0.69,0.029,0.00131,0.689070278,0.029613727,0.001316615,0.35,0.35,0.35,0,0,0,0.021124627,0.002316277,0.000165675,299,299,299 +324,IAR_LU_modified_mix,trans lower intestine,100,0.69,0.029,0.00131,0.689264337,0.029164491,0.001312209,0.35,0.35,0.35,0,0,0,0.010606117,0.001186048,8.31E-05,299,299,299 +325,IAR_LU_modified_mix,trans lower intestine,200,0.69,0.029,0.00131,0.689571593,0.029064733,0.001311168,0.35,0.35,0.35,0,0,0,0.005313539,0.000595353,4.16E-05,299,299,299 +326,IAR_LU_modified_mix,Vein,10,1,0.1,0.003,0.933576727,0.098172327,9.67E-05,0.35,0.35,0.35,0,0,0,0.021526133,0.0048308,0.000272807,299,299,299 +327,IAR_LU_modified_mix,Vein,30,1,0.1,0.003,0.978665787,0.098928707,0.000104687,0.35,0.35,0.35,0,0,0,0.007168556,0.002551674,0.000389305,299,299,299 +328,IAR_LU_modified_mix,Vein,50,1,0.1,0.003,0.987513702,0.099331329,0.000145994,0.35,0.35,0.35,0,0,0,0.0042727,0.001592503,0.000547273,299,299,299 +329,IAR_LU_modified_mix,Vein,100,1,0.1,0.003,0.993791753,0.099630691,0.000663419,0.35,0.35,0.35,0,0,0,0.002251112,0.000852347,0.000790402,299,299,299 +330,IAR_LU_modified_mix,Vein,200,1,0.1,0.003,0.996846827,0.099813302,0.000912981,0.35,0.35,0.35,0,0,0,0.001236704,0.000412864,0.000874297,299,299,299 +331,IAR_LU_modified_topopro,Artery,10,1,0.1,0.003,0.920356474,0.125272817,0.000181721,0.45,0.45,0.45,0.45,0.45,0.45,0.022466088,0.02443358,0.000580254,299,299,299 +332,IAR_LU_modified_topopro,Artery,30,1,0.1,0.003,0.974303995,0.106099273,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489592,0.008295476,0.000678898,299,299,299 +333,IAR_LU_modified_topopro,Artery,50,1,0.1,0.003,0.984941577,0.103360684,0.00015591,0.45,0.45,0.45,0.45,0.45,0.45,0.004475764,0.004954989,0.00064424,299,299,299 +334,IAR_LU_modified_topopro,Artery,100,1,0.1,0.003,0.992841729,0.101349324,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.002215293,0.002483923,0.000596162,299,299,299 +335,IAR_LU_modified_topopro,Artery,200,1,0.1,0.003,0.996733418,0.100300501,0.000119816,0.45,0.45,0.45,0.45,0.45,0.45,0.001171457,0.001008831,0.000632412,299,299,299 +336,IAR_LU_modified_topopro,asc lower intestine,10,0.69,0.029,0.00131,0.693578781,0.041535553,0.001281033,0.45,0.45,0.45,0.45,0.45,0.45,0.097050953,0.023682344,0.000819227,299,299,299 +337,IAR_LU_modified_topopro,asc lower intestine,30,0.69,0.029,0.00131,0.687810582,0.030753615,0.00133829,0.45,0.45,0.45,0.45,0.45,0.45,0.035314414,0.004359176,0.000286311,299,299,299 +338,IAR_LU_modified_topopro,asc lower intestine,50,0.69,0.029,0.00131,0.688721295,0.029625729,0.001318938,0.45,0.45,0.45,0.45,0.45,0.45,0.021246508,0.002490489,0.000169271,299,299,299 +339,IAR_LU_modified_topopro,asc lower intestine,100,0.69,0.029,0.00131,0.689845828,0.029089479,0.001307502,0.45,0.45,0.45,0.45,0.45,0.45,0.010719514,0.00127256,8.48E-05,299,299,299 +340,IAR_LU_modified_topopro,asc lower intestine,200,0.69,0.029,0.00131,0.68982594,0.029014212,0.001308477,0.45,0.45,0.45,0.45,0.45,0.45,0.005557503,0.000601295,4.25E-05,299,299,299 +341,IAR_LU_modified_topopro,Blood RA,10,1,0.1,0.003,0.920356474,0.125272817,0.000181721,0.45,0.45,0.45,0.45,0.45,0.45,0.022466088,0.02443358,0.000580254,299,299,299 +342,IAR_LU_modified_topopro,Blood RA,30,1,0.1,0.003,0.974303995,0.106099273,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489592,0.008295476,0.000678898,299,299,299 +343,IAR_LU_modified_topopro,Blood RA,50,1,0.1,0.003,0.984941577,0.103360684,0.00015591,0.45,0.45,0.45,0.45,0.45,0.45,0.004475764,0.004954989,0.00064424,299,299,299 +344,IAR_LU_modified_topopro,Blood RA,100,1,0.1,0.003,0.992841729,0.101349324,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.002215293,0.002483923,0.000596162,299,299,299 +345,IAR_LU_modified_topopro,Blood RA,200,1,0.1,0.003,0.996733418,0.100300501,0.000119816,0.45,0.45,0.45,0.45,0.45,0.45,0.001171457,0.001008831,0.000632412,299,299,299 +346,IAR_LU_modified_topopro,Blood RV,10,1,0.1,0.003,0.920296651,0.125293034,0.000183447,0.45,0.45,0.45,0.45,0.45,0.45,0.022680633,0.024433347,0.000584107,299,299,299 +347,IAR_LU_modified_topopro,Blood RV,30,1,0.1,0.003,0.974303991,0.106099274,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489578,0.008295477,0.000678897,299,299,299 +348,IAR_LU_modified_topopro,Blood RV,50,1,0.1,0.003,0.984941579,0.103360682,0.00015591,0.45,0.45,0.45,0.45,0.45,0.45,0.004475766,0.004954987,0.000644238,299,299,299 +349,IAR_LU_modified_topopro,Blood RV,100,1,0.1,0.003,0.992841727,0.101349325,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.00221529,0.002483923,0.000596162,299,299,299 +350,IAR_LU_modified_topopro,Blood RV,200,1,0.1,0.003,0.996733416,0.100300501,0.000119817,0.45,0.45,0.45,0.45,0.45,0.45,0.001171454,0.001008832,0.000632414,299,299,299 +351,IAR_LU_modified_topopro,desc lower intestine,10,0.69,0.029,0.00131,0.693532553,0.041561205,0.001285696,0.45,0.45,0.45,0.45,0.45,0.45,0.09708272,0.023763889,0.000822922,299,299,299 +352,IAR_LU_modified_topopro,desc lower intestine,30,0.69,0.029,0.00131,0.687529033,0.030786425,0.00133992,0.45,0.45,0.45,0.45,0.45,0.45,0.035340761,0.0043436,0.000285576,299,299,299 +353,IAR_LU_modified_topopro,desc lower intestine,50,0.69,0.029,0.00131,0.688938061,0.029600249,0.00131727,0.45,0.45,0.45,0.45,0.45,0.45,0.021228425,0.002473668,0.000167934,299,299,299 +354,IAR_LU_modified_topopro,desc lower intestine,100,0.69,0.029,0.00131,0.689803781,0.029094023,0.001307418,0.45,0.45,0.45,0.45,0.45,0.45,0.011012001,0.001270889,8.46E-05,299,299,299 +355,IAR_LU_modified_topopro,desc lower intestine,200,0.69,0.029,0.00131,0.68978423,0.029018962,0.001308685,0.45,0.45,0.45,0.45,0.45,0.45,0.005536395,0.000608258,4.23E-05,299,299,299 +356,IAR_LU_modified_topopro,esophagus,10,0.32,0.03,0.00167,0.398926937,0.058871325,0.001543549,0.45,0.45,0.45,0.45,0.45,0.45,0.124354467,0.0476507,0.000520429,299,299,299 +357,IAR_LU_modified_topopro,esophagus,30,0.32,0.03,0.00167,0.330953766,0.036394693,0.001674611,0.45,0.45,0.45,0.45,0.45,0.45,0.039954883,0.01568087,0.00016198,299,299,299 +358,IAR_LU_modified_topopro,esophagus,50,0.32,0.03,0.00167,0.327397496,0.031535538,0.001664105,0.45,0.45,0.45,0.45,0.45,0.45,0.025489433,0.007174534,9.87E-05,299,299,299 +359,IAR_LU_modified_topopro,esophagus,100,0.32,0.03,0.00167,0.322267039,0.030140129,0.001666344,0.45,0.45,0.45,0.45,0.45,0.45,0.013683476,0.002464606,4.89E-05,299,299,299 +360,IAR_LU_modified_topopro,esophagus,200,0.32,0.03,0.00167,0.320331698,0.030025203,0.001668478,0.45,0.45,0.45,0.45,0.45,0.45,0.00704809,0.001220329,2.41E-05,299,299,299 +361,IAR_LU_modified_topopro,esophagus cont,10,0.32,0.03,0.00167,0.398926937,0.058871325,0.001543549,0.45,0.45,0.45,0.45,0.45,0.45,0.124354467,0.0476507,0.000520429,299,299,299 +362,IAR_LU_modified_topopro,esophagus cont,30,0.32,0.03,0.00167,0.330953766,0.036394693,0.001674611,0.45,0.45,0.45,0.45,0.45,0.45,0.039954883,0.01568087,0.00016198,299,299,299 +363,IAR_LU_modified_topopro,esophagus cont,50,0.32,0.03,0.00167,0.327397496,0.031535538,0.001664105,0.45,0.45,0.45,0.45,0.45,0.45,0.025489433,0.007174534,9.87E-05,299,299,299 +364,IAR_LU_modified_topopro,esophagus cont,100,0.32,0.03,0.00167,0.322267039,0.030140129,0.001666344,0.45,0.45,0.45,0.45,0.45,0.45,0.013683476,0.002464606,4.89E-05,299,299,299 +365,IAR_LU_modified_topopro,esophagus cont,200,0.32,0.03,0.00167,0.320331698,0.030025203,0.001668478,0.45,0.45,0.45,0.45,0.45,0.45,0.00704809,0.001220329,2.41E-05,299,299,299 +366,IAR_LU_modified_topopro,Left kidney cortex,10,0.097,0.02,0.00212,0.27587976,0.064262359,0.001817507,0.45,0.45,0.45,0.45,0.45,0.45,0.185636097,0.061957761,0.000603294,299,299,299 +367,IAR_LU_modified_topopro,Left kidney cortex,30,0.097,0.02,0.00212,0.159436749,0.046934811,0.002032889,0.45,0.45,0.45,0.45,0.45,0.45,0.100142398,0.048383604,0.000246305,299,299,299 +368,IAR_LU_modified_topopro,Left kidney cortex,50,0.097,0.02,0.00212,0.125434307,0.036549497,0.002079999,0.45,0.45,0.45,0.45,0.45,0.45,0.065454085,0.034695747,0.000143495,299,299,299 +369,IAR_LU_modified_topopro,Left kidney cortex,100,0.097,0.02,0.00212,0.105310502,0.02413223,0.002110132,0.45,0.45,0.45,0.45,0.45,0.45,0.023127834,0.013332796,6.11E-05,299,299,299 +370,IAR_LU_modified_topopro,Left kidney cortex,200,0.097,0.02,0.00212,0.100113058,0.020432179,0.002116371,0.45,0.45,0.45,0.45,0.45,0.45,0.011432184,0.003678805,2.88E-05,299,299,299 +371,IAR_LU_modified_topopro,left kidney medulla,10,0.158,0.019,0.00209,0.318917416,0.062109562,0.0017886,0.45,0.45,0.45,0.45,0.45,0.45,0.189533101,0.060537576,0.00066041,299,299,299 +372,IAR_LU_modified_topopro,left kidney medulla,30,0.158,0.019,0.00209,0.190749446,0.037247733,0.00205053,0.45,0.45,0.45,0.45,0.45,0.45,0.080803145,0.034913339,0.000222454,299,299,299 +373,IAR_LU_modified_topopro,left kidney medulla,50,0.158,0.019,0.00209,0.169372881,0.0278858,0.002083263,0.45,0.45,0.45,0.45,0.45,0.45,0.043367093,0.021117736,0.000122939,299,299,299 +374,IAR_LU_modified_topopro,left kidney medulla,100,0.158,0.019,0.00209,0.162374703,0.020780971,0.002089491,0.45,0.45,0.45,0.45,0.45,0.45,0.023038331,0.005620651,6.52E-05,299,299,299 +375,IAR_LU_modified_topopro,left kidney medulla,200,0.158,0.019,0.00209,0.159988752,0.019168023,0.002087906,0.45,0.45,0.45,0.45,0.45,0.45,0.011800157,0.002125068,3.20E-05,299,299,299 +376,IAR_LU_modified_topopro,Liver,10,0.11,0.1,0.0015,0.255827144,0.095794933,0.001300926,0.45,0.45,0.45,0.45,0.45,0.45,0.133644074,0.068438659,0.000379477,299,299,299 +377,IAR_LU_modified_topopro,Liver,30,0.11,0.1,0.0015,0.133802596,0.121405497,0.001472529,0.45,0.45,0.45,0.45,0.45,0.45,0.032331379,0.050451185,8.92E-05,299,299,299 +378,IAR_LU_modified_topopro,Liver,50,0.11,0.1,0.0015,0.118729928,0.117739469,0.001488815,0.45,0.45,0.45,0.45,0.45,0.45,0.016741169,0.042633364,4.74E-05,299,299,299 +379,IAR_LU_modified_topopro,Liver,100,0.11,0.1,0.0015,0.112266607,0.105433216,0.001494199,0.45,0.45,0.45,0.45,0.45,0.45,0.009021084,0.030662316,2.43E-05,299,299,299 +380,IAR_LU_modified_topopro,Liver,200,0.11,0.1,0.0015,0.110995126,0.097392444,0.001496239,0.45,0.45,0.45,0.45,0.45,0.45,0.005185904,0.010618342,1.21E-05,299,299,299 +381,IAR_LU_modified_topopro,Myocardium LV,10,0.15,0.08,0.0024,0.306954853,0.094300999,0.002027843,0.45,0.45,0.45,0.45,0.45,0.45,0.165573397,0.065781153,0.000643267,299,299,299 +382,IAR_LU_modified_topopro,Myocardium LV,30,0.15,0.08,0.0024,0.16975749,0.104888078,0.002366359,0.45,0.45,0.45,0.45,0.45,0.45,0.038500101,0.046747344,0.000156089,299,299,299 +383,IAR_LU_modified_topopro,Myocardium LV,50,0.15,0.08,0.0024,0.157582473,0.090929385,0.002387071,0.45,0.45,0.45,0.45,0.45,0.45,0.019557933,0.033962814,8.63E-05,299,299,299 +384,IAR_LU_modified_topopro,Myocardium LV,100,0.15,0.08,0.0024,0.151716774,0.081614418,0.002396175,0.45,0.45,0.45,0.45,0.45,0.45,0.01048639,0.015707081,4.33E-05,299,299,299 +385,IAR_LU_modified_topopro,Myocardium LV,200,0.15,0.08,0.0024,0.150182177,0.080486066,0.002398749,0.45,0.45,0.45,0.45,0.45,0.45,0.005507326,0.006944043,2.19E-05,299,299,299 +386,IAR_LU_modified_topopro,myocardium ra,10,0.07,0.07,0.0015,0.233345798,0.075820623,0.001301875,0.45,0.45,0.45,0.45,0.45,0.45,0.133957644,0.066388572,0.00036365,299,299,299 +387,IAR_LU_modified_topopro,myocardium ra,30,0.07,0.07,0.0015,0.108856127,0.096445667,0.001456733,0.45,0.45,0.45,0.45,0.45,0.45,0.044015737,0.059609039,0.000103224,299,299,299 +388,IAR_LU_modified_topopro,myocardium ra,50,0.07,0.07,0.0015,0.085488056,0.097314494,0.001482815,0.45,0.45,0.45,0.45,0.45,0.45,0.020737383,0.049799436,5.43E-05,299,299,299 +389,IAR_LU_modified_topopro,myocardium ra,100,0.07,0.07,0.0015,0.07453746,0.080703622,0.001494784,0.45,0.45,0.45,0.45,0.45,0.45,0.009975441,0.031511764,2.58E-05,299,299,299 +390,IAR_LU_modified_topopro,myocardium ra,200,0.07,0.07,0.0015,0.070924223,0.071568491,0.001498093,0.45,0.45,0.45,0.45,0.45,0.45,0.005399807,0.013399028,1.28E-05,299,299,299 +391,IAR_LU_modified_topopro,myocardium RV,10,0.15,0.08,0.0024,0.306954853,0.094300999,0.002027843,0.45,0.45,0.45,0.45,0.45,0.45,0.165573397,0.065781153,0.000643267,299,299,299 +392,IAR_LU_modified_topopro,myocardium RV,30,0.15,0.08,0.0024,0.16975749,0.104888078,0.002366359,0.45,0.45,0.45,0.45,0.45,0.45,0.038500101,0.046747344,0.000156089,299,299,299 +393,IAR_LU_modified_topopro,myocardium RV,50,0.15,0.08,0.0024,0.157582473,0.090929385,0.002387071,0.45,0.45,0.45,0.45,0.45,0.45,0.019557933,0.033962814,8.63E-05,299,299,299 +394,IAR_LU_modified_topopro,myocardium RV,100,0.15,0.08,0.0024,0.151716774,0.081614418,0.002396175,0.45,0.45,0.45,0.45,0.45,0.45,0.01048639,0.015707081,4.33E-05,299,299,299 +395,IAR_LU_modified_topopro,myocardium RV,200,0.15,0.08,0.0024,0.150182177,0.080486066,0.002398749,0.45,0.45,0.45,0.45,0.45,0.45,0.005507326,0.006944043,2.19E-05,299,299,299 +396,IAR_LU_modified_topopro,pancreas,10,0.15,0.01,0.0013,0.280147619,0.055096347,0.001165546,0.45,0.45,0.45,0.45,0.45,0.45,0.154200672,0.060115085,0.000411333,299,299,299 +397,IAR_LU_modified_topopro,pancreas,30,0.15,0.01,0.0013,0.180292443,0.028367022,0.001282207,0.45,0.45,0.45,0.45,0.45,0.45,0.075818352,0.037302595,0.00015489,299,299,299 +398,IAR_LU_modified_topopro,pancreas,50,0.15,0.01,0.0013,0.160883491,0.017284914,0.001300371,0.45,0.45,0.45,0.45,0.45,0.45,0.052081777,0.015260762,0.000103316,299,299,299 +399,IAR_LU_modified_topopro,pancreas,100,0.15,0.01,0.0013,0.154976949,0.012006927,0.001299773,0.45,0.45,0.45,0.45,0.45,0.45,0.033464673,0.004463446,6.41E-05,299,299,299 +400,IAR_LU_modified_topopro,pancreas,200,0.15,0.01,0.0013,0.155286959,0.010142889,0.001292707,0.45,0.45,0.45,0.45,0.45,0.45,0.017233308,0.001534397,3.24E-05,299,299,299 +401,IAR_LU_modified_topopro,pericardium,10,0.07,0.01,0.003,0.304246596,0.063049116,0.002354827,0.45,0.45,0.45,0.45,0.45,0.45,0.260685325,0.063717899,0.000993598,299,299,299 +402,IAR_LU_modified_topopro,pericardium,30,0.07,0.01,0.003,0.176641494,0.052027934,0.002834865,0.45,0.45,0.45,0.45,0.45,0.45,0.207967296,0.059688818,0.000571522,299,299,299 +403,IAR_LU_modified_topopro,pericardium,50,0.07,0.01,0.003,0.14622738,0.042647288,0.002913299,0.45,0.45,0.45,0.45,0.45,0.45,0.159901073,0.052223285,0.00036958,299,299,299 +404,IAR_LU_modified_topopro,pericardium,100,0.07,0.01,0.003,0.137535248,0.027469402,0.002919319,0.45,0.45,0.45,0.45,0.45,0.45,0.131305938,0.040584789,0.00023699,299,299,299 +405,IAR_LU_modified_topopro,pericardium,200,0.07,0.01,0.003,0.106876601,0.014182186,0.002951759,0.45,0.45,0.45,0.45,0.45,0.45,0.086637003,0.015468327,0.000137465,299,299,299 +406,IAR_LU_modified_topopro,right kidney medulla,10,0.158,0.019,0.00209,0.318917416,0.062109562,0.0017886,0.45,0.45,0.45,0.45,0.45,0.45,0.189533101,0.060537576,0.00066041,299,299,299 +407,IAR_LU_modified_topopro,right kidney medulla,30,0.158,0.019,0.00209,0.190749446,0.037247733,0.00205053,0.45,0.45,0.45,0.45,0.45,0.45,0.080803145,0.034913339,0.000222454,299,299,299 +408,IAR_LU_modified_topopro,right kidney medulla,50,0.158,0.019,0.00209,0.169372881,0.0278858,0.002083263,0.45,0.45,0.45,0.45,0.45,0.45,0.043367093,0.021117736,0.000122939,299,299,299 +409,IAR_LU_modified_topopro,right kidney medulla,100,0.158,0.019,0.00209,0.162374703,0.020780971,0.002089491,0.45,0.45,0.45,0.45,0.45,0.45,0.023038331,0.005620651,6.52E-05,299,299,299 +410,IAR_LU_modified_topopro,right kidney medulla,200,0.158,0.019,0.00209,0.159988752,0.019168023,0.002087906,0.45,0.45,0.45,0.45,0.45,0.45,0.011800157,0.002125068,3.20E-05,299,299,299 +411,IAR_LU_modified_topopro,Right kydney cortex,10,0.097,0.02,0.00212,0.27587976,0.064262359,0.001817507,0.45,0.45,0.45,0.45,0.45,0.45,0.185636097,0.061957761,0.000603294,299,299,299 +412,IAR_LU_modified_topopro,Right kydney cortex,30,0.097,0.02,0.00212,0.159436749,0.046934811,0.002032889,0.45,0.45,0.45,0.45,0.45,0.45,0.100142398,0.048383604,0.000246305,299,299,299 +413,IAR_LU_modified_topopro,Right kydney cortex,50,0.097,0.02,0.00212,0.125434307,0.036549497,0.002079999,0.45,0.45,0.45,0.45,0.45,0.45,0.065454085,0.034695747,0.000143495,299,299,299 +414,IAR_LU_modified_topopro,Right kydney cortex,100,0.097,0.02,0.00212,0.105310502,0.02413223,0.002110132,0.45,0.45,0.45,0.45,0.45,0.45,0.023127834,0.013332796,6.11E-05,299,299,299 +415,IAR_LU_modified_topopro,Right kydney cortex,200,0.097,0.02,0.00212,0.100113058,0.020432179,0.002116371,0.45,0.45,0.45,0.45,0.45,0.45,0.011432184,0.003678805,2.88E-05,299,299,299 +416,IAR_LU_modified_topopro,small intestine,10,0.69,0.029,0.00131,0.694262245,0.041376032,0.001275757,0.45,0.45,0.45,0.45,0.45,0.45,0.096783714,0.023361273,0.000821652,299,299,299 +417,IAR_LU_modified_topopro,small intestine,30,0.69,0.029,0.00131,0.687722331,0.030758001,0.001340218,0.45,0.45,0.45,0.45,0.45,0.45,0.03514261,0.004354692,0.000284059,299,299,299 +418,IAR_LU_modified_topopro,small intestine,50,0.69,0.029,0.00131,0.689084487,0.029571944,0.001316562,0.45,0.45,0.45,0.45,0.45,0.45,0.021479377,0.002475689,0.00016832,299,299,299 +419,IAR_LU_modified_topopro,small intestine,100,0.69,0.029,0.00131,0.689765613,0.029094033,0.001308083,0.45,0.45,0.45,0.45,0.45,0.45,0.010952332,0.00123762,8.53E-05,299,299,299 +420,IAR_LU_modified_topopro,small intestine,200,0.69,0.029,0.00131,0.689905499,0.029005644,0.001308244,0.45,0.45,0.45,0.45,0.45,0.45,0.005449729,0.000598862,4.18E-05,299,299,299 +421,IAR_LU_modified_topopro,spleen,10,0.2,0.03,0.0013,0.319868006,0.063392313,0.00114702,0.45,0.45,0.45,0.45,0.45,0.45,0.127028195,0.054216695,0.0003883,299,299,299 +422,IAR_LU_modified_topopro,spleen,30,0.2,0.03,0.0013,0.215360998,0.04426065,0.001303547,0.45,0.45,0.45,0.45,0.45,0.45,0.036562403,0.0261446,0.000105551,299,299,299 +423,IAR_LU_modified_topopro,spleen,50,0.2,0.03,0.0013,0.208856499,0.034937983,0.001299973,0.45,0.45,0.45,0.45,0.45,0.45,0.023243638,0.013486415,6.61E-05,299,299,299 +424,IAR_LU_modified_topopro,spleen,100,0.2,0.03,0.0013,0.204200673,0.03042392,0.001295775,0.45,0.45,0.45,0.45,0.45,0.45,0.012964711,0.004657265,3.36E-05,299,299,299 +425,IAR_LU_modified_topopro,spleen,200,0.2,0.03,0.0013,0.200822328,0.03005254,0.001298398,0.45,0.45,0.45,0.45,0.45,0.45,0.006530179,0.001865359,1.63E-05,299,299,299 +426,IAR_LU_modified_topopro,st wall,10,0.3,0.012,0.0015,0.398249536,0.041432759,0.001330846,0.45,0.45,0.45,0.45,0.45,0.45,0.179875567,0.048890092,0.000607087,299,299,299 +427,IAR_LU_modified_topopro,st wall,30,0.3,0.012,0.0015,0.304981866,0.019062815,0.001524064,0.45,0.45,0.45,0.45,0.45,0.45,0.086398506,0.015997839,0.000239114,299,299,299 +428,IAR_LU_modified_topopro,st wall,50,0.3,0.012,0.0015,0.303869758,0.014236952,0.001513996,0.45,0.45,0.45,0.45,0.45,0.45,0.056210278,0.004887887,0.000149801,299,299,299 +429,IAR_LU_modified_topopro,st wall,100,0.3,0.012,0.0015,0.305112115,0.012259288,0.001497606,0.45,0.45,0.45,0.45,0.45,0.45,0.02739339,0.001634827,7.14E-05,299,299,299 +430,IAR_LU_modified_topopro,st wall,200,0.3,0.012,0.0015,0.301896747,0.012019566,0.001498059,0.45,0.45,0.45,0.45,0.45,0.45,0.013977942,0.00070094,3.50E-05,299,299,299 +431,IAR_LU_modified_topopro,trans lower intestine,10,0.69,0.029,0.00131,0.693178885,0.041579168,0.001287706,0.45,0.45,0.45,0.45,0.45,0.45,0.096856303,0.023744998,0.000825061,299,299,299 +432,IAR_LU_modified_topopro,trans lower intestine,30,0.69,0.029,0.00131,0.687355419,0.030794597,0.001340838,0.45,0.45,0.45,0.45,0.45,0.45,0.034699975,0.004305909,0.000281486,299,299,299 +433,IAR_LU_modified_topopro,trans lower intestine,50,0.69,0.029,0.00131,0.688922163,0.02959112,0.001317947,0.45,0.45,0.45,0.45,0.45,0.45,0.021177767,0.002459108,0.000167888,299,299,299 +434,IAR_LU_modified_topopro,trans lower intestine,100,0.69,0.029,0.00131,0.689976252,0.029064378,0.00130713,0.45,0.45,0.45,0.45,0.45,0.45,0.011159661,0.001272301,8.61E-05,299,299,299 +435,IAR_LU_modified_topopro,trans lower intestine,200,0.69,0.029,0.00131,0.68988817,0.029001879,0.001308473,0.45,0.45,0.45,0.45,0.45,0.45,0.005465021,0.000593775,4.23E-05,299,299,299 +436,IAR_LU_modified_topopro,Vein,10,1,0.1,0.003,0.920340949,0.125267603,0.00018283,0.45,0.45,0.45,0.45,0.45,0.45,0.022594825,0.024445062,0.000583405,299,299,299 +437,IAR_LU_modified_topopro,Vein,30,1,0.1,0.003,0.974304008,0.106099271,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489631,0.008295476,0.000678898,299,299,299 +438,IAR_LU_modified_topopro,Vein,50,1,0.1,0.003,0.984941555,0.103360681,0.000155911,0.45,0.45,0.45,0.45,0.45,0.45,0.004475711,0.004954988,0.000644242,299,299,299 +439,IAR_LU_modified_topopro,Vein,100,1,0.1,0.003,0.992841726,0.101349324,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.002215288,0.002483923,0.000596162,299,299,299 +440,IAR_LU_modified_topopro,Vein,200,1,0.1,0.003,0.996733416,0.100300502,0.000119817,0.45,0.45,0.45,0.45,0.45,0.45,0.001171461,0.001008831,0.000632414,299,299,299 +441,IAR_LU_segmented_2step,Artery,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 +442,IAR_LU_segmented_2step,Artery,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 +443,IAR_LU_segmented_2step,Artery,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 +444,IAR_LU_segmented_2step,Artery,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 +445,IAR_LU_segmented_2step,Artery,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 +446,IAR_LU_segmented_2step,asc lower intestine,10,0.69,0.029,0.00131,0.690373036,0.032061085,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830765,0.014936399,0.001031075,299,299,299 +447,IAR_LU_segmented_2step,asc lower intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 +448,IAR_LU_segmented_2step,asc lower intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 +449,IAR_LU_segmented_2step,asc lower intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 +450,IAR_LU_segmented_2step,asc lower intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 +451,IAR_LU_segmented_2step,Blood RA,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 +452,IAR_LU_segmented_2step,Blood RA,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 +453,IAR_LU_segmented_2step,Blood RA,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 +454,IAR_LU_segmented_2step,Blood RA,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 +455,IAR_LU_segmented_2step,Blood RA,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 +456,IAR_LU_segmented_2step,Blood RV,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 +457,IAR_LU_segmented_2step,Blood RV,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 +458,IAR_LU_segmented_2step,Blood RV,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 +459,IAR_LU_segmented_2step,Blood RV,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 +460,IAR_LU_segmented_2step,Blood RV,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 +461,IAR_LU_segmented_2step,desc lower intestine,10,0.69,0.029,0.00131,0.690373037,0.032061085,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830764,0.014936399,0.001031075,299,299,299 +462,IAR_LU_segmented_2step,desc lower intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 +463,IAR_LU_segmented_2step,desc lower intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 +464,IAR_LU_segmented_2step,desc lower intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 +465,IAR_LU_segmented_2step,desc lower intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 +466,IAR_LU_segmented_2step,esophagus,10,0.32,0.03,0.00167,0.340586264,0.039526049,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.14439499,0.028936137,0.00069931,299,299,299 +467,IAR_LU_segmented_2step,esophagus,30,0.32,0.03,0.00167,0.321987927,0.031922209,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.05065662,0.01113205,0.000225181,299,299,299 +468,IAR_LU_segmented_2step,esophagus,50,0.32,0.03,0.00167,0.320433793,0.030648429,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400653,0.005936038,0.000134201,299,299,299 +469,IAR_LU_segmented_2step,esophagus,100,0.32,0.03,0.00167,0.31984888,0.03018635,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161607,0.002893604,6.69E-05,299,299,299 +470,IAR_LU_segmented_2step,esophagus,200,0.32,0.03,0.00167,0.319780244,0.030069705,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572228,0.001441314,3.34E-05,299,299,299 +471,IAR_LU_segmented_2step,esophagus cont,10,0.32,0.03,0.00167,0.340586264,0.039526049,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.14439499,0.028936137,0.00069931,299,299,299 +472,IAR_LU_segmented_2step,esophagus cont,30,0.32,0.03,0.00167,0.321987927,0.031922209,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.05065662,0.01113205,0.000225181,299,299,299 +473,IAR_LU_segmented_2step,esophagus cont,50,0.32,0.03,0.00167,0.320433793,0.030648429,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400653,0.005936038,0.000134201,299,299,299 +474,IAR_LU_segmented_2step,esophagus cont,100,0.32,0.03,0.00167,0.31984888,0.03018635,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161607,0.002893604,6.69E-05,299,299,299 +475,IAR_LU_segmented_2step,esophagus cont,200,0.32,0.03,0.00167,0.319780244,0.030069705,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572228,0.001441314,3.34E-05,299,299,299 +476,IAR_LU_segmented_2step,Left kidney cortex,10,0.097,0.02,0.00212,0.170083391,0.036260778,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168104196,0.038392831,0.000693964,299,299,299 +477,IAR_LU_segmented_2step,Left kidney cortex,30,0.097,0.02,0.00212,0.11252675,0.032442252,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762921,0.029993935,0.000230469,299,299,299 +478,IAR_LU_segmented_2step,Left kidney cortex,50,0.097,0.02,0.00212,0.102943416,0.027674987,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.022352352,0.000137435,299,299,299 +479,IAR_LU_segmented_2step,Left kidney cortex,100,0.097,0.02,0.00212,0.097936584,0.02226186,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685511,0.009418943,6.85E-05,299,299,299 +480,IAR_LU_segmented_2step,Left kidney cortex,200,0.097,0.02,0.00212,0.096588828,0.020696624,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398461,0.003773564,3.42E-05,299,299,299 +481,IAR_LU_segmented_2step,left kidney medulla,10,0.158,0.019,0.00209,0.214897365,0.034932381,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176570101,0.035703866,0.000728386,299,299,299 +482,IAR_LU_segmented_2step,left kidney medulla,30,0.158,0.019,0.00209,0.165710994,0.027090671,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510059,0.022576895,0.000242647,299,299,299 +483,IAR_LU_segmented_2step,left kidney medulla,50,0.158,0.019,0.00209,0.15984036,0.022624308,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993407,0.012999531,0.000144591,299,299,299 +484,IAR_LU_segmented_2step,left kidney medulla,100,0.158,0.019,0.00209,0.157128036,0.019976564,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.022931211,0.004517731,7.21E-05,299,299,299 +485,IAR_LU_segmented_2step,left kidney medulla,200,0.158,0.019,0.00209,0.156502789,0.019446622,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554558,0.00215365,3.60E-05,299,299,299 +486,IAR_LU_segmented_2step,Liver,10,0.11,0.1,0.0015,0.14457757,0.060004164,0.001520848,0.45,0.45,0.45,0.45,0.45,0.45,0.123335226,0.041737282,0.000472993,299,299,299 +487,IAR_LU_segmented_2step,Liver,30,0.11,0.1,0.0015,0.112815079,0.07688233,0.001501547,0.45,0.45,0.45,0.45,0.45,0.45,0.04024199,0.031043987,0.000152138,299,299,299 +488,IAR_LU_segmented_2step,Liver,50,0.11,0.1,0.0015,0.109957638,0.084566304,0.001500177,0.45,0.45,0.45,0.45,0.45,0.45,0.021883617,0.022477885,9.10E-05,299,299,299 +489,IAR_LU_segmented_2step,Liver,100,0.11,0.1,0.0015,0.109449351,0.091662225,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.010208281,0.012494317,4.54E-05,299,299,299 +490,IAR_LU_segmented_2step,Liver,200,0.11,0.1,0.0015,0.109652146,0.095603591,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.005040249,0.006734131,2.27E-05,299,299,299 +491,IAR_LU_segmented_2step,Myocardium LV,10,0.15,0.08,0.0024,0.216176462,0.058774506,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.171881508,0.040142606,0.000834069,299,299,299 +492,IAR_LU_segmented_2step,Myocardium LV,30,0.15,0.08,0.0024,0.157092625,0.073542287,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239387,0.029066238,0.000296358,299,299,299 +493,IAR_LU_segmented_2step,Myocardium LV,50,0.15,0.08,0.0024,0.152059689,0.077447156,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816435,0.022258668,0.000176238,299,299,299 +494,IAR_LU_segmented_2step,Myocardium LV,100,0.15,0.08,0.0024,0.150244356,0.080220509,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999841,0.014122844,8.78E-05,299,299,299 +495,IAR_LU_segmented_2step,Myocardium LV,200,0.15,0.08,0.0024,0.149981616,0.080572779,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386371,4.39E-05,299,299,299 +496,IAR_LU_segmented_2step,myocardium ra,10,0.07,0.07,0.0015,0.119350871,0.052652211,0.001519752,0.45,0.45,0.45,0.45,0.45,0.45,0.122175674,0.043381711,0.000451902,299,299,299 +497,IAR_LU_segmented_2step,myocardium ra,30,0.07,0.07,0.0015,0.079267824,0.063012225,0.001501351,0.45,0.45,0.45,0.45,0.45,0.45,0.045396572,0.037020532,0.000145532,299,299,299 +498,IAR_LU_segmented_2step,myocardium ra,50,0.07,0.07,0.0015,0.073240388,0.067072541,0.001500123,0.45,0.45,0.45,0.45,0.45,0.45,0.025208285,0.031219546,8.71E-05,299,299,299 +499,IAR_LU_segmented_2step,myocardium ra,100,0.07,0.07,0.0015,0.07061783,0.070443027,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.011195191,0.021890723,4.35E-05,299,299,299 +500,IAR_LU_segmented_2step,myocardium ra,200,0.07,0.07,0.0015,0.070088202,0.071162417,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.005300764,0.013604848,2.17E-05,299,299,299 +501,IAR_LU_segmented_2step,myocardium RV,10,0.15,0.08,0.0024,0.216176462,0.058774506,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.171881508,0.040142606,0.000834069,299,299,299 +502,IAR_LU_segmented_2step,myocardium RV,30,0.15,0.08,0.0024,0.157092625,0.073542287,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239387,0.029066238,0.000296358,299,299,299 +503,IAR_LU_segmented_2step,myocardium RV,50,0.15,0.08,0.0024,0.152059689,0.077447156,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816435,0.022258668,0.000176238,299,299,299 +504,IAR_LU_segmented_2step,myocardium RV,100,0.15,0.08,0.0024,0.150244356,0.080220509,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999841,0.014122844,8.78E-05,299,299,299 +505,IAR_LU_segmented_2step,myocardium RV,200,0.15,0.08,0.0024,0.149981616,0.080572779,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386371,4.39E-05,299,299,299 +506,IAR_LU_segmented_2step,pancreas,10,0.15,0.01,0.0013,0.16736677,0.030697893,0.001347335,0.45,0.45,0.45,0.45,0.45,0.45,0.138138077,0.035311982,0.00043165,299,299,299 +507,IAR_LU_segmented_2step,pancreas,30,0.15,0.01,0.0013,0.141203986,0.017635473,0.001330826,0.45,0.45,0.45,0.45,0.45,0.45,0.060051109,0.019681258,0.000139043,299,299,299 +508,IAR_LU_segmented_2step,pancreas,50,0.15,0.01,0.0013,0.137697421,0.013486081,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.037618638,0.009903919,8.32E-05,299,299,299 +509,IAR_LU_segmented_2step,pancreas,100,0.15,0.01,0.0013,0.136229323,0.011547666,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.019514438,0.002417889,4.15E-05,299,299,299 +510,IAR_LU_segmented_2step,pancreas,200,0.15,0.01,0.0013,0.136024846,0.011223601,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.009852921,0.001072171,2.08E-05,299,299,299 +511,IAR_LU_segmented_2step,pericardium,10,0.07,0.01,0.003,0.223205652,0.026536448,0.002737011,0.45,0.45,0.45,0.45,0.45,0.45,0.23206538,0.035908833,0.000885042,299,299,299 +512,IAR_LU_segmented_2step,pericardium,30,0.07,0.01,0.003,0.104347275,0.025637443,0.003046129,0.45,0.45,0.45,0.45,0.45,0.45,0.114261684,0.033293365,0.000391056,299,299,299 +513,IAR_LU_segmented_2step,pericardium,50,0.07,0.01,0.003,0.081401159,0.024493321,0.00304009,0.45,0.45,0.45,0.45,0.45,0.45,0.079566766,0.030410342,0.000238153,299,299,299 +514,IAR_LU_segmented_2step,pericardium,100,0.07,0.01,0.003,0.064215677,0.020440594,0.003033248,0.45,0.45,0.45,0.45,0.45,0.45,0.044855382,0.023283253,0.000118501,299,299,299 +515,IAR_LU_segmented_2step,pericardium,200,0.07,0.01,0.003,0.058011286,0.014344632,0.00303118,0.45,0.45,0.45,0.45,0.45,0.45,0.023954029,0.0098073,5.92E-05,299,299,299 +516,IAR_LU_segmented_2step,right kidney medulla,10,0.158,0.019,0.00209,0.214897365,0.034932381,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176570101,0.035703866,0.000728386,299,299,299 +517,IAR_LU_segmented_2step,right kidney medulla,30,0.158,0.019,0.00209,0.165710994,0.027090671,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510059,0.022576895,0.000242647,299,299,299 +518,IAR_LU_segmented_2step,right kidney medulla,50,0.158,0.019,0.00209,0.15984036,0.022624308,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993407,0.012999531,0.000144591,299,299,299 +519,IAR_LU_segmented_2step,right kidney medulla,100,0.158,0.019,0.00209,0.157128036,0.019976564,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.022931211,0.004517731,7.21E-05,299,299,299 +520,IAR_LU_segmented_2step,right kidney medulla,200,0.158,0.019,0.00209,0.156502789,0.019446622,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554558,0.00215365,3.60E-05,299,299,299 +521,IAR_LU_segmented_2step,Right kydney cortex,10,0.097,0.02,0.00212,0.170083391,0.036260778,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168104196,0.038392831,0.000693964,299,299,299 +522,IAR_LU_segmented_2step,Right kydney cortex,30,0.097,0.02,0.00212,0.11252675,0.032442252,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762921,0.029993935,0.000230469,299,299,299 +523,IAR_LU_segmented_2step,Right kydney cortex,50,0.097,0.02,0.00212,0.102943416,0.027674987,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.022352352,0.000137435,299,299,299 +524,IAR_LU_segmented_2step,Right kydney cortex,100,0.097,0.02,0.00212,0.097936584,0.02226186,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685511,0.009418943,6.85E-05,299,299,299 +525,IAR_LU_segmented_2step,Right kydney cortex,200,0.097,0.02,0.00212,0.096588828,0.020696624,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398461,0.003773564,3.42E-05,299,299,299 +526,IAR_LU_segmented_2step,small intestine,10,0.69,0.029,0.00131,0.690373037,0.032061085,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830765,0.014936399,0.001031075,299,299,299 +527,IAR_LU_segmented_2step,small intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 +528,IAR_LU_segmented_2step,small intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 +529,IAR_LU_segmented_2step,small intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 +530,IAR_LU_segmented_2step,small intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 +531,IAR_LU_segmented_2step,spleen,10,0.2,0.03,0.0013,0.224602363,0.042254374,0.001318692,0.45,0.45,0.45,0.45,0.45,0.45,0.127234912,0.034161122,0.000459162,299,299,299 +532,IAR_LU_segmented_2step,spleen,30,0.2,0.03,0.0013,0.203576863,0.03395392,0.001301089,0.45,0.45,0.45,0.45,0.45,0.45,0.044331214,0.017617566,0.000147367,299,299,299 +533,IAR_LU_segmented_2step,spleen,50,0.2,0.03,0.0013,0.201083469,0.031432055,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.026494532,0.009734365,8.81E-05,299,299,299 +534,IAR_LU_segmented_2step,spleen,100,0.2,0.03,0.0013,0.200071152,0.030341834,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.013175436,0.004353038,4.40E-05,299,299,299 +535,IAR_LU_segmented_2step,spleen,200,0.2,0.03,0.0013,0.199885784,0.030107013,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.006570871,0.002151389,2.20E-05,299,299,299 +536,IAR_LU_segmented_2step,st wall,10,0.3,0.012,0.0015,0.297910727,0.023898776,0.001577739,0.45,0.45,0.45,0.45,0.45,0.45,0.166898579,0.026413198,0.000614594,299,299,299 +537,IAR_LU_segmented_2step,st wall,30,0.3,0.012,0.0015,0.283533466,0.014626787,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.066770704,0.007845369,0.000195512,299,299,299 +538,IAR_LU_segmented_2step,st wall,50,0.3,0.012,0.0015,0.282913643,0.013356503,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.041258533,0.00296624,0.000116681,299,299,299 +539,IAR_LU_segmented_2step,st wall,100,0.3,0.012,0.0015,0.28295749,0.012941479,0.001548674,0.45,0.45,0.45,0.45,0.45,0.45,0.020929587,0.001312752,5.82E-05,299,299,299 +540,IAR_LU_segmented_2step,st wall,200,0.3,0.012,0.0015,0.283111806,0.012839641,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.010504025,0.000633727,2.91E-05,299,299,299 +541,IAR_LU_segmented_2step,trans lower intestine,10,0.69,0.029,0.00131,0.690373037,0.032061084,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830764,0.014936399,0.001031075,299,299,299 +542,IAR_LU_segmented_2step,trans lower intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 +543,IAR_LU_segmented_2step,trans lower intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 +544,IAR_LU_segmented_2step,trans lower intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 +545,IAR_LU_segmented_2step,trans lower intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 +546,IAR_LU_segmented_2step,Vein,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 +547,IAR_LU_segmented_2step,Vein,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 +548,IAR_LU_segmented_2step,Vein,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 +549,IAR_LU_segmented_2step,Vein,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 +550,IAR_LU_segmented_2step,Vein,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 +551,IAR_LU_segmented_3step,Artery,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 +552,IAR_LU_segmented_3step,Artery,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 +553,IAR_LU_segmented_3step,Artery,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 +554,IAR_LU_segmented_3step,Artery,100,1,0.1,0.003,0.99326893,0.099829905,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513907,0.000954286,299,299,299 +555,IAR_LU_segmented_3step,Artery,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 +556,IAR_LU_segmented_3step,asc lower intestine,10,0.69,0.029,0.00131,0.690372912,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 +557,IAR_LU_segmented_3step,asc lower intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 +558,IAR_LU_segmented_3step,asc lower intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 +559,IAR_LU_segmented_3step,asc lower intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 +560,IAR_LU_segmented_3step,asc lower intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 +561,IAR_LU_segmented_3step,Blood RA,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 +562,IAR_LU_segmented_3step,Blood RA,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 +563,IAR_LU_segmented_3step,Blood RA,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 +564,IAR_LU_segmented_3step,Blood RA,100,1,0.1,0.003,0.99326893,0.099829905,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513907,0.000954286,299,299,299 +565,IAR_LU_segmented_3step,Blood RA,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 +566,IAR_LU_segmented_3step,Blood RV,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 +567,IAR_LU_segmented_3step,Blood RV,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 +568,IAR_LU_segmented_3step,Blood RV,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 +569,IAR_LU_segmented_3step,Blood RV,100,1,0.1,0.003,0.99326893,0.099829905,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513907,0.000954286,299,299,299 +570,IAR_LU_segmented_3step,Blood RV,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 +571,IAR_LU_segmented_3step,desc lower intestine,10,0.69,0.029,0.00131,0.690372913,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 +572,IAR_LU_segmented_3step,desc lower intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 +573,IAR_LU_segmented_3step,desc lower intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 +574,IAR_LU_segmented_3step,desc lower intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 +575,IAR_LU_segmented_3step,desc lower intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 +576,IAR_LU_segmented_3step,esophagus,10,0.32,0.03,0.00167,0.340945084,0.03890234,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.144635684,0.028632624,0.00069931,299,299,299 +577,IAR_LU_segmented_3step,esophagus,30,0.32,0.03,0.00167,0.321988091,0.031922018,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.050656581,0.011131946,0.000225181,299,299,299 +578,IAR_LU_segmented_3step,esophagus,50,0.32,0.03,0.00167,0.320433872,0.030648361,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400672,0.005936031,0.000134201,299,299,299 +579,IAR_LU_segmented_3step,esophagus,100,0.32,0.03,0.00167,0.319848899,0.030186336,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161618,0.002893608,6.69E-05,299,299,299 +580,IAR_LU_segmented_3step,esophagus,200,0.32,0.03,0.00167,0.319780249,0.030069701,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572226,0.001441311,3.34E-05,299,299,299 +581,IAR_LU_segmented_3step,esophagus cont,10,0.32,0.03,0.00167,0.340945084,0.03890234,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.144635684,0.028632624,0.00069931,299,299,299 +582,IAR_LU_segmented_3step,esophagus cont,30,0.32,0.03,0.00167,0.321988091,0.031922018,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.050656581,0.011131946,0.000225181,299,299,299 +583,IAR_LU_segmented_3step,esophagus cont,50,0.32,0.03,0.00167,0.320433872,0.030648361,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400672,0.005936031,0.000134201,299,299,299 +584,IAR_LU_segmented_3step,esophagus cont,100,0.32,0.03,0.00167,0.319848899,0.030186336,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161618,0.002893608,6.69E-05,299,299,299 +585,IAR_LU_segmented_3step,esophagus cont,200,0.32,0.03,0.00167,0.319780249,0.030069701,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572226,0.001441311,3.34E-05,299,299,299 +586,IAR_LU_segmented_3step,Left kidney cortex,10,0.097,0.02,0.00212,0.171166453,0.032737361,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168408251,0.037021909,0.000693964,299,299,299 +587,IAR_LU_segmented_3step,Left kidney cortex,30,0.097,0.02,0.00212,0.112527008,0.031808933,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762942,0.029558883,0.000230469,299,299,299 +588,IAR_LU_segmented_3step,Left kidney cortex,50,0.097,0.02,0.00212,0.102943505,0.027358607,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.021995432,0.000137435,299,299,299 +589,IAR_LU_segmented_3step,Left kidney cortex,100,0.097,0.02,0.00212,0.097936672,0.022261904,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685537,0.009419407,6.85E-05,299,299,299 +590,IAR_LU_segmented_3step,Left kidney cortex,200,0.097,0.02,0.00212,0.096588868,0.020696592,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398489,0.003773581,3.42E-05,299,299,299 +591,IAR_LU_segmented_3step,left kidney medulla,10,0.158,0.019,0.00209,0.215538601,0.033058455,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176417628,0.034724288,0.000728386,299,299,299 +592,IAR_LU_segmented_3step,left kidney medulla,30,0.158,0.019,0.00209,0.165711066,0.026774028,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510085,0.022214282,0.000242647,299,299,299 +593,IAR_LU_segmented_3step,left kidney medulla,50,0.158,0.019,0.00209,0.159840423,0.022624377,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993441,0.012999935,0.000144591,299,299,299 +594,IAR_LU_segmented_3step,left kidney medulla,100,0.158,0.019,0.00209,0.157128074,0.019976534,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.02293121,0.004517691,7.21E-05,299,299,299 +595,IAR_LU_segmented_3step,left kidney medulla,200,0.158,0.019,0.00209,0.156502807,0.019446613,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554566,0.002153651,3.60E-05,299,299,299 +596,IAR_LU_segmented_3step,Liver,10,0.11,0.1,0.0015,0.146082882,0.05594788,0.001520848,0.45,0.45,0.45,0.45,0.45,0.45,0.124175238,0.042351032,0.000472993,299,299,299 +597,IAR_LU_segmented_3step,Liver,30,0.11,0.1,0.0015,0.113015747,0.076433799,0.001501547,0.45,0.45,0.45,0.45,0.45,0.45,0.040496262,0.031596148,0.000152138,299,299,299 +598,IAR_LU_segmented_3step,Liver,50,0.11,0.1,0.0015,0.109957685,0.08456634,0.001500177,0.45,0.45,0.45,0.45,0.45,0.45,0.021883719,0.022478141,9.10E-05,299,299,299 +599,IAR_LU_segmented_3step,Liver,100,0.11,0.1,0.0015,0.109449356,0.091662323,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.010208281,0.012494311,4.54E-05,299,299,299 +600,IAR_LU_segmented_3step,Liver,200,0.11,0.1,0.0015,0.109652152,0.095603697,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.005040253,0.006734138,2.27E-05,299,299,299 +601,IAR_LU_segmented_3step,Myocardium LV,10,0.15,0.08,0.0024,0.21872579,0.054750873,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.173307671,0.040713205,0.000834069,299,299,299 +602,IAR_LU_segmented_3step,Myocardium LV,30,0.15,0.08,0.0024,0.157093415,0.073541518,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239915,0.029067525,0.000296358,299,299,299 +603,IAR_LU_segmented_3step,Myocardium LV,50,0.15,0.08,0.0024,0.1520598,0.077447012,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816663,0.022258862,0.000176238,299,299,299 +604,IAR_LU_segmented_3step,Myocardium LV,100,0.15,0.08,0.0024,0.150244353,0.08022047,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999836,0.01412279,8.78E-05,299,299,299 +605,IAR_LU_segmented_3step,Myocardium LV,200,0.15,0.08,0.0024,0.149981616,0.080572777,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386363,4.39E-05,299,299,299 +606,IAR_LU_segmented_3step,myocardium ra,10,0.07,0.07,0.0015,0.120487722,0.047427414,0.001519752,0.45,0.45,0.45,0.45,0.45,0.45,0.12292676,0.043275772,0.000451902,299,299,299 +607,IAR_LU_segmented_3step,myocardium ra,30,0.07,0.07,0.0015,0.079495392,0.061701171,0.001501351,0.45,0.45,0.45,0.45,0.45,0.45,0.045644349,0.037517987,0.000145532,299,299,299 +608,IAR_LU_segmented_3step,myocardium ra,50,0.07,0.07,0.0015,0.073307506,0.066894664,0.001500123,0.45,0.45,0.45,0.45,0.45,0.45,0.025333414,0.031390361,8.71E-05,299,299,299 +609,IAR_LU_segmented_3step,myocardium ra,100,0.07,0.07,0.0015,0.070617853,0.070443036,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.011195219,0.021891031,4.35E-05,299,299,299 +610,IAR_LU_segmented_3step,myocardium ra,200,0.07,0.07,0.0015,0.070088202,0.071162406,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.005300766,0.013604875,2.17E-05,299,299,299 +611,IAR_LU_segmented_3step,myocardium RV,10,0.15,0.08,0.0024,0.21872579,0.054750873,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.173307671,0.040713205,0.000834069,299,299,299 +612,IAR_LU_segmented_3step,myocardium RV,30,0.15,0.08,0.0024,0.157093415,0.073541518,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239915,0.029067525,0.000296358,299,299,299 +613,IAR_LU_segmented_3step,myocardium RV,50,0.15,0.08,0.0024,0.1520598,0.077447012,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816663,0.022258862,0.000176238,299,299,299 +614,IAR_LU_segmented_3step,myocardium RV,100,0.15,0.08,0.0024,0.150244353,0.08022047,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999836,0.01412279,8.78E-05,299,299,299 +615,IAR_LU_segmented_3step,myocardium RV,200,0.15,0.08,0.0024,0.149981616,0.080572777,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386363,4.39E-05,299,299,299 +616,IAR_LU_segmented_3step,pancreas,10,0.15,0.01,0.0013,0.167876088,0.029082378,0.001347335,0.45,0.45,0.45,0.45,0.45,0.45,0.137991459,0.034190208,0.00043165,299,299,299 +617,IAR_LU_segmented_3step,pancreas,30,0.15,0.01,0.0013,0.141237489,0.017318823,0.001330826,0.45,0.45,0.45,0.45,0.45,0.45,0.059986793,0.01910762,0.000139043,299,299,299 +618,IAR_LU_segmented_3step,pancreas,50,0.15,0.01,0.0013,0.137697382,0.013486112,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.037618711,0.009904077,8.32E-05,299,299,299 +619,IAR_LU_segmented_3step,pancreas,100,0.15,0.01,0.0013,0.136229324,0.011547662,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.019514431,0.002417876,4.15E-05,299,299,299 +620,IAR_LU_segmented_3step,pancreas,200,0.15,0.01,0.0013,0.136024834,0.011223605,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.00985292,0.00107217,2.08E-05,299,299,299 +621,IAR_LU_segmented_3step,pericardium,10,0.07,0.01,0.003,0.226261706,0.023779549,0.002737011,0.45,0.45,0.45,0.45,0.45,0.45,0.23202724,0.03367319,0.000885042,299,299,299 +622,IAR_LU_segmented_3step,pericardium,30,0.07,0.01,0.003,0.104611778,0.01968608,0.003046129,0.45,0.45,0.45,0.45,0.45,0.45,0.114299018,0.027839749,0.000391056,299,299,299 +623,IAR_LU_segmented_3step,pericardium,50,0.07,0.01,0.003,0.08160667,0.019493472,0.00304009,0.45,0.45,0.45,0.45,0.45,0.45,0.079548374,0.025099283,0.000238153,299,299,299 +624,IAR_LU_segmented_3step,pericardium,100,0.07,0.01,0.003,0.064202652,0.019490239,0.003033248,0.45,0.45,0.45,0.45,0.45,0.45,0.044873824,0.021910645,0.000118501,299,299,299 +625,IAR_LU_segmented_3step,pericardium,200,0.07,0.01,0.003,0.058011321,0.014344667,0.00303118,0.45,0.45,0.45,0.45,0.45,0.45,0.023954032,0.009807691,5.92E-05,299,299,299 +626,IAR_LU_segmented_3step,right kidney medulla,10,0.158,0.019,0.00209,0.215538601,0.033058455,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176417628,0.034724288,0.000728386,299,299,299 +627,IAR_LU_segmented_3step,right kidney medulla,30,0.158,0.019,0.00209,0.165711066,0.026774028,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510085,0.022214282,0.000242647,299,299,299 +628,IAR_LU_segmented_3step,right kidney medulla,50,0.158,0.019,0.00209,0.159840423,0.022624377,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993441,0.012999935,0.000144591,299,299,299 +629,IAR_LU_segmented_3step,right kidney medulla,100,0.158,0.019,0.00209,0.157128074,0.019976534,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.02293121,0.004517691,7.21E-05,299,299,299 +630,IAR_LU_segmented_3step,right kidney medulla,200,0.158,0.019,0.00209,0.156502807,0.019446613,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554566,0.002153651,3.60E-05,299,299,299 +631,IAR_LU_segmented_3step,Right kydney cortex,10,0.097,0.02,0.00212,0.171166453,0.032737361,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168408251,0.037021909,0.000693964,299,299,299 +632,IAR_LU_segmented_3step,Right kydney cortex,30,0.097,0.02,0.00212,0.112527008,0.031808933,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762942,0.029558883,0.000230469,299,299,299 +633,IAR_LU_segmented_3step,Right kydney cortex,50,0.097,0.02,0.00212,0.102943505,0.027358607,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.021995432,0.000137435,299,299,299 +634,IAR_LU_segmented_3step,Right kydney cortex,100,0.097,0.02,0.00212,0.097936672,0.022261904,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685537,0.009419407,6.85E-05,299,299,299 +635,IAR_LU_segmented_3step,Right kydney cortex,200,0.097,0.02,0.00212,0.096588868,0.020696592,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398489,0.003773581,3.42E-05,299,299,299 +636,IAR_LU_segmented_3step,small intestine,10,0.69,0.029,0.00131,0.690372912,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 +637,IAR_LU_segmented_3step,small intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 +638,IAR_LU_segmented_3step,small intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 +639,IAR_LU_segmented_3step,small intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 +640,IAR_LU_segmented_3step,small intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 +641,IAR_LU_segmented_3step,spleen,10,0.2,0.03,0.0013,0.225215079,0.040847594,0.001318692,0.45,0.45,0.45,0.45,0.45,0.45,0.12737455,0.033832118,0.000459162,299,299,299 +642,IAR_LU_segmented_3step,spleen,30,0.2,0.03,0.0013,0.203576978,0.033953942,0.001301089,0.45,0.45,0.45,0.45,0.45,0.45,0.044331237,0.017617914,0.000147367,299,299,299 +643,IAR_LU_segmented_3step,spleen,50,0.2,0.03,0.0013,0.201083539,0.031431935,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.026494577,0.00973438,8.81E-05,299,299,299 +644,IAR_LU_segmented_3step,spleen,100,0.2,0.03,0.0013,0.200071169,0.030341801,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.013175452,0.004353034,4.40E-05,299,299,299 +645,IAR_LU_segmented_3step,spleen,200,0.2,0.03,0.0013,0.19988579,0.030107002,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.006570875,0.002151391,2.20E-05,299,299,299 +646,IAR_LU_segmented_3step,st wall,10,0.3,0.012,0.0015,0.298324939,0.023934408,0.001577739,0.45,0.45,0.45,0.45,0.45,0.45,0.166709747,0.026470944,0.000614594,299,299,299 +647,IAR_LU_segmented_3step,st wall,30,0.3,0.012,0.0015,0.283533448,0.014626791,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.06677077,0.007845356,0.000195512,299,299,299 +648,IAR_LU_segmented_3step,st wall,50,0.3,0.012,0.0015,0.282913611,0.01335651,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.041258559,0.002966233,0.000116681,299,299,299 +649,IAR_LU_segmented_3step,st wall,100,0.3,0.012,0.0015,0.282957468,0.012941483,0.001548674,0.45,0.45,0.45,0.45,0.45,0.45,0.020929585,0.001312751,5.82E-05,299,299,299 +650,IAR_LU_segmented_3step,st wall,200,0.3,0.012,0.0015,0.283111797,0.012839643,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.010504023,0.000633726,2.91E-05,299,299,299 +651,IAR_LU_segmented_3step,trans lower intestine,10,0.69,0.029,0.00131,0.690372913,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 +652,IAR_LU_segmented_3step,trans lower intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 +653,IAR_LU_segmented_3step,trans lower intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 +654,IAR_LU_segmented_3step,trans lower intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 +655,IAR_LU_segmented_3step,trans lower intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 +656,IAR_LU_segmented_3step,Vein,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 +657,IAR_LU_segmented_3step,Vein,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 +658,IAR_LU_segmented_3step,Vein,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 +659,IAR_LU_segmented_3step,Vein,100,1,0.1,0.003,0.99326893,0.099829906,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513906,0.000954286,299,299,299 +660,IAR_LU_segmented_3step,Vein,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 +661,IAR_LU_subtracted,Artery,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 +662,IAR_LU_subtracted,Artery,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 +663,IAR_LU_subtracted,Artery,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 +664,IAR_LU_subtracted,Artery,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 +665,IAR_LU_subtracted,Artery,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 +666,IAR_LU_subtracted,asc lower intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 +667,IAR_LU_subtracted,asc lower intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 +668,IAR_LU_subtracted,asc lower intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 +669,IAR_LU_subtracted,asc lower intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 +670,IAR_LU_subtracted,asc lower intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 +671,IAR_LU_subtracted,Blood RA,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 +672,IAR_LU_subtracted,Blood RA,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 +673,IAR_LU_subtracted,Blood RA,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 +674,IAR_LU_subtracted,Blood RA,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 +675,IAR_LU_subtracted,Blood RA,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 +676,IAR_LU_subtracted,Blood RV,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 +677,IAR_LU_subtracted,Blood RV,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 +678,IAR_LU_subtracted,Blood RV,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 +679,IAR_LU_subtracted,Blood RV,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 +680,IAR_LU_subtracted,Blood RV,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 +681,IAR_LU_subtracted,desc lower intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 +682,IAR_LU_subtracted,desc lower intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 +683,IAR_LU_subtracted,desc lower intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 +684,IAR_LU_subtracted,desc lower intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 +685,IAR_LU_subtracted,desc lower intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 +686,IAR_LU_subtracted,esophagus,10,0.32,0.03,0.00167,0.298330817,0.047824675,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.186559712,0.035836765,0.00069931,299,299,299 +687,IAR_LU_subtracted,esophagus,30,0.32,0.03,0.00167,0.313367489,0.035308693,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.069731074,0.017500192,0.000225181,299,299,299 +688,IAR_LU_subtracted,esophagus,50,0.32,0.03,0.00167,0.317127605,0.032017144,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.040602769,0.009278129,0.000134201,299,299,299 +689,IAR_LU_subtracted,esophagus,100,0.32,0.03,0.00167,0.318810591,0.030545999,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.020136396,0.00396262,6.69E-05,299,299,299 +690,IAR_LU_subtracted,esophagus,200,0.32,0.03,0.00167,0.319373079,0.030189956,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.010044624,0.001914659,3.34E-05,299,299,299 +691,IAR_LU_subtracted,esophagus cont,10,0.32,0.03,0.00167,0.298330817,0.047824675,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.186559712,0.035836765,0.00069931,299,299,299 +692,IAR_LU_subtracted,esophagus cont,30,0.32,0.03,0.00167,0.313367489,0.035308693,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.069731074,0.017500192,0.000225181,299,299,299 +693,IAR_LU_subtracted,esophagus cont,50,0.32,0.03,0.00167,0.317127605,0.032017144,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.040602769,0.009278129,0.000134201,299,299,299 +694,IAR_LU_subtracted,esophagus cont,100,0.32,0.03,0.00167,0.318810591,0.030545999,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.020136396,0.00396262,6.69E-05,299,299,299 +695,IAR_LU_subtracted,esophagus cont,200,0.32,0.03,0.00167,0.319373079,0.030189956,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.010044624,0.001914659,3.34E-05,299,299,299 +696,IAR_LU_subtracted,Left kidney cortex,10,0.097,0.02,0.00212,0.142139794,0.051623985,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.158085677,0.043994516,0.000693964,299,299,299 +697,IAR_LU_subtracted,Left kidney cortex,30,0.097,0.02,0.00212,0.095933899,0.042067439,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.073990003,0.037530338,0.000230469,299,299,299 +698,IAR_LU_subtracted,Left kidney cortex,50,0.097,0.02,0.00212,0.093431576,0.034097238,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.050016269,0.029116022,0.000137435,299,299,299 +699,IAR_LU_subtracted,Left kidney cortex,100,0.097,0.02,0.00212,0.094557643,0.024935294,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.026069173,0.014844147,6.85E-05,299,299,299 +700,IAR_LU_subtracted,Left kidney cortex,200,0.097,0.02,0.00212,0.095297515,0.02142065,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.012874619,0.004971599,3.42E-05,299,299,299 +701,IAR_LU_subtracted,left kidney medulla,10,0.158,0.019,0.00209,0.179099288,0.048219596,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.173901183,0.043043482,0.000728386,299,299,299 +702,IAR_LU_subtracted,left kidney medulla,30,0.158,0.019,0.00209,0.149852727,0.033647837,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.081471886,0.029463645,0.000242647,299,299,299 +703,IAR_LU_subtracted,left kidney medulla,50,0.158,0.019,0.00209,0.152083542,0.026075982,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.051439625,0.018950242,0.000144591,299,299,299 +704,IAR_LU_subtracted,left kidney medulla,100,0.158,0.019,0.00209,0.154245618,0.020970784,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.025546906,0.00644714,7.21E-05,299,299,299 +705,IAR_LU_subtracted,left kidney medulla,200,0.158,0.019,0.00209,0.154953784,0.019816867,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.012740204,0.002493405,3.60E-05,299,299,299 +706,IAR_LU_subtracted,Liver,10,0.11,0.1,0.0015,0.121102796,0.063463702,0.001520848,0.45,0.45,0.45,0.45,0.45,0.45,0.130105575,0.04250074,0.000472993,299,299,299 +707,IAR_LU_subtracted,Liver,30,0.11,0.1,0.0015,0.097755861,0.072478185,0.001501547,0.45,0.45,0.45,0.45,0.45,0.45,0.061350249,0.034666307,0.000152138,299,299,299 +708,IAR_LU_subtracted,Liver,50,0.11,0.1,0.0015,0.100463203,0.078794527,0.001500177,0.45,0.45,0.45,0.45,0.45,0.45,0.040998051,0.028451057,9.10E-05,299,299,299 +709,IAR_LU_subtracted,Liver,100,0.11,0.1,0.0015,0.105490313,0.086878553,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.020876704,0.01893254,4.54E-05,299,299,299 +710,IAR_LU_subtracted,Liver,200,0.11,0.1,0.0015,0.107911735,0.092666541,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.010493764,0.010982979,2.27E-05,299,299,299 +711,IAR_LU_subtracted,Myocardium LV,10,0.15,0.08,0.0024,0.181176562,0.060848093,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.184591897,0.042377738,0.000834069,299,299,299 +712,IAR_LU_subtracted,Myocardium LV,30,0.15,0.08,0.0024,0.135455819,0.069430129,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.090071402,0.034469049,0.000296358,299,299,299 +713,IAR_LU_subtracted,Myocardium LV,50,0.15,0.08,0.0024,0.138545124,0.073367948,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.061290584,0.029393475,0.000176238,299,299,299 +714,IAR_LU_subtracted,Myocardium LV,100,0.15,0.08,0.0024,0.145564204,0.078156055,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.03078952,0.021822099,8.78E-05,299,299,299 +715,IAR_LU_subtracted,Myocardium LV,200,0.15,0.08,0.0024,0.148714773,0.080576205,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.014524016,0.014774345,4.39E-05,299,299,299 +716,IAR_LU_subtracted,myocardium ra,10,0.07,0.07,0.0015,0.101868108,0.060653412,0.001519752,0.45,0.45,0.45,0.45,0.45,0.45,0.1208983,0.043484765,0.000451902,299,299,299 +717,IAR_LU_subtracted,myocardium ra,30,0.07,0.07,0.0015,0.066909282,0.062909239,0.001501351,0.45,0.45,0.45,0.45,0.45,0.45,0.054675336,0.039018948,0.000145532,299,299,299 +718,IAR_LU_subtracted,myocardium ra,50,0.07,0.07,0.0015,0.064904769,0.065712481,0.001500123,0.45,0.45,0.45,0.45,0.45,0.45,0.037354782,0.03450828,8.71E-05,299,299,299 +719,IAR_LU_subtracted,myocardium ra,100,0.07,0.07,0.0015,0.067361414,0.069733547,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.019699825,0.027166531,4.35E-05,299,299,299 +720,IAR_LU_subtracted,myocardium ra,200,0.07,0.07,0.0015,0.069231228,0.071613303,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.009289732,0.01917227,2.17E-05,299,299,299 +721,IAR_LU_subtracted,myocardium RV,10,0.15,0.08,0.0024,0.181176562,0.060848093,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.184591897,0.042377738,0.000834069,299,299,299 +722,IAR_LU_subtracted,myocardium RV,30,0.15,0.08,0.0024,0.135455819,0.069430129,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.090071402,0.034469049,0.000296358,299,299,299 +723,IAR_LU_subtracted,myocardium RV,50,0.15,0.08,0.0024,0.138545124,0.073367948,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.061290584,0.029393475,0.000176238,299,299,299 +724,IAR_LU_subtracted,myocardium RV,100,0.15,0.08,0.0024,0.145564204,0.078156055,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.03078952,0.021822099,8.78E-05,299,299,299 +725,IAR_LU_subtracted,myocardium RV,200,0.15,0.08,0.0024,0.148714773,0.080576205,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.014524016,0.014774345,4.39E-05,299,299,299 +726,IAR_LU_subtracted,pancreas,10,0.15,0.01,0.0013,0.145973573,0.041832236,0.001347335,0.45,0.45,0.45,0.45,0.45,0.45,0.133409112,0.042751573,0.00043165,299,299,299 +727,IAR_LU_subtracted,pancreas,30,0.15,0.01,0.0013,0.128614984,0.019678738,0.001330826,0.45,0.45,0.45,0.45,0.45,0.45,0.059108206,0.023105715,0.000139043,299,299,299 +728,IAR_LU_subtracted,pancreas,50,0.15,0.01,0.0013,0.129890011,0.014418841,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.035839158,0.012504685,8.32E-05,299,299,299 +729,IAR_LU_subtracted,pancreas,100,0.15,0.01,0.0013,0.130754692,0.011901673,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.017978544,0.002505897,4.15E-05,299,299,299 +730,IAR_LU_subtracted,pancreas,200,0.15,0.01,0.0013,0.131107658,0.01157572,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.008999003,0.001099421,2.08E-05,299,299,299 +731,IAR_LU_subtracted,pericardium,10,0.07,0.01,0.003,0.182005007,0.044939951,0.002737011,0.45,0.45,0.45,0.45,0.45,0.45,0.199393895,0.044608143,0.000885042,299,299,299 +732,IAR_LU_subtracted,pericardium,30,0.07,0.01,0.003,0.076726439,0.048339566,0.003046129,0.45,0.45,0.45,0.45,0.45,0.45,0.088444665,0.044397223,0.000391056,299,299,299 +733,IAR_LU_subtracted,pericardium,50,0.07,0.01,0.003,0.060765317,0.042217646,0.00304009,0.45,0.45,0.45,0.45,0.45,0.45,0.061339608,0.042107261,0.000238153,299,299,299 +734,IAR_LU_subtracted,pericardium,100,0.07,0.01,0.003,0.052357578,0.028930054,0.003033248,0.45,0.45,0.45,0.45,0.45,0.45,0.037151651,0.032474266,0.000118501,299,299,299 +735,IAR_LU_subtracted,pericardium,200,0.07,0.01,0.003,0.05146831,0.016873858,0.00303118,0.45,0.45,0.45,0.45,0.45,0.45,0.020646564,0.015247396,5.92E-05,299,299,299 +736,IAR_LU_subtracted,right kidney medulla,10,0.158,0.019,0.00209,0.179099288,0.048219596,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.173901183,0.043043482,0.000728386,299,299,299 +737,IAR_LU_subtracted,right kidney medulla,30,0.158,0.019,0.00209,0.149852727,0.033647837,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.081471886,0.029463645,0.000242647,299,299,299 +738,IAR_LU_subtracted,right kidney medulla,50,0.158,0.019,0.00209,0.152083542,0.026075982,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.051439625,0.018950242,0.000144591,299,299,299 +739,IAR_LU_subtracted,right kidney medulla,100,0.158,0.019,0.00209,0.154245618,0.020970784,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.025546906,0.00644714,7.21E-05,299,299,299 +740,IAR_LU_subtracted,right kidney medulla,200,0.158,0.019,0.00209,0.154953784,0.019816867,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.012740204,0.002493405,3.60E-05,299,299,299 +741,IAR_LU_subtracted,Right kydney cortex,10,0.097,0.02,0.00212,0.142139794,0.051623985,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.158085677,0.043994516,0.000693964,299,299,299 +742,IAR_LU_subtracted,Right kydney cortex,30,0.097,0.02,0.00212,0.095933899,0.042067439,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.073990003,0.037530338,0.000230469,299,299,299 +743,IAR_LU_subtracted,Right kydney cortex,50,0.097,0.02,0.00212,0.093431576,0.034097238,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.050016269,0.029116022,0.000137435,299,299,299 +744,IAR_LU_subtracted,Right kydney cortex,100,0.097,0.02,0.00212,0.094557643,0.024935294,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.026069173,0.014844147,6.85E-05,299,299,299 +745,IAR_LU_subtracted,Right kydney cortex,200,0.097,0.02,0.00212,0.095297515,0.02142065,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.012874619,0.004971599,3.42E-05,299,299,299 +746,IAR_LU_subtracted,small intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 +747,IAR_LU_subtracted,small intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 +748,IAR_LU_subtracted,small intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 +749,IAR_LU_subtracted,small intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 +750,IAR_LU_subtracted,small intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 +751,IAR_LU_subtracted,spleen,10,0.2,0.03,0.0013,0.192961858,0.049259747,0.001318692,0.45,0.45,0.45,0.45,0.45,0.45,0.146720065,0.039014304,0.000459162,299,299,299 +752,IAR_LU_subtracted,spleen,30,0.2,0.03,0.0013,0.195619974,0.037866023,0.001301089,0.45,0.45,0.45,0.45,0.45,0.45,0.058248082,0.023039661,0.000147367,299,299,299 +753,IAR_LU_subtracted,spleen,50,0.2,0.03,0.0013,0.198125993,0.033434677,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.033860027,0.014119694,8.81E-05,299,299,299 +754,IAR_LU_subtracted,spleen,100,0.2,0.03,0.0013,0.199199769,0.030874236,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.016765803,0.005756443,4.40E-05,299,299,299 +755,IAR_LU_subtracted,spleen,200,0.2,0.03,0.0013,0.199585282,0.030268153,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.008358647,0.002728748,2.20E-05,299,299,299 +756,IAR_LU_subtracted,st wall,10,0.3,0.012,0.0015,0.262694586,0.031918565,0.001577739,0.45,0.45,0.45,0.45,0.45,0.45,0.172890946,0.034907403,0.000614594,299,299,299 +757,IAR_LU_subtracted,st wall,30,0.3,0.012,0.0015,0.271112585,0.01575528,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.067007666,0.01090541,0.000195512,299,299,299 +758,IAR_LU_subtracted,st wall,50,0.3,0.012,0.0015,0.2739868,0.013806573,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.039874695,0.00322903,0.000116681,299,299,299 +759,IAR_LU_subtracted,st wall,100,0.3,0.012,0.0015,0.275412083,0.0133115,0.001548674,0.45,0.45,0.45,0.45,0.45,0.45,0.019901134,0.001323381,5.82E-05,299,299,299 +760,IAR_LU_subtracted,st wall,200,0.3,0.012,0.0015,0.275903273,0.013199305,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.009946941,0.000634014,2.91E-05,299,299,299 +761,IAR_LU_subtracted,trans lower intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 +762,IAR_LU_subtracted,trans lower intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 +763,IAR_LU_subtracted,trans lower intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 +764,IAR_LU_subtracted,trans lower intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 +765,IAR_LU_subtracted,trans lower intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 +766,IAR_LU_subtracted,Vein,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 +767,IAR_LU_subtracted,Vein,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 +768,IAR_LU_subtracted,Vein,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 +769,IAR_LU_subtracted,Vein,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 +770,IAR_LU_subtracted,Vein,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 +771,OGC_AmsterdamUMC_Bayesian_biexp,Artery,10,1,0.1,0.003,0.914296492,0.124951039,0.000341386,0.45,0.45,0.45,0.45,0.45,0.45,0.033870879,0.026491621,0.000759818,299,299,299 +772,OGC_AmsterdamUMC_Bayesian_biexp,Artery,30,1,0.1,0.003,0.973099807,0.107393311,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804963,0.007482952,0.000430418,299,299,299 +773,OGC_AmsterdamUMC_Bayesian_biexp,Artery,50,1,0.1,0.003,0.984111286,0.104286409,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676674,0.004344101,0.00041008,299,299,299 +774,OGC_AmsterdamUMC_Bayesian_biexp,Artery,100,1,0.1,0.003,0.992309613,0.10204803,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303783,0.002125803,0.000377336,299,299,299 +775,OGC_AmsterdamUMC_Bayesian_biexp,Artery,200,1,0.1,0.003,0.996293987,0.100989063,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146383,0.001053061,0.00035602,299,299,299 +776,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.694246809,0.033212428,0.00115663,0.45,0.45,0.45,0.45,0.45,0.45,0.110159746,0.019304893,0.000818021,299,299,299 +777,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.690033148,0.029354524,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083089,0.003629514,0.000284879,299,299,299 +778,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.689921467,0.029138652,0.001303149,0.45,0.45,0.45,0.45,0.45,0.45,0.021377222,0.002138343,0.000166105,299,299,299 +779,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.689705415,0.029147764,0.001308053,0.45,0.45,0.45,0.45,0.45,0.45,0.010824981,0.001291221,8.28E-05,299,299,299 +780,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.68967653,0.029076305,0.001308018,0.45,0.45,0.45,0.45,0.45,0.45,0.005833233,0.000767401,4.22E-05,299,299,299 +781,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,10,1,0.1,0.003,0.914296492,0.124951039,0.000341386,0.45,0.45,0.45,0.45,0.45,0.45,0.033870879,0.026491621,0.000759818,299,299,299 +782,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,30,1,0.1,0.003,0.973099807,0.107393311,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804963,0.007482952,0.000430418,299,299,299 +783,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,50,1,0.1,0.003,0.984111286,0.104286409,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676674,0.004344101,0.00041008,299,299,299 +784,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,100,1,0.1,0.003,0.992309613,0.10204803,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303783,0.002125803,0.000377336,299,299,299 +785,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,200,1,0.1,0.003,0.996293987,0.100989063,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146383,0.001053061,0.00035602,299,299,299 +786,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,10,1,0.1,0.003,0.914297401,0.124952392,0.000341385,0.45,0.45,0.45,0.45,0.45,0.45,0.03387042,0.026491931,0.000759817,299,299,299 +787,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,30,1,0.1,0.003,0.973099598,0.107393352,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804734,0.007483034,0.000430418,299,299,299 +788,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,50,1,0.1,0.003,0.98411098,0.104286733,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676655,0.004344225,0.00041008,299,299,299 +789,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,100,1,0.1,0.003,0.992309673,0.102048012,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303763,0.002125853,0.000377336,299,299,299 +790,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,200,1,0.1,0.003,0.996293917,0.100989102,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146318,0.001053057,0.000356019,299,299,299 +791,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.694246845,0.033212543,0.001156631,0.45,0.45,0.45,0.45,0.45,0.45,0.110160151,0.019304821,0.000818022,299,299,299 +792,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.690033103,0.029354525,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083064,0.003629512,0.000284879,299,299,299 +793,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.689855674,0.029142881,0.001303606,0.45,0.45,0.45,0.45,0.45,0.45,0.021315409,0.002132588,0.000165776,299,299,299 +794,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.689705423,0.029147764,0.001308053,0.45,0.45,0.45,0.45,0.45,0.45,0.010824973,0.001291221,8.28E-05,299,299,299 +795,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.689676538,0.029076306,0.001308018,0.45,0.45,0.45,0.45,0.45,0.45,0.005833197,0.000767398,4.22E-05,299,299,299 +796,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,10,0.32,0.03,0.00167,0.360637899,0.150015035,0.00154163,0.45,0.45,0.45,0.45,0.45,0.45,0.145804401,0.408781901,0.0005739,299,299,299 +797,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,30,0.32,0.03,0.00167,0.324529873,0.031751837,0.001652125,0.45,0.45,0.45,0.45,0.45,0.45,0.041452879,0.010304595,0.000164117,299,299,299 +798,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,50,0.32,0.03,0.00167,0.321549234,0.030497146,0.001661833,0.45,0.45,0.45,0.45,0.45,0.45,0.024132711,0.005222811,9.57E-05,299,299,299 +799,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,100,0.32,0.03,0.00167,0.320358986,0.030103363,0.001666862,0.45,0.45,0.45,0.45,0.45,0.45,0.011840207,0.002475061,4.71E-05,299,299,299 +800,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,200,0.32,0.03,0.00167,0.32007735,0.030020634,0.001668668,0.45,0.45,0.45,0.45,0.45,0.45,0.005887225,0.001220813,2.34E-05,299,299,299 +801,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,10,0.32,0.03,0.00167,0.360637899,0.150015035,0.00154163,0.45,0.45,0.45,0.45,0.45,0.45,0.145804401,0.408781901,0.0005739,299,299,299 +802,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,30,0.32,0.03,0.00167,0.324529873,0.031751837,0.001652125,0.45,0.45,0.45,0.45,0.45,0.45,0.041452879,0.010304595,0.000164117,299,299,299 +803,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,50,0.32,0.03,0.00167,0.321549234,0.030497146,0.001661833,0.45,0.45,0.45,0.45,0.45,0.45,0.024132711,0.005222811,9.57E-05,299,299,299 +804,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,100,0.32,0.03,0.00167,0.320358986,0.030103363,0.001666862,0.45,0.45,0.45,0.45,0.45,0.45,0.011840207,0.002475061,4.71E-05,299,299,299 +805,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,200,0.32,0.03,0.00167,0.32007735,0.030020634,0.001668668,0.45,0.45,0.45,0.45,0.45,0.45,0.005887225,0.001220813,2.34E-05,299,299,299 +806,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.188596573,0.38583104,0.001898976,0.45,0.45,0.45,0.45,0.45,0.45,0.198632494,0.722936114,0.000578514,299,299,299 +807,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.141555513,0.177123403,0.00204074,0.45,0.45,0.45,0.45,0.45,0.45,0.11154362,0.465680626,0.000257701,299,299,299 +808,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.118643922,0.042124429,0.002079695,0.45,0.45,0.45,0.45,0.45,0.45,0.067807516,0.140865944,0.00015212,299,299,299 +809,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.100892171,0.022835281,0.002111271,0.45,0.45,0.45,0.45,0.45,0.45,0.023312451,0.019731545,6.31E-05,299,299,299 +810,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.09794944,0.0203224,0.002117178,0.45,0.45,0.45,0.45,0.45,0.45,0.010526325,0.003348179,2.96E-05,299,299,299 +811,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.253952864,0.304950429,0.00184048,0.45,0.45,0.45,0.45,0.45,0.45,0.214213198,0.626011038,0.000641542,299,299,299 +812,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.19017113,0.05116495,0.002022036,0.45,0.45,0.45,0.45,0.45,0.45,0.104595778,0.179584364,0.000273137,299,299,299 +813,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.168047576,0.032967291,0.002067528,0.45,0.45,0.45,0.45,0.45,0.45,0.051270964,0.126949727,0.00014298,299,299,299 +814,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.160311838,0.019505166,0.002083223,0.45,0.45,0.45,0.45,0.45,0.45,0.022099097,0.004024283,6.45E-05,299,299,299 +815,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.158557258,0.019120645,0.002087782,0.45,0.45,0.45,0.45,0.45,0.45,0.010717869,0.001954162,3.17E-05,299,299,299 +816,OGC_AmsterdamUMC_Bayesian_biexp,Liver,10,0.11,0.1,0.0015,0.170376565,0.469616209,0.001363028,0.45,0.45,0.45,0.45,0.45,0.45,0.138211369,0.73197684,0.000361914,299,299,299 +817,OGC_AmsterdamUMC_Bayesian_biexp,Liver,30,0.11,0.1,0.0015,0.118109407,0.227068026,0.00148604,0.45,0.45,0.45,0.45,0.45,0.45,0.034259388,0.390847594,9.96E-05,299,299,299 +818,OGC_AmsterdamUMC_Bayesian_biexp,Liver,50,0.11,0.1,0.0015,0.112169947,0.131862486,0.001495879,0.45,0.45,0.45,0.45,0.45,0.45,0.015397656,0.168625986,5.12E-05,299,299,299 +819,OGC_AmsterdamUMC_Bayesian_biexp,Liver,100,0.11,0.1,0.0015,0.110516961,0.104566165,0.001498173,0.45,0.45,0.45,0.45,0.45,0.45,0.007525505,0.028196631,2.47E-05,299,299,299 +820,OGC_AmsterdamUMC_Bayesian_biexp,Liver,200,0.11,0.1,0.0015,0.110097109,0.101175496,0.001499224,0.45,0.45,0.45,0.45,0.45,0.45,0.003766265,0.011617012,1.22E-05,299,299,299 +821,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.246528058,0.348133574,0.002092922,0.45,0.45,0.45,0.45,0.45,0.45,0.181136487,0.627154956,0.000656664,299,299,299 +822,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.158668839,0.150740461,0.002380129,0.45,0.45,0.45,0.45,0.45,0.45,0.044335382,0.290507088,0.000184759,299,299,299 +823,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.151909831,0.099101478,0.00239319,0.45,0.45,0.45,0.45,0.45,0.45,0.017898097,0.159015209,9.10E-05,299,299,299 +824,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.15045406,0.081837382,0.00239709,0.45,0.45,0.45,0.45,0.45,0.45,0.008545496,0.014613763,4.40E-05,299,299,299 +825,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150083029,0.080521341,0.002398773,0.45,0.45,0.45,0.45,0.45,0.45,0.004248303,0.007052208,2.19E-05,299,299,299 +826,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,10,0.07,0.07,0.0015,0.132992854,0.461997483,0.001368316,0.45,0.45,0.45,0.45,0.45,0.45,0.140522744,0.734010314,0.000346092,299,299,299 +827,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,30,0.07,0.07,0.0015,0.088451794,0.289658965,0.001467626,0.45,0.45,0.45,0.45,0.45,0.45,0.050844126,0.529373222,0.000119387,299,299,299 +828,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,50,0.07,0.07,0.0015,0.076126593,0.156862196,0.001489877,0.45,0.45,0.45,0.45,0.45,0.45,0.024226688,0.309458479,6.35E-05,299,299,299 +829,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070963889,0.078449632,0.001497432,0.45,0.45,0.45,0.45,0.45,0.45,0.008117474,0.04692124,2.53E-05,299,299,299 +830,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,200,0.07,0.07,0.0015,0.070185419,0.071558335,0.001499053,0.45,0.45,0.45,0.45,0.45,0.45,0.00403494,0.01296711,1.23E-05,299,299,299 +831,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,10,0.15,0.08,0.0024,0.246528058,0.348133574,0.002092922,0.45,0.45,0.45,0.45,0.45,0.45,0.181136487,0.627154956,0.000656664,299,299,299 +832,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,30,0.15,0.08,0.0024,0.158668839,0.150740461,0.002380129,0.45,0.45,0.45,0.45,0.45,0.45,0.044335382,0.290507088,0.000184759,299,299,299 +833,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,50,0.15,0.08,0.0024,0.151909831,0.099101478,0.00239319,0.45,0.45,0.45,0.45,0.45,0.45,0.017898097,0.159015209,9.10E-05,299,299,299 +834,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,100,0.15,0.08,0.0024,0.15045406,0.081837382,0.00239709,0.45,0.45,0.45,0.45,0.45,0.45,0.008545496,0.014613763,4.40E-05,299,299,299 +835,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150083029,0.080521341,0.002398773,0.45,0.45,0.45,0.45,0.45,0.45,0.004248303,0.007052208,2.19E-05,299,299,299 +836,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,10,0.15,0.01,0.0013,0.177581724,0.43065719,0.00125655,0.45,0.45,0.45,0.45,0.45,0.45,0.165637117,0.745081524,0.000402664,299,299,299 +837,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,30,0.15,0.01,0.0013,0.1765654,0.060525435,0.001260986,0.45,0.45,0.45,0.45,0.45,0.45,0.094130606,0.261126586,0.000185523,299,299,299 +838,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,50,0.15,0.01,0.0013,0.169797776,0.017228122,0.001269147,0.45,0.45,0.45,0.45,0.45,0.45,0.069191166,0.053040216,0.00012962,299,299,299 +839,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,100,0.15,0.01,0.0013,0.156843916,0.010274465,0.001288256,0.45,0.45,0.45,0.45,0.45,0.45,0.033098327,0.002805935,6.20E-05,299,299,299 +840,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,200,0.15,0.01,0.0013,0.151525029,0.010057823,0.001296965,0.45,0.45,0.45,0.45,0.45,0.45,0.015004214,0.001277288,2.91E-05,299,299,299 +841,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,10,0.07,0.01,0.003,0.211255538,0.249229776,0.002501254,0.45,0.45,0.45,0.45,0.45,0.45,0.261211569,0.559657731,0.000882896,299,299,299 +842,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,30,0.07,0.01,0.003,0.129163583,0.267009677,0.002882556,0.45,0.45,0.45,0.45,0.45,0.45,0.179356053,0.595048801,0.000417502,299,299,299 +843,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,50,0.07,0.01,0.003,0.117317522,0.229011082,0.002931461,0.45,0.45,0.45,0.45,0.45,0.45,0.148570784,0.554095365,0.000298907,299,299,299 +844,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,100,0.07,0.01,0.003,0.116118731,0.09998442,0.002945039,0.45,0.45,0.45,0.45,0.45,0.45,0.115927314,0.331589358,0.000200448,299,299,299 +845,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,200,0.07,0.01,0.003,0.09852404,0.015344494,0.002964763,0.45,0.45,0.45,0.45,0.45,0.45,0.077127196,0.023425454,0.000123398,299,299,299 +846,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.253952864,0.304950429,0.00184048,0.45,0.45,0.45,0.45,0.45,0.45,0.214213198,0.626011038,0.000641542,299,299,299 +847,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.19017113,0.05116495,0.002022036,0.45,0.45,0.45,0.45,0.45,0.45,0.104595778,0.179584364,0.000273137,299,299,299 +848,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.168047576,0.032967291,0.002067528,0.45,0.45,0.45,0.45,0.45,0.45,0.051270964,0.126949727,0.00014298,299,299,299 +849,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.160311838,0.019505166,0.002083223,0.45,0.45,0.45,0.45,0.45,0.45,0.022099097,0.004024283,6.45E-05,299,299,299 +850,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.158557258,0.019120645,0.002087782,0.45,0.45,0.45,0.45,0.45,0.45,0.010717869,0.001954162,3.17E-05,299,299,299 +851,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.188596573,0.38583104,0.001898976,0.45,0.45,0.45,0.45,0.45,0.45,0.198632494,0.722936114,0.000578514,299,299,299 +852,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.141555513,0.177123403,0.00204074,0.45,0.45,0.45,0.45,0.45,0.45,0.11154362,0.465680626,0.000257701,299,299,299 +853,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.118643922,0.042124429,0.002079695,0.45,0.45,0.45,0.45,0.45,0.45,0.067807516,0.140865944,0.00015212,299,299,299 +854,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.100892171,0.022835281,0.002111271,0.45,0.45,0.45,0.45,0.45,0.45,0.023312451,0.019731545,6.31E-05,299,299,299 +855,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.09794944,0.0203224,0.002117178,0.45,0.45,0.45,0.45,0.45,0.45,0.010526325,0.003348179,2.96E-05,299,299,299 +856,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,10,0.69,0.029,0.00131,0.694246361,0.033212555,0.00115663,0.45,0.45,0.45,0.45,0.45,0.45,0.110159259,0.019304814,0.000818021,299,299,299 +857,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,30,0.69,0.029,0.00131,0.690033088,0.029354533,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083089,0.003629524,0.000284879,299,299,299 +858,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,50,0.69,0.029,0.00131,0.689921486,0.029138649,0.001303149,0.45,0.45,0.45,0.45,0.45,0.45,0.021377248,0.002138348,0.000166105,299,299,299 +859,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,100,0.69,0.029,0.00131,0.689787379,0.029133683,0.001306796,0.45,0.45,0.45,0.45,0.45,0.45,0.01088051,0.001283354,8.28E-05,299,299,299 +860,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,200,0.69,0.029,0.00131,0.689676541,0.029076305,0.001308018,0.45,0.45,0.45,0.45,0.45,0.45,0.005833229,0.000767401,4.22E-05,299,299,299 +861,OGC_AmsterdamUMC_Bayesian_biexp,spleen,10,0.2,0.03,0.0013,0.25237841,0.233718646,0.001190598,0.45,0.45,0.45,0.45,0.45,0.45,0.143855248,0.502476063,0.000408973,299,299,299 +862,OGC_AmsterdamUMC_Bayesian_biexp,spleen,30,0.2,0.03,0.0013,0.206891202,0.03916511,0.001282641,0.45,0.45,0.45,0.45,0.45,0.45,0.039071411,0.057779458,0.000116385,299,299,299 +863,OGC_AmsterdamUMC_Bayesian_biexp,spleen,50,0.2,0.03,0.0013,0.202242373,0.031288038,0.001292582,0.45,0.45,0.45,0.45,0.45,0.45,0.022174323,0.008803339,6.60E-05,299,299,299 +864,OGC_AmsterdamUMC_Bayesian_biexp,spleen,100,0.2,0.03,0.0013,0.200493109,0.030248442,0.001297372,0.45,0.45,0.45,0.45,0.45,0.45,0.010743294,0.003831753,3.21E-05,299,299,299 +865,OGC_AmsterdamUMC_Bayesian_biexp,spleen,200,0.2,0.03,0.0013,0.200092044,0.03005272,0.001298969,0.45,0.45,0.45,0.45,0.45,0.45,0.005324478,0.001867046,1.59E-05,299,299,299 +866,OGC_AmsterdamUMC_Bayesian_biexp,st wall,10,0.3,0.012,0.0015,0.342171654,0.169021112,0.00137659,0.45,0.45,0.45,0.45,0.45,0.45,0.209121239,0.464911518,0.00063423,299,299,299 +867,OGC_AmsterdamUMC_Bayesian_biexp,st wall,30,0.3,0.012,0.0015,0.322622542,0.016311956,0.001442108,0.45,0.45,0.45,0.45,0.45,0.45,0.099524929,0.035894597,0.000264951,299,299,299 +868,OGC_AmsterdamUMC_Bayesian_biexp,st wall,50,0.3,0.012,0.0015,0.30738024,0.012384014,0.001479636,0.45,0.45,0.45,0.45,0.45,0.45,0.054398623,0.003119086,0.000143579,299,299,299 +869,OGC_AmsterdamUMC_Bayesian_biexp,st wall,100,0.3,0.012,0.0015,0.301693691,0.012087111,0.001494297,0.45,0.45,0.45,0.45,0.45,0.45,0.026341522,0.001432269,6.97E-05,299,299,299 +870,OGC_AmsterdamUMC_Bayesian_biexp,st wall,200,0.3,0.012,0.0015,0.300260349,0.012028906,0.001498479,0.45,0.45,0.45,0.45,0.45,0.45,0.013190925,0.000701135,3.49E-05,299,299,299 +871,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.694259683,0.033212126,0.001156518,0.45,0.45,0.45,0.45,0.45,0.45,0.110176564,0.019305205,0.000818178,299,299,299 +872,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.690033168,0.029354522,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083059,0.003629514,0.000284878,299,299,299 +873,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.689921506,0.029138647,0.001303149,0.45,0.45,0.45,0.45,0.45,0.45,0.021377243,0.002138347,0.000166105,299,299,299 +874,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.689705435,0.029147764,0.001308053,0.45,0.45,0.45,0.45,0.45,0.45,0.010825011,0.001291222,8.28E-05,299,299,299 +875,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.689703365,0.02907292,0.001307928,0.45,0.45,0.45,0.45,0.45,0.45,0.005797314,0.000764637,4.20E-05,299,299,299 +876,OGC_AmsterdamUMC_Bayesian_biexp,Vein,10,1,0.1,0.003,0.914295867,0.124952449,0.000341386,0.45,0.45,0.45,0.45,0.45,0.45,0.033870556,0.026492136,0.000759818,299,299,299 +877,OGC_AmsterdamUMC_Bayesian_biexp,Vein,30,1,0.1,0.003,0.973099781,0.107393408,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804762,0.007482951,0.000430418,299,299,299 +878,OGC_AmsterdamUMC_Bayesian_biexp,Vein,50,1,0.1,0.003,0.984111119,0.1042867,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676853,0.004344244,0.00041008,299,299,299 +879,OGC_AmsterdamUMC_Bayesian_biexp,Vein,100,1,0.1,0.003,0.992309696,0.102047955,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303774,0.002125803,0.000377336,299,299,299 +880,OGC_AmsterdamUMC_Bayesian_biexp,Vein,200,1,0.1,0.003,0.996293962,0.100989053,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146354,0.001053029,0.00035602,299,299,299 +881,OGC_AmsterdamUMC_biexp,Artery,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 +882,OGC_AmsterdamUMC_biexp,Artery,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 +883,OGC_AmsterdamUMC_biexp,Artery,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 +884,OGC_AmsterdamUMC_biexp,Artery,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296025,0.001835208,0.000373115,299,299,299 +885,OGC_AmsterdamUMC_biexp,Artery,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 +886,OGC_AmsterdamUMC_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.694830689,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.09780078,0.017042154,0.000744262,299,299,299 +887,OGC_AmsterdamUMC_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.689570851,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833214,0.003283099,0.000279782,299,299,299 +888,OGC_AmsterdamUMC_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.689825694,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 +889,OGC_AmsterdamUMC_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663163,0.00093864,8.27E-05,299,299,299 +890,OGC_AmsterdamUMC_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 +891,OGC_AmsterdamUMC_biexp,Blood RA,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 +892,OGC_AmsterdamUMC_biexp,Blood RA,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 +893,OGC_AmsterdamUMC_biexp,Blood RA,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 +894,OGC_AmsterdamUMC_biexp,Blood RA,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296025,0.001835208,0.000373115,299,299,299 +895,OGC_AmsterdamUMC_biexp,Blood RA,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 +896,OGC_AmsterdamUMC_biexp,Blood RV,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 +897,OGC_AmsterdamUMC_biexp,Blood RV,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 +898,OGC_AmsterdamUMC_biexp,Blood RV,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 +899,OGC_AmsterdamUMC_biexp,Blood RV,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296024,0.001835208,0.000373115,299,299,299 +900,OGC_AmsterdamUMC_biexp,Blood RV,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 +901,OGC_AmsterdamUMC_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.694830688,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.097800779,0.017042154,0.000744262,299,299,299 +902,OGC_AmsterdamUMC_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.689570851,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833215,0.003283099,0.000279782,299,299,299 +903,OGC_AmsterdamUMC_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.689825694,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 +904,OGC_AmsterdamUMC_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663162,0.00093864,8.27E-05,299,299,299 +905,OGC_AmsterdamUMC_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 +906,OGC_AmsterdamUMC_biexp,esophagus,10,0.32,0.03,0.00167,0.35470548,0.047383348,0.00153198,0.45,0.45,0.45,0.45,0.45,0.45,0.13774994,0.047240904,0.000533878,299,299,299 +907,OGC_AmsterdamUMC_biexp,esophagus,30,0.32,0.03,0.00167,0.323201589,0.031580986,0.001655541,0.45,0.45,0.45,0.45,0.45,0.45,0.040307219,0.008935255,0.000158206,299,299,299 +908,OGC_AmsterdamUMC_biexp,esophagus,50,0.32,0.03,0.00167,0.321129498,0.03054864,0.001663459,0.45,0.45,0.45,0.45,0.45,0.45,0.023732344,0.004681682,9.37E-05,299,299,299 +909,OGC_AmsterdamUMC_biexp,esophagus,100,0.32,0.03,0.00167,0.320280006,0.030151275,0.001667477,0.45,0.45,0.45,0.45,0.45,0.45,0.011733692,0.002219048,4.65E-05,299,299,299 +910,OGC_AmsterdamUMC_biexp,esophagus,200,0.32,0.03,0.00167,0.320069643,0.03004794,0.001668922,0.45,0.45,0.45,0.45,0.45,0.45,0.005847124,0.001095466,2.32E-05,299,299,299 +911,OGC_AmsterdamUMC_biexp,esophagus cont,10,0.32,0.03,0.00167,0.35470548,0.047383348,0.00153198,0.45,0.45,0.45,0.45,0.45,0.45,0.13774994,0.047240904,0.000533878,299,299,299 +912,OGC_AmsterdamUMC_biexp,esophagus cont,30,0.32,0.03,0.00167,0.323201589,0.031580986,0.001655541,0.45,0.45,0.45,0.45,0.45,0.45,0.040307219,0.008935255,0.000158206,299,299,299 +913,OGC_AmsterdamUMC_biexp,esophagus cont,50,0.32,0.03,0.00167,0.321129498,0.03054864,0.001663459,0.45,0.45,0.45,0.45,0.45,0.45,0.023732344,0.004681682,9.37E-05,299,299,299 +914,OGC_AmsterdamUMC_biexp,esophagus cont,100,0.32,0.03,0.00167,0.320280006,0.030151275,0.001667477,0.45,0.45,0.45,0.45,0.45,0.45,0.011733692,0.002219048,4.65E-05,299,299,299 +915,OGC_AmsterdamUMC_biexp,esophagus cont,200,0.32,0.03,0.00167,0.320069643,0.03004794,0.001668922,0.45,0.45,0.45,0.45,0.45,0.45,0.005847124,0.001095466,2.32E-05,299,299,299 +916,OGC_AmsterdamUMC_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.214810538,0.048796357,0.001804213,0.45,0.45,0.45,0.45,0.45,0.45,0.209309135,0.066901565,0.000588336,299,299,299 +917,OGC_AmsterdamUMC_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.146123885,0.037375552,0.002020465,0.45,0.45,0.45,0.45,0.45,0.45,0.110848492,0.048776668,0.000246047,299,299,299 +918,OGC_AmsterdamUMC_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.114091179,0.030627298,0.002084752,0.45,0.45,0.45,0.45,0.45,0.45,0.064994914,0.036675824,0.000145885,299,299,299 +919,OGC_AmsterdamUMC_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.100082483,0.021701285,0.002112334,0.45,0.45,0.45,0.45,0.45,0.45,0.022263982,0.008294895,5.99E-05,299,299,299 +920,OGC_AmsterdamUMC_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.09772011,0.020370443,0.002117738,0.45,0.45,0.45,0.45,0.45,0.45,0.010389839,0.003095148,2.89E-05,299,299,299 +921,OGC_AmsterdamUMC_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.277052826,0.043433581,0.001749879,0.45,0.45,0.45,0.45,0.45,0.45,0.215413209,0.061013276,0.000654646,299,299,299 +922,OGC_AmsterdamUMC_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.185983093,0.03025828,0.002023892,0.45,0.45,0.45,0.45,0.45,0.45,0.103473938,0.037662525,0.000263127,299,299,299 +923,OGC_AmsterdamUMC_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.165498696,0.022498245,0.002070863,0.45,0.45,0.45,0.45,0.45,0.45,0.047793894,0.016610459,0.000133108,299,299,299 +924,OGC_AmsterdamUMC_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.159741158,0.019563545,0.002084548,0.45,0.45,0.45,0.45,0.45,0.45,0.021794517,0.003786605,6.32E-05,299,299,299 +925,OGC_AmsterdamUMC_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.158391248,0.019154665,0.002088293,0.45,0.45,0.45,0.45,0.45,0.45,0.010651431,0.001787004,3.12E-05,299,299,299 +926,OGC_AmsterdamUMC_biexp,Liver,10,0.11,0.1,0.0015,0.168781484,0.099894666,0.001349805,0.45,0.45,0.45,0.45,0.45,0.45,0.122995139,0.077226501,0.000337253,299,299,299 +927,OGC_AmsterdamUMC_biexp,Liver,30,0.11,0.1,0.0015,0.114188732,0.11533162,0.001486326,0.45,0.45,0.45,0.45,0.45,0.45,0.021695942,0.055757947,8.44E-05,299,299,299 +928,OGC_AmsterdamUMC_biexp,Liver,50,0.11,0.1,0.0015,0.111084793,0.110147712,0.001495173,0.45,0.45,0.45,0.45,0.45,0.45,0.011834133,0.039914821,4.88E-05,299,299,299 +929,OGC_AmsterdamUMC_biexp,Liver,100,0.11,0.1,0.0015,0.11023119,0.103476574,0.001498292,0.45,0.45,0.45,0.45,0.45,0.45,0.005888085,0.020515928,2.44E-05,299,299,299 +930,OGC_AmsterdamUMC_biexp,Liver,200,0.11,0.1,0.0015,0.110047078,0.101125031,0.001499297,0.45,0.45,0.45,0.45,0.45,0.45,0.002932092,0.009885468,1.21E-05,299,299,299 +931,OGC_AmsterdamUMC_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.231050935,0.091810912,0.002101565,0.45,0.45,0.45,0.45,0.45,0.45,0.163284575,0.074014343,0.000597824,299,299,299 +932,OGC_AmsterdamUMC_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.154139538,0.093879239,0.002382889,0.45,0.45,0.45,0.45,0.45,0.45,0.02904806,0.045534186,0.000152633,299,299,299 +933,OGC_AmsterdamUMC_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.151153559,0.086098667,0.002393483,0.45,0.45,0.45,0.45,0.45,0.45,0.015671393,0.027210411,8.81E-05,299,299,299 +934,OGC_AmsterdamUMC_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.1502835,0.081740251,0.002397459,0.45,0.45,0.45,0.45,0.45,0.45,0.007706103,0.012594008,4.37E-05,299,299,299 +935,OGC_AmsterdamUMC_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150069319,0.080547345,0.002398908,0.45,0.45,0.45,0.45,0.45,0.45,0.003823755,0.006087445,2.18E-05,299,299,299 +936,OGC_AmsterdamUMC_biexp,myocardium ra,10,0.07,0.07,0.0015,0.140842582,0.081515442,0.001336838,0.45,0.45,0.45,0.45,0.45,0.45,0.133651655,0.07876375,0.000337383,299,299,299 +937,OGC_AmsterdamUMC_biexp,myocardium ra,30,0.07,0.07,0.0015,0.082928404,0.092538561,0.001469706,0.45,0.45,0.45,0.45,0.45,0.45,0.040894147,0.066999733,0.000102347,299,299,299 +938,OGC_AmsterdamUMC_biexp,myocardium ra,50,0.07,0.07,0.0015,0.072923246,0.086543489,0.001491418,0.45,0.45,0.45,0.45,0.45,0.45,0.015543584,0.050860949,5.16E-05,299,299,299 +939,OGC_AmsterdamUMC_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070524438,0.07533186,0.00149772,0.45,0.45,0.45,0.45,0.45,0.45,0.006825149,0.02513924,2.46E-05,299,299,299 +940,OGC_AmsterdamUMC_biexp,myocardium ra,200,0.07,0.07,0.0015,0.070121247,0.071492924,0.001499161,0.45,0.45,0.45,0.45,0.45,0.45,0.003381905,0.011183233,1.23E-05,299,299,299 +941,OGC_AmsterdamUMC_biexp,myocardium RV,10,0.15,0.08,0.0024,0.231050935,0.091810912,0.002101565,0.45,0.45,0.45,0.45,0.45,0.45,0.163284575,0.074014343,0.000597824,299,299,299 +942,OGC_AmsterdamUMC_biexp,myocardium RV,30,0.15,0.08,0.0024,0.154139538,0.093879239,0.002382889,0.45,0.45,0.45,0.45,0.45,0.45,0.02904806,0.045534186,0.000152633,299,299,299 +943,OGC_AmsterdamUMC_biexp,myocardium RV,50,0.15,0.08,0.0024,0.151153559,0.086098667,0.002393483,0.45,0.45,0.45,0.45,0.45,0.45,0.015671393,0.027210411,8.81E-05,299,299,299 +944,OGC_AmsterdamUMC_biexp,myocardium RV,100,0.15,0.08,0.0024,0.1502835,0.081740251,0.002397459,0.45,0.45,0.45,0.45,0.45,0.45,0.007706103,0.012594008,4.37E-05,299,299,299 +945,OGC_AmsterdamUMC_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150069319,0.080547345,0.002398908,0.45,0.45,0.45,0.45,0.45,0.45,0.003823755,0.006087445,2.18E-05,299,299,299 +946,OGC_AmsterdamUMC_biexp,pancreas,10,0.15,0.01,0.0013,0.184853536,0.047437871,0.001209842,0.45,0.45,0.45,0.45,0.45,0.45,0.161104188,0.066970242,0.000392891,299,299,299 +947,OGC_AmsterdamUMC_biexp,pancreas,30,0.15,0.01,0.0013,0.175898715,0.021364898,0.001256118,0.45,0.45,0.45,0.45,0.45,0.45,0.095961761,0.037269901,0.000184638,299,299,299 +948,OGC_AmsterdamUMC_biexp,pancreas,50,0.15,0.01,0.0013,0.166798143,0.013933985,0.001272394,0.45,0.45,0.45,0.45,0.45,0.45,0.068168734,0.02042812,0.00012557,299,299,299 +949,OGC_AmsterdamUMC_biexp,pancreas,100,0.15,0.01,0.0013,0.155050448,0.010314872,0.001290979,0.45,0.45,0.45,0.45,0.45,0.45,0.031969358,0.002475223,5.98E-05,299,299,299 +950,OGC_AmsterdamUMC_biexp,pancreas,200,0.15,0.01,0.0013,0.151155511,0.010077165,0.001297589,0.45,0.45,0.45,0.45,0.45,0.45,0.01486592,0.001141319,2.85E-05,299,299,299 +951,OGC_AmsterdamUMC_biexp,pericardium,10,0.07,0.01,0.003,0.262616476,0.030862518,0.00230294,0.45,0.45,0.45,0.45,0.45,0.45,0.288611722,0.05572886,0.000959963,299,299,299 +952,OGC_AmsterdamUMC_biexp,pericardium,30,0.07,0.01,0.003,0.171752737,0.02581912,0.002799011,0.45,0.45,0.45,0.45,0.45,0.45,0.188837545,0.047356901,0.000422024,299,299,299 +953,OGC_AmsterdamUMC_biexp,pericardium,50,0.07,0.01,0.003,0.154585153,0.026970109,0.002863767,0.45,0.45,0.45,0.45,0.45,0.45,0.156425794,0.048964477,0.000304247,299,299,299 +954,OGC_AmsterdamUMC_biexp,pericardium,100,0.07,0.01,0.003,0.130337929,0.022102308,0.00291709,0.45,0.45,0.45,0.45,0.45,0.45,0.119422596,0.039037367,0.000200857,299,299,299 +955,OGC_AmsterdamUMC_biexp,pericardium,200,0.07,0.01,0.003,0.098112492,0.013633683,0.002962208,0.45,0.45,0.45,0.45,0.45,0.45,0.074974965,0.020367551,0.000119613,299,299,299 +956,OGC_AmsterdamUMC_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.277052826,0.043433581,0.001749879,0.45,0.45,0.45,0.45,0.45,0.45,0.215413209,0.061013276,0.000654646,299,299,299 +957,OGC_AmsterdamUMC_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.185983093,0.03025828,0.002023892,0.45,0.45,0.45,0.45,0.45,0.45,0.103473938,0.037662525,0.000263127,299,299,299 +958,OGC_AmsterdamUMC_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.165498696,0.022498245,0.002070863,0.45,0.45,0.45,0.45,0.45,0.45,0.047793894,0.016610459,0.000133108,299,299,299 +959,OGC_AmsterdamUMC_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.159741158,0.019563545,0.002084548,0.45,0.45,0.45,0.45,0.45,0.45,0.021794517,0.003786605,6.32E-05,299,299,299 +960,OGC_AmsterdamUMC_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.158391248,0.019154665,0.002088293,0.45,0.45,0.45,0.45,0.45,0.45,0.010651431,0.001787004,3.12E-05,299,299,299 +961,OGC_AmsterdamUMC_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.214810538,0.048796357,0.001804213,0.45,0.45,0.45,0.45,0.45,0.45,0.209309135,0.066901565,0.000588336,299,299,299 +962,OGC_AmsterdamUMC_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.146123885,0.037375552,0.002020465,0.45,0.45,0.45,0.45,0.45,0.45,0.110848492,0.048776668,0.000246047,299,299,299 +963,OGC_AmsterdamUMC_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.114091179,0.030627298,0.002084752,0.45,0.45,0.45,0.45,0.45,0.45,0.064994914,0.036675824,0.000145885,299,299,299 +964,OGC_AmsterdamUMC_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.100082483,0.021701285,0.002112334,0.45,0.45,0.45,0.45,0.45,0.45,0.022263982,0.008294895,5.99E-05,299,299,299 +965,OGC_AmsterdamUMC_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.09772011,0.020370443,0.002117738,0.45,0.45,0.45,0.45,0.45,0.45,0.010389839,0.003095148,2.89E-05,299,299,299 +966,OGC_AmsterdamUMC_biexp,small intestine,10,0.69,0.029,0.00131,0.694830688,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.097800779,0.017042154,0.000744262,299,299,299 +967,OGC_AmsterdamUMC_biexp,small intestine,30,0.69,0.029,0.00131,0.68957085,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833214,0.003283099,0.000279782,299,299,299 +968,OGC_AmsterdamUMC_biexp,small intestine,50,0.69,0.029,0.00131,0.689825694,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 +969,OGC_AmsterdamUMC_biexp,small intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663163,0.00093864,8.27E-05,299,299,299 +970,OGC_AmsterdamUMC_biexp,small intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 +971,OGC_AmsterdamUMC_biexp,spleen,10,0.2,0.03,0.0013,0.248565346,0.056879059,0.001171091,0.45,0.45,0.45,0.45,0.45,0.45,0.138108153,0.061428407,0.000385049,299,299,299 +972,OGC_AmsterdamUMC_biexp,spleen,30,0.2,0.03,0.0013,0.204799212,0.034403223,0.001285375,0.45,0.45,0.45,0.45,0.45,0.45,0.03738895,0.019693299,0.000109827,299,299,299 +973,OGC_AmsterdamUMC_biexp,spleen,50,0.2,0.03,0.0013,0.201678468,0.031242098,0.001293839,0.45,0.45,0.45,0.45,0.45,0.45,0.021454673,0.007752376,6.41E-05,299,299,299 +974,OGC_AmsterdamUMC_biexp,spleen,100,0.2,0.03,0.0013,0.200407474,0.030310793,0.001297851,0.45,0.45,0.45,0.45,0.45,0.45,0.010471959,0.003428525,3.16E-05,299,299,299 +975,OGC_AmsterdamUMC_biexp,spleen,200,0.2,0.03,0.0013,0.200098828,0.030092008,0.001299152,0.45,0.45,0.45,0.45,0.45,0.45,0.00519381,0.001669077,1.57E-05,299,299,299 +976,OGC_AmsterdamUMC_biexp,st wall,10,0.3,0.012,0.0015,0.361593394,0.032332875,0.001301322,0.45,0.45,0.45,0.45,0.45,0.45,0.208350215,0.051434222,0.000612312,299,299,299 +977,OGC_AmsterdamUMC_biexp,st wall,30,0.3,0.012,0.0015,0.316719659,0.013702255,0.001453591,0.45,0.45,0.45,0.45,0.45,0.45,0.097052946,0.008564855,0.000254687,299,299,299 +978,OGC_AmsterdamUMC_biexp,st wall,50,0.3,0.012,0.0015,0.305193534,0.01243237,0.001484366,0.45,0.45,0.45,0.45,0.45,0.45,0.05361376,0.002822989,0.000140362,299,299,299 +979,OGC_AmsterdamUMC_biexp,st wall,100,0.3,0.012,0.0015,0.301119332,0.012113594,0.001495716,0.45,0.45,0.45,0.45,0.45,0.45,0.026184332,0.001290746,6.86E-05,299,299,299 +980,OGC_AmsterdamUMC_biexp,st wall,200,0.3,0.012,0.0015,0.300225825,0.012033453,0.001498642,0.45,0.45,0.45,0.45,0.45,0.45,0.013026285,0.00063034,3.41E-05,299,299,299 +981,OGC_AmsterdamUMC_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.694830689,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.097800779,0.017042154,0.000744262,299,299,299 +982,OGC_AmsterdamUMC_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.689570851,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833214,0.003283099,0.000279782,299,299,299 +983,OGC_AmsterdamUMC_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.689825693,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 +984,OGC_AmsterdamUMC_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663162,0.00093864,8.27E-05,299,299,299 +985,OGC_AmsterdamUMC_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 +986,OGC_AmsterdamUMC_biexp,Vein,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 +987,OGC_AmsterdamUMC_biexp,Vein,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 +988,OGC_AmsterdamUMC_biexp,Vein,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 +989,OGC_AmsterdamUMC_biexp,Vein,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296024,0.001835208,0.000373115,299,299,299 +990,OGC_AmsterdamUMC_biexp,Vein,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 +991,OGC_AmsterdamUMC_biexp_segmented,Artery,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.033859599,0.000876167,299,299,299 +992,OGC_AmsterdamUMC_biexp_segmented,Artery,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 +993,OGC_AmsterdamUMC_biexp_segmented,Artery,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 +994,OGC_AmsterdamUMC_biexp_segmented,Artery,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 +995,OGC_AmsterdamUMC_biexp_segmented,Artery,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 +996,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,10,0.69,0.029,0.00131,0.66103411,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 +997,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 +998,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 +999,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 +1000,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 +1001,OGC_AmsterdamUMC_biexp_segmented,Blood RA,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.033859599,0.000876167,299,299,299 +1002,OGC_AmsterdamUMC_biexp_segmented,Blood RA,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 +1003,OGC_AmsterdamUMC_biexp_segmented,Blood RA,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 +1004,OGC_AmsterdamUMC_biexp_segmented,Blood RA,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 +1005,OGC_AmsterdamUMC_biexp_segmented,Blood RA,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 +1006,OGC_AmsterdamUMC_biexp_segmented,Blood RV,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.0338596,0.000876167,299,299,299 +1007,OGC_AmsterdamUMC_biexp_segmented,Blood RV,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 +1008,OGC_AmsterdamUMC_biexp_segmented,Blood RV,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 +1009,OGC_AmsterdamUMC_biexp_segmented,Blood RV,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 +1010,OGC_AmsterdamUMC_biexp_segmented,Blood RV,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 +1011,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,10,0.69,0.029,0.00131,0.66103411,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 +1012,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 +1013,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 +1014,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 +1015,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 +1016,OGC_AmsterdamUMC_biexp_segmented,esophagus,10,0.32,0.03,0.00167,0.299578687,0.132769824,0.001689808,0.45,0.45,0.45,0.45,0.45,0.45,0.149762289,0.329849865,0.000548091,299,299,299 +1017,OGC_AmsterdamUMC_biexp_segmented,esophagus,30,0.32,0.03,0.00167,0.313170236,0.051620312,0.001681955,0.45,0.45,0.45,0.45,0.45,0.45,0.048629007,0.015010201,0.000178975,299,299,299 +1018,OGC_AmsterdamUMC_biexp_segmented,esophagus,50,0.32,0.03,0.00167,0.314888479,0.050082144,0.001679983,0.45,0.45,0.45,0.45,0.45,0.45,0.02898245,0.000997702,0.000106702,299,299,299 +1019,OGC_AmsterdamUMC_biexp_segmented,esophagus,100,0.32,0.03,0.00167,0.315755921,0.050000002,0.001679529,0.45,0.45,0.45,0.45,0.45,0.45,0.014440569,4.49E-09,5.32E-05,299,299,299 +1020,OGC_AmsterdamUMC_biexp_segmented,esophagus,200,0.32,0.03,0.00167,0.316057259,0.05,0.001679626,0.45,0.45,0.45,0.45,0.45,0.45,0.007211014,1.36E-09,2.65E-05,299,299,299 +1021,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,10,0.32,0.03,0.00167,0.299578687,0.132769824,0.001689808,0.45,0.45,0.45,0.45,0.45,0.45,0.149762289,0.329849865,0.000548091,299,299,299 +1022,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,30,0.32,0.03,0.00167,0.313170236,0.051620312,0.001681955,0.45,0.45,0.45,0.45,0.45,0.45,0.048629007,0.015010201,0.000178975,299,299,299 +1023,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,50,0.32,0.03,0.00167,0.314888479,0.050082144,0.001679983,0.45,0.45,0.45,0.45,0.45,0.45,0.02898245,0.000997702,0.000106702,299,299,299 +1024,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,100,0.32,0.03,0.00167,0.315755921,0.050000002,0.001679529,0.45,0.45,0.45,0.45,0.45,0.45,0.014440569,4.49E-09,5.32E-05,299,299,299 +1025,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,200,0.32,0.03,0.00167,0.316057259,0.05,0.001679626,0.45,0.45,0.45,0.45,0.45,0.45,0.007211014,1.36E-09,2.65E-05,299,299,299 +1026,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,10,0.097,0.02,0.00212,0.077028926,0.290009002,0.002128833,0.45,0.45,0.45,0.45,0.45,0.45,0.166304018,0.603644499,0.000516168,299,299,299 +1027,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,30,0.097,0.02,0.00212,0.087000097,0.151929914,0.00213593,0.45,0.45,0.45,0.45,0.45,0.45,0.057497641,0.364025908,0.000176993,299,299,299 +1028,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,50,0.097,0.02,0.00212,0.088978004,0.061805559,0.002133876,0.45,0.45,0.45,0.45,0.45,0.45,0.034284374,0.081859742,0.000105633,299,299,299 +1029,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,100,0.097,0.02,0.00212,0.089983033,0.05135883,0.002133335,0.45,0.45,0.45,0.45,0.45,0.45,0.017084034,0.017394739,5.27E-05,299,299,299 +1030,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,200,0.097,0.02,0.00212,0.090334462,0.050000004,0.002133382,0.45,0.45,0.45,0.45,0.45,0.45,0.008530891,1.85E-08,2.63E-05,299,299,299 +1031,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,10,0.158,0.019,0.00209,0.131137655,0.239292737,0.002112941,0.45,0.45,0.45,0.45,0.45,0.45,0.168355074,0.518065731,0.000552808,299,299,299 +1032,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,30,0.158,0.019,0.00209,0.142171495,0.069512513,0.002120047,0.45,0.45,0.45,0.45,0.45,0.45,0.057338981,0.134611156,0.000187357,299,299,299 +1033,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,50,0.158,0.019,0.00209,0.14423045,0.060273334,0.002117675,0.45,0.45,0.45,0.45,0.45,0.45,0.034167556,0.123416844,0.000111754,299,299,299 +1034,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,100,0.158,0.019,0.00209,0.145267407,0.050000004,0.002117022,0.45,0.45,0.45,0.45,0.45,0.45,0.0170205,2.79E-08,5.57E-05,299,299,299 +1035,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,200,0.158,0.019,0.00209,0.145626005,0.050000001,0.002117053,0.45,0.45,0.45,0.45,0.45,0.45,0.008498287,3.38E-09,2.78E-05,299,299,299 +1036,OGC_AmsterdamUMC_biexp_segmented,Liver,10,0.11,0.1,0.0015,0.09723218,0.355598434,0.001508591,0.45,0.45,0.45,0.45,0.45,0.45,0.134839809,0.63250244,0.000367328,299,299,299 +1037,OGC_AmsterdamUMC_biexp_segmented,Liver,30,0.11,0.1,0.0015,0.107694887,0.226173724,0.001500169,0.45,0.45,0.45,0.45,0.45,0.45,0.045147271,0.380098791,0.000121951,299,299,299 +1038,OGC_AmsterdamUMC_biexp_segmented,Liver,50,0.11,0.1,0.0015,0.108918955,0.137632134,0.001499576,0.45,0.45,0.45,0.45,0.45,0.45,0.026992577,0.173220332,7.29E-05,299,299,299 +1039,OGC_AmsterdamUMC_biexp_segmented,Liver,100,0.11,0.1,0.0015,0.109571577,0.107280004,0.001499593,0.45,0.45,0.45,0.45,0.45,0.45,0.013470079,0.036553592,3.64E-05,299,299,299 +1040,OGC_AmsterdamUMC_biexp_segmented,Liver,200,0.11,0.1,0.0015,0.109813662,0.102101719,0.001499748,0.45,0.45,0.45,0.45,0.45,0.45,0.006729984,0.015737208,1.82E-05,299,299,299 +1041,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,10,0.15,0.08,0.0024,0.138704739,0.29533039,0.002365852,0.45,0.45,0.45,0.45,0.45,0.45,0.183735146,0.57405074,0.000643158,299,299,299 +1042,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,30,0.15,0.08,0.0024,0.14560428,0.179147801,0.002403948,0.45,0.45,0.45,0.45,0.45,0.45,0.063461485,0.317296307,0.000220884,299,299,299 +1043,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,50,0.15,0.08,0.0024,0.148050214,0.111074471,0.002400847,0.45,0.45,0.45,0.45,0.45,0.45,0.037761489,0.164533235,0.00013167,299,299,299 +1044,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,100,0.15,0.08,0.0024,0.149292946,0.085364755,0.00239979,0.45,0.45,0.45,0.45,0.45,0.45,0.018795813,0.027258327,6.56E-05,299,299,299 +1045,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,200,0.15,0.08,0.0024,0.14971243,0.081447212,0.002399738,0.45,0.45,0.45,0.45,0.45,0.45,0.009381883,0.011367113,3.28E-05,299,299,299 +1046,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,10,0.07,0.07,0.0015,0.057893689,0.331287936,0.001507457,0.45,0.45,0.45,0.45,0.45,0.45,0.133663508,0.620007223,0.000349562,299,299,299 +1047,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,30,0.07,0.07,0.0015,0.067747563,0.252860532,0.001500075,0.45,0.45,0.45,0.45,0.45,0.45,0.045127732,0.462488933,0.000116654,299,299,299 +1048,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,50,0.07,0.07,0.0015,0.068936525,0.15322108,0.001499565,0.45,0.45,0.45,0.45,0.45,0.45,0.026987481,0.288290131,6.98E-05,299,299,299 +1049,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,100,0.07,0.07,0.0015,0.069574598,0.085183261,0.001499605,0.45,0.45,0.45,0.45,0.45,0.45,0.013469157,0.05742761,3.48E-05,299,299,299 +1050,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,200,0.07,0.07,0.0015,0.069813077,0.073243749,0.00149976,0.45,0.45,0.45,0.45,0.45,0.45,0.006729801,0.017659573,1.74E-05,299,299,299 +1051,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,10,0.15,0.08,0.0024,0.138704739,0.29533039,0.002365852,0.45,0.45,0.45,0.45,0.45,0.45,0.183735146,0.57405074,0.000643158,299,299,299 +1052,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,30,0.15,0.08,0.0024,0.14560428,0.179147801,0.002403948,0.45,0.45,0.45,0.45,0.45,0.45,0.063461485,0.317296307,0.000220884,299,299,299 +1053,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,50,0.15,0.08,0.0024,0.148050214,0.111074471,0.002400847,0.45,0.45,0.45,0.45,0.45,0.45,0.037761489,0.164533235,0.00013167,299,299,299 +1054,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,100,0.15,0.08,0.0024,0.149292946,0.085364755,0.00239979,0.45,0.45,0.45,0.45,0.45,0.45,0.018795813,0.027258327,6.56E-05,299,299,299 +1055,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,200,0.15,0.08,0.0024,0.14971243,0.081447212,0.002399738,0.45,0.45,0.45,0.45,0.45,0.45,0.009381883,0.011367113,3.28E-05,299,299,299 +1056,OGC_AmsterdamUMC_biexp_segmented,pancreas,10,0.15,0.01,0.0013,0.100244765,0.266741521,0.001375481,0.45,0.45,0.45,0.45,0.45,0.45,0.12991239,0.562164106,0.000344117,299,299,299 +1057,OGC_AmsterdamUMC_biexp_segmented,pancreas,30,0.15,0.01,0.0013,0.110360761,0.066171672,0.001366674,0.45,0.45,0.45,0.45,0.45,0.45,0.043311017,0.14078967,0.000113721,299,299,299 +1058,OGC_AmsterdamUMC_biexp_segmented,pancreas,50,0.15,0.01,0.0013,0.111480584,0.053970504,0.001366249,0.45,0.45,0.45,0.45,0.45,0.45,0.025904067,0.047942925,6.80E-05,299,299,299 +1059,OGC_AmsterdamUMC_biexp_segmented,pancreas,100,0.15,0.01,0.0013,0.112080764,0.050000007,0.001366329,0.45,0.45,0.45,0.45,0.45,0.45,0.012929485,1.70E-08,3.39E-05,299,299,299 +1060,OGC_AmsterdamUMC_biexp_segmented,pancreas,200,0.15,0.01,0.0013,0.112304748,0.050000001,0.001366495,0.45,0.45,0.45,0.45,0.45,0.45,0.006460402,6.33E-09,1.70E-05,299,299,299 +1061,OGC_AmsterdamUMC_biexp_segmented,pericardium,10,0.07,0.01,0.003,0.052038305,0.178714631,0.002908101,0.45,0.45,0.45,0.45,0.45,0.45,0.209231801,0.422831402,0.00073985,299,299,299 +1062,OGC_AmsterdamUMC_biexp_segmented,pericardium,30,0.07,0.01,0.003,0.034458203,0.193439082,0.003063298,0.45,0.45,0.45,0.45,0.45,0.45,0.080479568,0.466549616,0.00027972,299,299,299 +1063,OGC_AmsterdamUMC_biexp_segmented,pericardium,50,0.07,0.01,0.003,0.037086059,0.183326259,0.003062236,0.45,0.45,0.45,0.45,0.45,0.45,0.047965549,0.44236333,0.000167661,299,299,299 +1064,OGC_AmsterdamUMC_biexp_segmented,pericardium,100,0.07,0.01,0.003,0.038748507,0.106024068,0.003060709,0.45,0.45,0.45,0.45,0.45,0.45,0.023849433,0.267496956,8.35E-05,299,299,299 +1065,OGC_AmsterdamUMC_biexp_segmented,pericardium,200,0.07,0.01,0.003,0.039300842,0.050013545,0.003060532,0.45,0.45,0.45,0.45,0.45,0.45,0.011899777,0.000219339,4.17E-05,299,299,299 +1066,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,10,0.158,0.019,0.00209,0.131137655,0.239292737,0.002112941,0.45,0.45,0.45,0.45,0.45,0.45,0.168355074,0.518065731,0.000552808,299,299,299 +1067,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,30,0.158,0.019,0.00209,0.142171495,0.069512513,0.002120047,0.45,0.45,0.45,0.45,0.45,0.45,0.057338981,0.134611156,0.000187357,299,299,299 +1068,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,50,0.158,0.019,0.00209,0.14423045,0.060273334,0.002117675,0.45,0.45,0.45,0.45,0.45,0.45,0.034167556,0.123416844,0.000111754,299,299,299 +1069,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,100,0.158,0.019,0.00209,0.145267407,0.050000004,0.002117022,0.45,0.45,0.45,0.45,0.45,0.45,0.0170205,2.79E-08,5.57E-05,299,299,299 +1070,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,200,0.158,0.019,0.00209,0.145626005,0.050000001,0.002117053,0.45,0.45,0.45,0.45,0.45,0.45,0.008498287,3.38E-09,2.78E-05,299,299,299 +1071,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,10,0.097,0.02,0.00212,0.077028926,0.290009002,0.002128833,0.45,0.45,0.45,0.45,0.45,0.45,0.166304018,0.603644499,0.000516168,299,299,299 +1072,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,30,0.097,0.02,0.00212,0.087000097,0.151929914,0.00213593,0.45,0.45,0.45,0.45,0.45,0.45,0.057497641,0.364025908,0.000176993,299,299,299 +1073,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,50,0.097,0.02,0.00212,0.088978004,0.061805559,0.002133876,0.45,0.45,0.45,0.45,0.45,0.45,0.034284374,0.081859742,0.000105633,299,299,299 +1074,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,100,0.097,0.02,0.00212,0.089983033,0.05135883,0.002133335,0.45,0.45,0.45,0.45,0.45,0.45,0.017084034,0.017394739,5.27E-05,299,299,299 +1075,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,200,0.097,0.02,0.00212,0.090334462,0.050000004,0.002133382,0.45,0.45,0.45,0.45,0.45,0.45,0.008530891,1.85E-08,2.63E-05,299,299,299 +1076,OGC_AmsterdamUMC_biexp_segmented,small intestine,10,0.69,0.029,0.00131,0.66103411,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 +1077,OGC_AmsterdamUMC_biexp_segmented,small intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 +1078,OGC_AmsterdamUMC_biexp_segmented,small intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 +1079,OGC_AmsterdamUMC_biexp_segmented,small intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 +1080,OGC_AmsterdamUMC_biexp_segmented,small intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 +1081,OGC_AmsterdamUMC_biexp_segmented,spleen,10,0.2,0.03,0.0013,0.185203923,0.209255851,0.001314366,0.45,0.45,0.45,0.45,0.45,0.45,0.128284621,0.437950501,0.000366856,299,299,299 +1082,OGC_AmsterdamUMC_biexp_segmented,spleen,30,0.2,0.03,0.0013,0.195921638,0.057079115,0.001304087,0.45,0.45,0.45,0.45,0.45,0.45,0.041988476,0.053168548,0.000119667,299,299,299 +1083,OGC_AmsterdamUMC_biexp_segmented,spleen,50,0.2,0.03,0.0013,0.197041413,0.050489372,0.00130363,0.45,0.45,0.45,0.45,0.45,0.45,0.025108237,0.003839602,7.15E-05,299,299,299 +1084,OGC_AmsterdamUMC_biexp_segmented,spleen,100,0.2,0.03,0.0013,0.197638649,0.05000001,0.001303715,0.45,0.45,0.45,0.45,0.45,0.45,0.012531224,1.91E-08,3.57E-05,299,299,299 +1085,OGC_AmsterdamUMC_biexp_segmented,spleen,200,0.2,0.03,0.0013,0.197860312,0.05000001,0.001303893,0.45,0.45,0.45,0.45,0.45,0.45,0.00626126,1.66E-08,1.78E-05,299,299,299 +1086,OGC_AmsterdamUMC_biexp_segmented,st wall,10,0.3,0.012,0.0015,0.224968564,0.152728411,0.001647922,0.45,0.45,0.45,0.45,0.45,0.45,0.147842247,0.375057604,0.000489535,299,299,299 +1087,OGC_AmsterdamUMC_biexp_segmented,st wall,30,0.3,0.012,0.0015,0.238787521,0.052350235,0.001633903,0.45,0.45,0.45,0.45,0.45,0.45,0.048525317,0.030964857,0.000160158,299,299,299 +1088,OGC_AmsterdamUMC_biexp_segmented,st wall,50,0.3,0.012,0.0015,0.240378264,0.05,0.001632374,0.45,0.45,0.45,0.45,0.45,0.45,0.028947438,2.28E-09,9.56E-05,299,299,299 +1089,OGC_AmsterdamUMC_biexp_segmented,st wall,100,0.3,0.012,0.0015,0.241188416,0.05,0.001632071,0.45,0.45,0.45,0.45,0.45,0.45,0.014429658,2.55E-11,4.76E-05,299,299,299 +1090,OGC_AmsterdamUMC_biexp_segmented,st wall,200,0.3,0.012,0.0015,0.241472822,0.05,0.001632185,0.45,0.45,0.45,0.45,0.45,0.45,0.007206673,2.69E-12,2.38E-05,299,299,299 +1091,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,10,0.69,0.029,0.00131,0.661034109,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 +1092,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 +1093,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 +1094,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 +1095,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 +1096,OGC_AmsterdamUMC_biexp_segmented,Vein,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.0338596,0.000876167,299,299,299 +1097,OGC_AmsterdamUMC_biexp_segmented,Vein,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 +1098,OGC_AmsterdamUMC_biexp_segmented,Vein,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 +1099,OGC_AmsterdamUMC_biexp_segmented,Vein,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 +1100,OGC_AmsterdamUMC_biexp_segmented,Vein,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 +1101,PV_MUMC_biexp,Artery,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 +1102,PV_MUMC_biexp,Artery,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 +1103,PV_MUMC_biexp,Artery,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 +1104,PV_MUMC_biexp,Artery,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 +1105,PV_MUMC_biexp,Artery,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 +1106,PV_MUMC_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.691470348,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 +1107,PV_MUMC_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 +1108,PV_MUMC_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 +1109,PV_MUMC_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 +1110,PV_MUMC_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 +1111,PV_MUMC_biexp,Blood RA,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 +1112,PV_MUMC_biexp,Blood RA,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 +1113,PV_MUMC_biexp,Blood RA,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 +1114,PV_MUMC_biexp,Blood RA,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 +1115,PV_MUMC_biexp,Blood RA,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 +1116,PV_MUMC_biexp,Blood RV,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 +1117,PV_MUMC_biexp,Blood RV,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 +1118,PV_MUMC_biexp,Blood RV,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 +1119,PV_MUMC_biexp,Blood RV,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 +1120,PV_MUMC_biexp,Blood RV,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 +1121,PV_MUMC_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.691470348,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 +1122,PV_MUMC_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 +1123,PV_MUMC_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 +1124,PV_MUMC_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 +1125,PV_MUMC_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 +1126,PV_MUMC_biexp,esophagus,10,0.32,0.03,0.00167,0.341951257,0.04430821,0.001651641,0.45,0.45,0.45,0.45,0.45,0.45,0.136646889,0.042223847,0.000613121,299,299,299 +1127,PV_MUMC_biexp,esophagus,30,0.32,0.03,0.00167,0.321738,0.031890112,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.051232465,0.010007152,0.000225182,299,299,299 +1128,PV_MUMC_biexp,esophagus,50,0.32,0.03,0.00167,0.320438404,0.030688162,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030827201,0.005360296,0.000134201,299,299,299 +1129,PV_MUMC_biexp,esophagus,100,0.32,0.03,0.00167,0.31990155,0.030218689,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015421719,0.002601733,6.69E-05,299,299,299 +1130,PV_MUMC_biexp,esophagus,200,0.32,0.03,0.00167,0.31981781,0.030087271,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007712744,0.001293459,3.34E-05,299,299,299 +1131,PV_MUMC_biexp,esophagus cont,10,0.32,0.03,0.00167,0.341951257,0.04430821,0.001651641,0.45,0.45,0.45,0.45,0.45,0.45,0.136646889,0.042223847,0.000613121,299,299,299 +1132,PV_MUMC_biexp,esophagus cont,30,0.32,0.03,0.00167,0.321738,0.031890112,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.051232465,0.010007152,0.000225182,299,299,299 +1133,PV_MUMC_biexp,esophagus cont,50,0.32,0.03,0.00167,0.320438404,0.030688162,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030827201,0.005360296,0.000134201,299,299,299 +1134,PV_MUMC_biexp,esophagus cont,100,0.32,0.03,0.00167,0.31990155,0.030218689,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015421719,0.002601733,6.69E-05,299,299,299 +1135,PV_MUMC_biexp,esophagus cont,200,0.32,0.03,0.00167,0.31981781,0.030087271,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007712744,0.001293459,3.34E-05,299,299,299 +1136,PV_MUMC_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.220417076,0.057102977,0.001961426,0.45,0.45,0.45,0.45,0.45,0.45,0.227476268,0.072947836,0.000476707,299,299,299 +1137,PV_MUMC_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.111610837,0.039670631,0.0021113,0.45,0.45,0.45,0.45,0.45,0.45,0.06881525,0.049597156,0.000201429,299,299,299 +1138,PV_MUMC_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.102266477,0.029737913,0.002122102,0.45,0.45,0.45,0.45,0.45,0.45,0.043951371,0.032782356,0.000131843,299,299,299 +1139,PV_MUMC_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.097693503,0.022148615,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.02285192,0.008359825,6.85E-05,299,299,299 +1140,PV_MUMC_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.096538214,0.020688279,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011531978,0.003463219,3.42E-05,299,299,299 +1141,PV_MUMC_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.241203863,0.050991184,0.001967789,0.45,0.45,0.45,0.45,0.45,0.45,0.193488009,0.065719199,0.000536034,299,299,299 +1142,PV_MUMC_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.16481485,0.029125114,0.002096852,0.45,0.45,0.45,0.45,0.45,0.45,0.071248939,0.033229687,0.000229607,299,299,299 +1143,PV_MUMC_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.159241671,0.022967725,0.002097486,0.45,0.45,0.45,0.45,0.45,0.45,0.045203648,0.016330243,0.000143397,299,299,299 +1144,PV_MUMC_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.156984699,0.019956188,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.023147928,0.004158135,7.21E-05,299,299,299 +1145,PV_MUMC_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.156461547,0.019438129,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011692189,0.001971222,3.60E-05,299,299,299 +1146,PV_MUMC_biexp,Liver,10,0.11,0.1,0.0015,0.156096042,0.103004335,0.001431963,0.45,0.45,0.45,0.45,0.45,0.45,0.110349252,0.077996163,0.000358196,299,299,299 +1147,PV_MUMC_biexp,Liver,30,0.11,0.1,0.0015,0.11610178,0.113822959,0.001497771,0.45,0.45,0.45,0.45,0.45,0.45,0.034776318,0.060098851,0.000144926,299,299,299 +1148,PV_MUMC_biexp,Liver,50,0.11,0.1,0.0015,0.111612535,0.109841008,0.001500025,0.45,0.45,0.45,0.45,0.45,0.45,0.019006812,0.044105658,9.05E-05,299,299,299 +1149,PV_MUMC_biexp,Liver,100,0.11,0.1,0.0015,0.110251044,0.103810737,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.009059778,0.023676826,4.54E-05,299,299,299 +1150,PV_MUMC_biexp,Liver,200,0.11,0.1,0.0015,0.110022353,0.101269696,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.004494374,0.011422466,2.27E-05,299,299,299 +1151,PV_MUMC_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.231745393,0.09063846,0.002175402,0.45,0.45,0.45,0.45,0.45,0.45,0.153842017,0.0756179,0.000591423,299,299,299 +1152,PV_MUMC_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.158168139,0.093306315,0.002399302,0.45,0.45,0.45,0.45,0.45,0.45,0.04891653,0.049880735,0.000271078,299,299,299 +1153,PV_MUMC_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.152084744,0.086911983,0.002403749,0.45,0.45,0.45,0.45,0.45,0.45,0.027120147,0.032895103,0.000173097,299,299,299 +1154,PV_MUMC_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.15029006,0.08228225,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012970653,0.016149829,8.78E-05,299,299,299 +1155,PV_MUMC_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150002427,0.080740591,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006416799,0.007696521,4.39E-05,299,299,299 +1156,PV_MUMC_biexp,myocardium ra,10,0.07,0.07,0.0015,0.128345687,0.082531651,0.001408339,0.45,0.45,0.45,0.45,0.45,0.45,0.114737913,0.079804013,0.000322848,299,299,299 +1157,PV_MUMC_biexp,myocardium ra,30,0.07,0.07,0.0015,0.080876941,0.093179189,0.001490893,0.45,0.45,0.45,0.45,0.45,0.45,0.040441249,0.068066226,0.000129512,299,299,299 +1158,PV_MUMC_biexp,myocardium ra,50,0.07,0.07,0.0015,0.073818655,0.087008793,0.001498578,0.45,0.45,0.45,0.45,0.45,0.45,0.023244544,0.05449788,8.40E-05,299,299,299 +1159,PV_MUMC_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070707324,0.075975734,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.010558194,0.029297514,4.35E-05,299,299,299 +1160,PV_MUMC_biexp,myocardium ra,200,0.07,0.07,0.0015,0.07011574,0.071733228,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.005079172,0.013139692,2.17E-05,299,299,299 +1161,PV_MUMC_biexp,myocardium RV,10,0.15,0.08,0.0024,0.231745393,0.09063846,0.002175402,0.45,0.45,0.45,0.45,0.45,0.45,0.153842017,0.0756179,0.000591423,299,299,299 +1162,PV_MUMC_biexp,myocardium RV,30,0.15,0.08,0.0024,0.158168139,0.093306315,0.002399302,0.45,0.45,0.45,0.45,0.45,0.45,0.04891653,0.049880735,0.000271078,299,299,299 +1163,PV_MUMC_biexp,myocardium RV,50,0.15,0.08,0.0024,0.152084744,0.086911983,0.002403749,0.45,0.45,0.45,0.45,0.45,0.45,0.027120147,0.032895103,0.000173097,299,299,299 +1164,PV_MUMC_biexp,myocardium RV,100,0.15,0.08,0.0024,0.15029006,0.08228225,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012970653,0.016149829,8.78E-05,299,299,299 +1165,PV_MUMC_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150002427,0.080740591,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006416799,0.007696521,4.39E-05,299,299,299 +1166,PV_MUMC_biexp,pancreas,10,0.15,0.01,0.0013,0.170823203,0.048439667,0.001283411,0.45,0.45,0.45,0.45,0.45,0.45,0.135276785,0.069364807,0.000342833,299,299,299 +1167,PV_MUMC_biexp,pancreas,30,0.15,0.01,0.0013,0.139357429,0.021179161,0.001329562,0.45,0.45,0.45,0.45,0.45,0.45,0.0600015,0.034371482,0.000136159,299,299,299 +1168,PV_MUMC_biexp,pancreas,50,0.15,0.01,0.0013,0.136832912,0.013345153,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.037870754,0.011835344,8.32E-05,299,299,299 +1169,PV_MUMC_biexp,pancreas,100,0.15,0.01,0.0013,0.13591079,0.011464131,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.019496681,0.002190372,4.15E-05,299,299,299 +1170,PV_MUMC_biexp,pancreas,200,0.15,0.01,0.0013,0.135796421,0.011158096,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.009827994,0.000979299,2.08E-05,299,299,299 +1171,PV_MUMC_biexp,pericardium,10,0.07,0.01,0.003,0.39101954,0.044643914,0.002451034,0.45,0.45,0.45,0.45,0.45,0.45,0.345288991,0.068555322,0.000589806,299,299,299 +1172,PV_MUMC_biexp,pericardium,30,0.07,0.01,0.003,0.279254963,0.027251618,0.002865231,0.45,0.45,0.45,0.45,0.45,0.45,0.32698487,0.049774275,0.000202392,299,299,299 +1173,PV_MUMC_biexp,pericardium,50,0.07,0.01,0.003,0.197907122,0.017177917,0.002925679,0.45,0.45,0.45,0.45,0.45,0.45,0.257892242,0.031471295,0.000122141,299,299,299 +1174,PV_MUMC_biexp,pericardium,100,0.07,0.01,0.003,0.101454392,0.010299903,0.002968398,0.45,0.45,0.45,0.45,0.45,0.45,0.098646064,0.004844048,5.81E-05,299,299,299 +1175,PV_MUMC_biexp,pericardium,200,0.07,0.01,0.003,0.076407756,0.009958909,0.002988942,0.45,0.45,0.45,0.45,0.45,0.45,0.016170934,0.002059308,2.46E-05,299,299,299 +1176,PV_MUMC_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.241203863,0.050991184,0.001967789,0.45,0.45,0.45,0.45,0.45,0.45,0.193488009,0.065719199,0.000536034,299,299,299 +1177,PV_MUMC_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.16481485,0.029125114,0.002096852,0.45,0.45,0.45,0.45,0.45,0.45,0.071248939,0.033229687,0.000229607,299,299,299 +1178,PV_MUMC_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.159241671,0.022967725,0.002097486,0.45,0.45,0.45,0.45,0.45,0.45,0.045203648,0.016330243,0.000143397,299,299,299 +1179,PV_MUMC_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.156984699,0.019956188,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.023147928,0.004158135,7.21E-05,299,299,299 +1180,PV_MUMC_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.156461547,0.019438129,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011692189,0.001971222,3.60E-05,299,299,299 +1181,PV_MUMC_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.220417076,0.057102977,0.001961426,0.45,0.45,0.45,0.45,0.45,0.45,0.227476268,0.072947836,0.000476707,299,299,299 +1182,PV_MUMC_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.111610837,0.039670631,0.0021113,0.45,0.45,0.45,0.45,0.45,0.45,0.06881525,0.049597156,0.000201429,299,299,299 +1183,PV_MUMC_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.102266477,0.029737913,0.002122102,0.45,0.45,0.45,0.45,0.45,0.45,0.043951371,0.032782356,0.000131843,299,299,299 +1184,PV_MUMC_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.097693503,0.022148615,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.02285192,0.008359825,6.85E-05,299,299,299 +1185,PV_MUMC_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.096538214,0.020688279,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011531978,0.003463219,3.42E-05,299,299,299 +1186,PV_MUMC_biexp,small intestine,10,0.69,0.029,0.00131,0.691470348,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 +1187,PV_MUMC_biexp,small intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 +1188,PV_MUMC_biexp,small intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 +1189,PV_MUMC_biexp,small intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 +1190,PV_MUMC_biexp,small intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 +1191,PV_MUMC_biexp,spleen,10,0.2,0.03,0.0013,0.225876448,0.057569636,0.001279661,0.45,0.45,0.45,0.45,0.45,0.45,0.118602074,0.062520158,0.000393628,299,299,299 +1192,PV_MUMC_biexp,spleen,30,0.2,0.03,0.0013,0.203121072,0.034845691,0.001301025,0.45,0.45,0.45,0.45,0.45,0.45,0.044626892,0.021058709,0.000147165,299,299,299 +1193,PV_MUMC_biexp,spleen,50,0.2,0.03,0.0013,0.201082894,0.031400515,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.026765532,0.008435631,8.81E-05,299,299,299 +1194,PV_MUMC_biexp,spleen,100,0.2,0.03,0.0013,0.200152033,0.030387942,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.013344232,0.003895812,4.40E-05,299,299,299 +1195,PV_MUMC_biexp,spleen,200,0.2,0.03,0.0013,0.199941651,0.030135035,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.006666208,0.001923776,2.20E-05,299,299,299 +1196,PV_MUMC_biexp,st wall,10,0.3,0.012,0.0015,0.298023904,0.032177434,0.001534526,0.45,0.45,0.45,0.45,0.45,0.45,0.161634014,0.049274759,0.000533257,299,299,299 +1197,PV_MUMC_biexp,st wall,30,0.3,0.012,0.0015,0.282564166,0.014358991,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.067295404,0.006049759,0.000195512,299,299,299 +1198,PV_MUMC_biexp,st wall,50,0.3,0.012,0.0015,0.28248595,0.013291025,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.041467059,0.002693947,0.000116681,299,299,299 +1199,PV_MUMC_biexp,st wall,100,0.3,0.012,0.0015,0.282721607,0.012895399,0.001548673,0.45,0.45,0.45,0.45,0.45,0.45,0.02100713,0.001200568,5.82E-05,299,299,299 +1200,PV_MUMC_biexp,st wall,200,0.3,0.012,0.0015,0.282901507,0.012792631,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.010539704,0.000580338,2.91E-05,299,299,299 +1201,PV_MUMC_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.691470349,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 +1202,PV_MUMC_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 +1203,PV_MUMC_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 +1204,PV_MUMC_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 +1205,PV_MUMC_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 +1206,PV_MUMC_biexp,Vein,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 +1207,PV_MUMC_biexp,Vein,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 +1208,PV_MUMC_biexp,Vein,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 +1209,PV_MUMC_biexp,Vein,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 +1210,PV_MUMC_biexp,Vein,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 +1211,PvH_KB_NKI_IVIMfit,Artery,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 +1212,PvH_KB_NKI_IVIMfit,Artery,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 +1213,PvH_KB_NKI_IVIMfit,Artery,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 +1214,PvH_KB_NKI_IVIMfit,Artery,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 +1215,PvH_KB_NKI_IVIMfit,Artery,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 +1216,PvH_KB_NKI_IVIMfit,asc lower intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 +1217,PvH_KB_NKI_IVIMfit,asc lower intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 +1218,PvH_KB_NKI_IVIMfit,asc lower intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 +1219,PvH_KB_NKI_IVIMfit,asc lower intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 +1220,PvH_KB_NKI_IVIMfit,asc lower intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 +1221,PvH_KB_NKI_IVIMfit,Blood RA,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 +1222,PvH_KB_NKI_IVIMfit,Blood RA,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 +1223,PvH_KB_NKI_IVIMfit,Blood RA,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 +1224,PvH_KB_NKI_IVIMfit,Blood RA,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 +1225,PvH_KB_NKI_IVIMfit,Blood RA,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 +1226,PvH_KB_NKI_IVIMfit,Blood RV,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 +1227,PvH_KB_NKI_IVIMfit,Blood RV,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 +1228,PvH_KB_NKI_IVIMfit,Blood RV,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 +1229,PvH_KB_NKI_IVIMfit,Blood RV,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 +1230,PvH_KB_NKI_IVIMfit,Blood RV,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 +1231,PvH_KB_NKI_IVIMfit,desc lower intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 +1232,PvH_KB_NKI_IVIMfit,desc lower intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 +1233,PvH_KB_NKI_IVIMfit,desc lower intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 +1234,PvH_KB_NKI_IVIMfit,desc lower intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 +1235,PvH_KB_NKI_IVIMfit,desc lower intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 +1236,PvH_KB_NKI_IVIMfit,esophagus,10,0.32,0.03,0.00167,0.298410593,0.044291725,0.001874082,0.45,0.45,0.45,0.45,0.45,0.45,0.184008516,0.548526725,0.000802631,299,299,299 +1237,PvH_KB_NKI_IVIMfit,esophagus,30,0.32,0.03,0.00167,0.313531066,0.043041374,0.00168684,0.45,0.45,0.45,0.45,0.45,0.45,0.071006424,0.170195579,0.000230631,299,299,299 +1238,PvH_KB_NKI_IVIMfit,esophagus,50,0.32,0.03,0.00167,0.317578816,0.03665091,0.001673114,0.45,0.45,0.45,0.45,0.45,0.45,0.040445672,0.08993701,0.000132104,299,299,299 +1239,PvH_KB_NKI_IVIMfit,esophagus,100,0.32,0.03,0.00167,0.318448942,0.033038996,0.0016708,0.45,0.45,0.45,0.45,0.45,0.45,0.019993889,0.0441126,6.52E-05,299,299,299 +1240,PvH_KB_NKI_IVIMfit,esophagus,200,0.32,0.03,0.00167,0.318325958,0.031529375,0.001671832,0.45,0.45,0.45,0.45,0.45,0.45,0.009996873,0.022000428,3.26E-05,299,299,299 +1241,PvH_KB_NKI_IVIMfit,esophagus cont,10,0.32,0.03,0.00167,0.298410593,0.044291725,0.001874082,0.45,0.45,0.45,0.45,0.45,0.45,0.184008516,0.548526725,0.000802631,299,299,299 +1242,PvH_KB_NKI_IVIMfit,esophagus cont,30,0.32,0.03,0.00167,0.313531066,0.043041374,0.00168684,0.45,0.45,0.45,0.45,0.45,0.45,0.071006424,0.170195579,0.000230631,299,299,299 +1243,PvH_KB_NKI_IVIMfit,esophagus cont,50,0.32,0.03,0.00167,0.317578816,0.03665091,0.001673114,0.45,0.45,0.45,0.45,0.45,0.45,0.040445672,0.08993701,0.000132104,299,299,299 +1244,PvH_KB_NKI_IVIMfit,esophagus cont,100,0.32,0.03,0.00167,0.318448942,0.033038996,0.0016708,0.45,0.45,0.45,0.45,0.45,0.45,0.019993889,0.0441126,6.52E-05,299,299,299 +1245,PvH_KB_NKI_IVIMfit,esophagus cont,200,0.32,0.03,0.00167,0.318325958,0.031529375,0.001671832,0.45,0.45,0.45,0.45,0.45,0.45,0.009996873,0.022000428,3.26E-05,299,299,299 +1246,PvH_KB_NKI_IVIMfit,Left kidney cortex,10,0.097,0.02,0.00212,0.137208357,0.032855697,0.002343267,0.45,0.45,0.45,0.45,0.45,0.45,0.150823475,0.709808611,0.000864241,299,299,299 +1247,PvH_KB_NKI_IVIMfit,Left kidney cortex,30,0.097,0.02,0.00212,0.099241232,0.054167341,0.002147009,0.45,0.45,0.45,0.45,0.45,0.45,0.07551362,0.714891074,0.000274974,299,299,299 +1248,PvH_KB_NKI_IVIMfit,Left kidney cortex,50,0.097,0.02,0.00212,0.094997658,0.035279963,0.002125038,0.45,0.45,0.45,0.45,0.45,0.45,0.052733809,0.514843546,0.000151034,299,299,299 +1249,PvH_KB_NKI_IVIMfit,Left kidney cortex,100,0.097,0.02,0.00212,0.094573845,0.037758476,0.002120984,0.45,0.45,0.45,0.45,0.45,0.45,0.028268675,0.195276335,7.40E-05,299,299,299 +1250,PvH_KB_NKI_IVIMfit,Left kidney cortex,200,0.097,0.02,0.00212,0.094409859,0.025700825,0.002122061,0.45,0.45,0.45,0.45,0.45,0.45,0.014102588,0.075645136,3.69E-05,299,299,299 +1251,PvH_KB_NKI_IVIMfit,left kidney medulla,10,0.158,0.019,0.00209,0.172769411,-0.01290259,0.002318506,0.45,0.45,0.45,0.45,0.45,0.45,0.167588199,0.881872268,0.000848805,299,299,299 +1252,PvH_KB_NKI_IVIMfit,left kidney medulla,30,0.158,0.019,0.00209,0.149260397,0.083812206,0.002126538,0.45,0.45,0.45,0.45,0.45,0.45,0.084605016,0.756780753,0.000292908,299,299,299 +1253,PvH_KB_NKI_IVIMfit,left kidney medulla,50,0.158,0.019,0.00209,0.150537694,0.032042923,0.002101179,0.45,0.45,0.45,0.45,0.45,0.45,0.055840703,0.238929111,0.000157959,299,299,299 +1254,PvH_KB_NKI_IVIMfit,left kidney medulla,100,0.158,0.019,0.00209,0.152330433,0.026337743,0.002096343,0.45,0.45,0.45,0.45,0.45,0.45,0.027559738,0.09532627,7.72E-05,299,299,299 +1255,PvH_KB_NKI_IVIMfit,left kidney medulla,200,0.158,0.019,0.00209,0.152214804,0.022601339,0.002097316,0.45,0.45,0.45,0.45,0.45,0.45,0.013742974,0.046033449,3.85E-05,299,299,299 +1256,PvH_KB_NKI_IVIMfit,Liver,10,0.11,0.1,0.0015,0.130553125,0.050969363,0.001606518,0.45,0.45,0.45,0.45,0.45,0.45,0.129706716,0.792719309,0.000572921,299,299,299 +1257,PvH_KB_NKI_IVIMfit,Liver,30,0.11,0.1,0.0015,0.110278146,0.149442129,0.00150011,0.45,0.45,0.45,0.45,0.45,0.45,0.06013929,0.625749783,0.000145272,299,299,299 +1258,PvH_KB_NKI_IVIMfit,Liver,50,0.11,0.1,0.0015,0.110399659,0.156527047,0.001496845,0.45,0.45,0.45,0.45,0.45,0.45,0.037603687,0.425066413,8.60E-05,299,299,299 +1259,PvH_KB_NKI_IVIMfit,Liver,100,0.11,0.1,0.0015,0.110613243,0.113081531,0.00149726,0.45,0.45,0.45,0.45,0.45,0.45,0.018781974,0.139029983,4.29E-05,299,299,299 +1260,PvH_KB_NKI_IVIMfit,Liver,200,0.11,0.1,0.0015,0.11040908,0.104936965,0.001498342,0.45,0.45,0.45,0.45,0.45,0.45,0.00940445,0.067200194,2.14E-05,299,299,299 +1261,PvH_KB_NKI_IVIMfit,Myocardium LV,10,0.15,0.08,0.0024,0.192025856,-0.011638561,0.002599074,0.45,0.45,0.45,0.45,0.45,0.45,0.179951897,0.65328556,0.000985415,299,299,299 +1262,PvH_KB_NKI_IVIMfit,Myocardium LV,30,0.15,0.08,0.0024,0.147972386,0.086116543,0.002467494,0.45,0.45,0.45,0.45,0.45,0.45,0.097551746,0.440738078,0.000442366,299,299,299 +1263,PvH_KB_NKI_IVIMfit,Myocardium LV,50,0.15,0.08,0.0024,0.148447585,0.117368159,0.002409027,0.45,0.45,0.45,0.45,0.45,0.45,0.067714997,0.347462872,0.000216739,299,299,299 +1264,PvH_KB_NKI_IVIMfit,Myocardium LV,100,0.15,0.08,0.0024,0.150826922,0.092566909,0.002395962,0.45,0.45,0.45,0.45,0.45,0.45,0.035020959,0.111206593,0.000102588,299,299,299 +1265,PvH_KB_NKI_IVIMfit,Myocardium LV,200,0.15,0.08,0.0024,0.151062768,0.083618121,0.002396048,0.45,0.45,0.45,0.45,0.45,0.45,0.01734079,0.049241715,5.09E-05,299,299,299 +1266,PvH_KB_NKI_IVIMfit,myocardium ra,10,0.07,0.07,0.0015,0.104891588,0.006079758,0.001600653,0.45,0.45,0.45,0.45,0.45,0.45,0.118242883,0.784263692,0.000552215,299,299,299 +1267,PvH_KB_NKI_IVIMfit,myocardium ra,30,0.07,0.07,0.0015,0.073908386,0.064576828,0.001499537,0.45,0.45,0.45,0.45,0.45,0.45,0.055273208,0.772165079,0.000138752,299,299,299 +1268,PvH_KB_NKI_IVIMfit,myocardium ra,50,0.07,0.07,0.0015,0.070866314,0.123754667,0.001496789,0.45,0.45,0.45,0.45,0.45,0.45,0.037081078,0.731555138,8.23E-05,299,299,299 +1269,PvH_KB_NKI_IVIMfit,myocardium ra,100,0.07,0.07,0.0015,0.070624947,0.095285825,0.001497332,0.45,0.45,0.45,0.45,0.45,0.45,0.018966401,0.232113078,4.10E-05,299,299,299 +1270,PvH_KB_NKI_IVIMfit,myocardium ra,200,0.07,0.07,0.0015,0.07041179,0.07828601,0.001498403,0.45,0.45,0.45,0.45,0.45,0.45,0.009497054,0.104550226,2.05E-05,299,299,299 +1271,PvH_KB_NKI_IVIMfit,myocardium RV,10,0.15,0.08,0.0024,0.192025856,-0.011638561,0.002599074,0.45,0.45,0.45,0.45,0.45,0.45,0.179951897,0.65328556,0.000985415,299,299,299 +1272,PvH_KB_NKI_IVIMfit,myocardium RV,30,0.15,0.08,0.0024,0.147972386,0.086116543,0.002467494,0.45,0.45,0.45,0.45,0.45,0.45,0.097551746,0.440738078,0.000442366,299,299,299 +1273,PvH_KB_NKI_IVIMfit,myocardium RV,50,0.15,0.08,0.0024,0.148447585,0.117368159,0.002409027,0.45,0.45,0.45,0.45,0.45,0.45,0.067714997,0.347462872,0.000216739,299,299,299 +1274,PvH_KB_NKI_IVIMfit,myocardium RV,100,0.15,0.08,0.0024,0.150826922,0.092566909,0.002395962,0.45,0.45,0.45,0.45,0.45,0.45,0.035020959,0.111206593,0.000102588,299,299,299 +1275,PvH_KB_NKI_IVIMfit,myocardium RV,200,0.15,0.08,0.0024,0.151062768,0.083618121,0.002396048,0.45,0.45,0.45,0.45,0.45,0.45,0.01734079,0.049241715,5.09E-05,299,299,299 +1276,PvH_KB_NKI_IVIMfit,pancreas,10,0.15,0.01,0.0013,0.136937979,0.007406518,0.001421521,0.45,0.45,0.45,0.45,0.45,0.45,0.127266105,0.732213636,0.000486504,299,299,299 +1277,PvH_KB_NKI_IVIMfit,pancreas,30,0.15,0.01,0.0013,0.121887931,0.076313764,0.001339599,0.45,0.45,0.45,0.45,0.45,0.45,0.056836447,0.636807479,0.00012678,299,299,299 +1278,PvH_KB_NKI_IVIMfit,pancreas,50,0.15,0.01,0.0013,0.122753935,0.03417762,0.001337778,0.45,0.45,0.45,0.45,0.45,0.45,0.034266714,0.256098852,7.54E-05,299,299,299 +1279,PvH_KB_NKI_IVIMfit,pancreas,100,0.15,0.01,0.0013,0.122866903,0.019881771,0.00133845,0.45,0.45,0.45,0.45,0.45,0.45,0.017142072,0.115209944,3.77E-05,299,299,299 +1280,PvH_KB_NKI_IVIMfit,pancreas,200,0.15,0.01,0.0013,0.122698909,0.015358605,0.001339417,0.45,0.45,0.45,0.45,0.45,0.45,0.008584771,0.056647044,1.88E-05,299,299,299 +1281,PvH_KB_NKI_IVIMfit,pericardium,10,0.07,0.01,0.003,0.200345433,0.0186626,0.00287292,0.45,0.45,0.45,0.45,0.45,0.45,0.191226966,0.511499383,0.000944686,299,299,299 +1282,PvH_KB_NKI_IVIMfit,pericardium,30,0.07,0.01,0.003,0.087541044,0.043926421,0.003196376,0.45,0.45,0.45,0.45,0.45,0.45,0.098520619,0.520788625,0.000739212,299,299,299 +1283,PvH_KB_NKI_IVIMfit,pericardium,50,0.07,0.01,0.003,0.071358851,0.03437635,0.003083836,0.45,0.45,0.45,0.45,0.45,0.45,0.072375543,0.468187572,0.000430508,299,299,299 +1284,PvH_KB_NKI_IVIMfit,pericardium,100,0.07,0.01,0.003,0.059343243,0.031989734,0.003024505,0.45,0.45,0.45,0.45,0.45,0.45,0.045750257,0.346527743,0.000170493,299,299,299 +1285,PvH_KB_NKI_IVIMfit,pericardium,200,0.07,0.01,0.003,0.054140786,0.027042208,0.003018936,0.45,0.45,0.45,0.45,0.45,0.45,0.02775529,0.292432776,8.25E-05,299,299,299 +1286,PvH_KB_NKI_IVIMfit,right kidney medulla,10,0.158,0.019,0.00209,0.172769411,-0.01290259,0.002318506,0.45,0.45,0.45,0.45,0.45,0.45,0.167588199,0.881872268,0.000848805,299,299,299 +1287,PvH_KB_NKI_IVIMfit,right kidney medulla,30,0.158,0.019,0.00209,0.149260397,0.083812206,0.002126538,0.45,0.45,0.45,0.45,0.45,0.45,0.084605016,0.756780753,0.000292908,299,299,299 +1288,PvH_KB_NKI_IVIMfit,right kidney medulla,50,0.158,0.019,0.00209,0.150537694,0.032042923,0.002101179,0.45,0.45,0.45,0.45,0.45,0.45,0.055840703,0.238929111,0.000157959,299,299,299 +1289,PvH_KB_NKI_IVIMfit,right kidney medulla,100,0.158,0.019,0.00209,0.152330433,0.026337743,0.002096343,0.45,0.45,0.45,0.45,0.45,0.45,0.027559738,0.09532627,7.72E-05,299,299,299 +1290,PvH_KB_NKI_IVIMfit,right kidney medulla,200,0.158,0.019,0.00209,0.152214804,0.022601339,0.002097316,0.45,0.45,0.45,0.45,0.45,0.45,0.013742974,0.046033449,3.85E-05,299,299,299 +1291,PvH_KB_NKI_IVIMfit,Right kydney cortex,10,0.097,0.02,0.00212,0.137208357,0.032855697,0.002343267,0.45,0.45,0.45,0.45,0.45,0.45,0.150823475,0.709808611,0.000864241,299,299,299 +1292,PvH_KB_NKI_IVIMfit,Right kydney cortex,30,0.097,0.02,0.00212,0.099241232,0.054167341,0.002147009,0.45,0.45,0.45,0.45,0.45,0.45,0.07551362,0.714891074,0.000274974,299,299,299 +1293,PvH_KB_NKI_IVIMfit,Right kydney cortex,50,0.097,0.02,0.00212,0.094997658,0.035279963,0.002125038,0.45,0.45,0.45,0.45,0.45,0.45,0.052733809,0.514843546,0.000151034,299,299,299 +1294,PvH_KB_NKI_IVIMfit,Right kydney cortex,100,0.097,0.02,0.00212,0.094573845,0.037758476,0.002120984,0.45,0.45,0.45,0.45,0.45,0.45,0.028268675,0.195276335,7.40E-05,299,299,299 +1295,PvH_KB_NKI_IVIMfit,Right kydney cortex,200,0.097,0.02,0.00212,0.094409859,0.025700825,0.002122061,0.45,0.45,0.45,0.45,0.45,0.45,0.014102588,0.075645136,3.69E-05,299,299,299 +1296,PvH_KB_NKI_IVIMfit,small intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 +1297,PvH_KB_NKI_IVIMfit,small intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 +1298,PvH_KB_NKI_IVIMfit,small intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 +1299,PvH_KB_NKI_IVIMfit,small intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 +1300,PvH_KB_NKI_IVIMfit,small intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 +1301,PvH_KB_NKI_IVIMfit,spleen,10,0.2,0.03,0.0013,0.195996622,0.06130213,0.001404549,0.45,0.45,0.45,0.45,0.45,0.45,0.142733289,0.865447288,0.000582749,299,299,299 +1302,PvH_KB_NKI_IVIMfit,spleen,30,0.2,0.03,0.0013,0.197871845,0.057793771,0.0013015,0.45,0.45,0.45,0.45,0.45,0.45,0.055408133,0.277217447,0.000135472,299,299,299 +1303,PvH_KB_NKI_IVIMfit,spleen,50,0.2,0.03,0.0013,0.199033285,0.041687036,0.001299169,0.45,0.45,0.45,0.45,0.45,0.45,0.033023774,0.14596529,8.05E-05,299,299,299 +1304,PvH_KB_NKI_IVIMfit,spleen,100,0.2,0.03,0.0013,0.199176575,0.03501551,0.001299717,0.45,0.45,0.45,0.45,0.45,0.45,0.016515143,0.07079939,4.02E-05,299,299,299 +1305,PvH_KB_NKI_IVIMfit,spleen,200,0.2,0.03,0.0013,0.199026312,0.032409687,0.001300698,0.45,0.45,0.45,0.45,0.45,0.45,0.008270928,0.035216811,2.01E-05,299,299,299 +1306,PvH_KB_NKI_IVIMfit,st wall,10,0.3,0.012,0.0015,0.248638297,0.036411695,0.001729211,0.45,0.45,0.45,0.45,0.45,0.45,0.16634739,0.707332243,0.000685673,299,299,299 +1307,PvH_KB_NKI_IVIMfit,st wall,30,0.3,0.012,0.0015,0.258772026,0.029382258,0.001575176,0.45,0.45,0.45,0.45,0.45,0.45,0.064438844,0.202407559,0.000186844,299,299,299 +1308,PvH_KB_NKI_IVIMfit,st wall,50,0.3,0.012,0.0015,0.261282486,0.02098574,0.001567589,0.45,0.45,0.45,0.45,0.45,0.45,0.03771772,0.108793386,0.00010928,299,299,299 +1309,PvH_KB_NKI_IVIMfit,st wall,100,0.3,0.012,0.0015,0.261756786,0.016795348,0.001566858,0.45,0.45,0.45,0.45,0.45,0.45,0.018767424,0.053174563,5.43E-05,299,299,299 +1310,PvH_KB_NKI_IVIMfit,st wall,200,0.3,0.012,0.0015,0.261595673,0.015003154,0.001567942,0.45,0.45,0.45,0.45,0.45,0.45,0.009393129,0.026499922,2.71E-05,299,299,299 +1311,PvH_KB_NKI_IVIMfit,trans lower intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 +1312,PvH_KB_NKI_IVIMfit,trans lower intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 +1313,PvH_KB_NKI_IVIMfit,trans lower intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 +1314,PvH_KB_NKI_IVIMfit,trans lower intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 +1315,PvH_KB_NKI_IVIMfit,trans lower intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 +1316,PvH_KB_NKI_IVIMfit,Vein,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 +1317,PvH_KB_NKI_IVIMfit,Vein,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 +1318,PvH_KB_NKI_IVIMfit,Vein,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 +1319,PvH_KB_NKI_IVIMfit,Vein,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 +1320,PvH_KB_NKI_IVIMfit,Vein,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 \ No newline at end of file From 648b14f2c284013e0baeb299ec7db9ca908a30ac Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 13:38:45 -0800 Subject: [PATCH 26/87] Updated reference values --- .../unit_tests/reference_output.csv | 2642 ++++++++--------- 1 file changed, 1321 insertions(+), 1321 deletions(-) diff --git a/tests/IVIMmodels/unit_tests/reference_output.csv b/tests/IVIMmodels/unit_tests/reference_output.csv index bf7ce16..81674d7 100644 --- a/tests/IVIMmodels/unit_tests/reference_output.csv +++ b/tests/IVIMmodels/unit_tests/reference_output.csv @@ -1,1321 +1,1321 @@ -,Algorithm,Region,SNR,f,Dp,D,f_mu,Dp_mu,D_mu,f_t_alpha,Dp_t_alpha,D_t_alpha,f_f_alpha,Dp_f_alpha,D_f_alpha,f_std,Dp_std,D_std,f_df,Dp_df,D_df -1,ETP_SRI_LinearFitting,Artery,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 -2,ETP_SRI_LinearFitting,Artery,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 -3,ETP_SRI_LinearFitting,Artery,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 -4,ETP_SRI_LinearFitting,Artery,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 -5,ETP_SRI_LinearFitting,Artery,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 -6,ETP_SRI_LinearFitting,asc lower intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 -7,ETP_SRI_LinearFitting,asc lower intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 -8,ETP_SRI_LinearFitting,asc lower intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 -9,ETP_SRI_LinearFitting,asc lower intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 -10,ETP_SRI_LinearFitting,asc lower intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 -11,ETP_SRI_LinearFitting,Blood RA,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 -12,ETP_SRI_LinearFitting,Blood RA,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 -13,ETP_SRI_LinearFitting,Blood RA,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 -14,ETP_SRI_LinearFitting,Blood RA,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 -15,ETP_SRI_LinearFitting,Blood RA,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 -16,ETP_SRI_LinearFitting,Blood RV,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 -17,ETP_SRI_LinearFitting,Blood RV,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 -18,ETP_SRI_LinearFitting,Blood RV,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 -19,ETP_SRI_LinearFitting,Blood RV,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 -20,ETP_SRI_LinearFitting,Blood RV,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 -21,ETP_SRI_LinearFitting,desc lower intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 -22,ETP_SRI_LinearFitting,desc lower intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 -23,ETP_SRI_LinearFitting,desc lower intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 -24,ETP_SRI_LinearFitting,desc lower intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 -25,ETP_SRI_LinearFitting,desc lower intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 -26,ETP_SRI_LinearFitting,esophagus,10,0.32,0.03,0.00167,-16.83514051,0.006852657,0.001873721,0.45,0.45,0.45,0.45,0.45,0.45,276.0520611,0.02678845,0.00186996,299,299,299 -27,ETP_SRI_LinearFitting,esophagus,30,0.32,0.03,0.00167,0.266714752,0.03038082,0.00164932,0.45,0.45,0.45,0.45,0.45,0.45,0.40633316,0.119784575,0.000600457,299,299,299 -28,ETP_SRI_LinearFitting,esophagus,50,0.32,0.03,0.00167,0.313716357,0.027364298,0.001643599,0.45,0.45,0.45,0.45,0.45,0.45,0.182929019,0.079533413,0.000343814,299,299,299 -29,ETP_SRI_LinearFitting,esophagus,100,0.32,0.03,0.00167,0.32371505,0.026010609,0.00165232,0.45,0.45,0.45,0.45,0.45,0.45,0.085484308,0.041369219,0.000169854,299,299,299 -30,ETP_SRI_LinearFitting,esophagus,200,0.32,0.03,0.00167,0.323458157,0.02131288,0.001660077,0.45,0.45,0.45,0.45,0.45,0.45,0.042295624,0.016836796,8.48E-05,299,299,299 -31,ETP_SRI_LinearFitting,esophagus cont,10,0.32,0.03,0.00167,-16.83514051,0.006852657,0.001873721,0.45,0.45,0.45,0.45,0.45,0.45,276.0520611,0.02678845,0.00186996,299,299,299 -32,ETP_SRI_LinearFitting,esophagus cont,30,0.32,0.03,0.00167,0.266714752,0.03038082,0.00164932,0.45,0.45,0.45,0.45,0.45,0.45,0.40633316,0.119784575,0.000600457,299,299,299 -33,ETP_SRI_LinearFitting,esophagus cont,50,0.32,0.03,0.00167,0.313716357,0.027364298,0.001643599,0.45,0.45,0.45,0.45,0.45,0.45,0.182929019,0.079533413,0.000343814,299,299,299 -34,ETP_SRI_LinearFitting,esophagus cont,100,0.32,0.03,0.00167,0.32371505,0.026010609,0.00165232,0.45,0.45,0.45,0.45,0.45,0.45,0.085484308,0.041369219,0.000169854,299,299,299 -35,ETP_SRI_LinearFitting,esophagus cont,200,0.32,0.03,0.00167,0.323458157,0.02131288,0.001660077,0.45,0.45,0.45,0.45,0.45,0.45,0.042295624,0.016836796,8.48E-05,299,299,299 -36,ETP_SRI_LinearFitting,Left kidney cortex,10,0.097,0.02,0.00212,-14.39555959,0.003917053,0.002285375,0.45,0.45,0.45,0.45,0.45,0.45,192.5980892,0.002844899,0.002079199,299,299,299 -37,ETP_SRI_LinearFitting,Left kidney cortex,30,0.097,0.02,0.00212,-0.04287548,0.006717437,0.002117706,0.45,0.45,0.45,0.45,0.45,0.45,0.980652959,0.027646525,0.000717331,299,299,299 -38,ETP_SRI_LinearFitting,Left kidney cortex,50,0.097,0.02,0.00212,0.08100144,0.020860978,0.002094457,0.45,0.45,0.45,0.45,0.45,0.45,0.2809026,0.162555556,0.00039293,299,299,299 -39,ETP_SRI_LinearFitting,Left kidney cortex,100,0.097,0.02,0.00212,0.101777729,0.031966178,0.002100176,0.45,0.45,0.45,0.45,0.45,0.45,0.125657669,0.191290496,0.000192523,299,299,299 -40,ETP_SRI_LinearFitting,Left kidney cortex,200,0.097,0.02,0.00212,0.102240302,0.025577432,0.002108413,0.45,0.45,0.45,0.45,0.45,0.45,0.061737412,0.065717194,9.60E-05,299,299,299 -41,ETP_SRI_LinearFitting,left kidney medulla,10,0.158,0.019,0.00209,-3.118954546,0.003822726,0.002225559,0.45,0.45,0.45,0.45,0.45,0.45,17.30208987,0.002621005,0.002013047,299,299,299 -42,ETP_SRI_LinearFitting,left kidney medulla,30,0.158,0.019,0.00209,-0.013232776,0.019011833,0.002093524,0.45,0.45,0.45,0.45,0.45,0.45,1.29784271,0.133264708,0.00076512,299,299,299 -43,ETP_SRI_LinearFitting,left kidney medulla,50,0.158,0.019,0.00209,0.13994923,0.043512278,0.002064634,0.45,0.45,0.45,0.45,0.45,0.45,0.277961932,0.272277019,0.000411062,299,299,299 -44,ETP_SRI_LinearFitting,left kidney medulla,100,0.158,0.019,0.00209,0.162111331,0.028419206,0.002069675,0.45,0.45,0.45,0.45,0.45,0.45,0.122752663,0.141684151,0.000200943,299,299,299 -45,ETP_SRI_LinearFitting,left kidney medulla,200,0.158,0.019,0.00209,0.16294032,0.018633137,0.002078042,0.45,0.45,0.45,0.45,0.45,0.45,0.060191046,0.019573477,0.000100189,299,299,299 -46,ETP_SRI_LinearFitting,Liver,10,0.11,0.1,0.0015,-3.671058549,0.010332292,0.00161496,0.45,0.45,0.45,0.45,0.45,0.45,50.57251512,0.100845173,0.001408574,299,299,299 -47,ETP_SRI_LinearFitting,Liver,30,0.11,0.1,0.0015,0.096931841,0.014564293,0.001472467,0.45,0.45,0.45,0.45,0.45,0.45,0.269776486,0.097189351,0.000377589,299,299,299 -48,ETP_SRI_LinearFitting,Liver,50,0.11,0.1,0.0015,0.112644421,0.098849255,0.0014787,0.45,0.45,0.45,0.45,0.45,0.45,0.150827872,0.38069346,0.000223664,299,299,299 -49,ETP_SRI_LinearFitting,Liver,100,0.11,0.1,0.0015,0.114915103,0.088909592,0.001487642,0.45,0.45,0.45,0.45,0.45,0.45,0.073847306,0.328370789,0.000111503,299,299,299 -50,ETP_SRI_LinearFitting,Liver,200,0.11,0.1,0.0015,0.113341187,0.072534053,0.001493397,0.45,0.45,0.45,0.45,0.45,0.45,0.036840498,0.138234643,5.58E-05,299,299,299 -51,ETP_SRI_LinearFitting,Myocardium LV,10,0.15,0.08,0.0024,-5.410078294,0.009418423,0.002382229,0.45,0.45,0.45,0.45,0.45,0.45,43.93502167,0.097852244,0.0022263,299,299,299 -52,ETP_SRI_LinearFitting,Myocardium LV,30,0.15,0.08,0.0024,-0.593493538,0.03073956,0.002476974,0.45,0.45,0.45,0.45,0.45,0.45,4.684077827,0.268537532,0.001150104,299,299,299 -53,ETP_SRI_LinearFitting,Myocardium LV,50,0.15,0.08,0.0024,0.092018455,0.031374216,0.002384144,0.45,0.45,0.45,0.45,0.45,0.45,0.464498483,0.152892133,0.000563768,299,299,299 -54,ETP_SRI_LinearFitting,Myocardium LV,100,0.15,0.08,0.0024,0.150567855,0.051497003,0.002376186,0.45,0.45,0.45,0.45,0.45,0.45,0.165469383,0.127123616,0.000266535,299,299,299 -55,ETP_SRI_LinearFitting,Myocardium LV,200,0.15,0.08,0.0024,0.155639735,0.093387688,0.002384589,0.45,0.45,0.45,0.45,0.45,0.45,0.079130659,0.288726462,0.000132239,299,299,299 -56,ETP_SRI_LinearFitting,myocardium ra,10,0.07,0.07,0.0015,-1.659516654,0.017723877,0.001609573,0.45,0.45,0.45,0.45,0.45,0.45,13.15540177,0.183131673,0.001360886,299,299,299 -57,ETP_SRI_LinearFitting,myocardium ra,30,0.07,0.07,0.0015,0.058956457,0.029609394,0.001472798,0.45,0.45,0.45,0.45,0.45,0.45,0.266937871,0.242638674,0.000360646,299,299,299 -58,ETP_SRI_LinearFitting,myocardium ra,50,0.07,0.07,0.0015,0.073275901,0.03283717,0.001479332,0.45,0.45,0.45,0.45,0.45,0.45,0.150415017,0.216423077,0.000213946,299,299,299 -59,ETP_SRI_LinearFitting,myocardium ra,100,0.07,0.07,0.0015,0.075067262,0.067777446,0.001488103,0.45,0.45,0.45,0.45,0.45,0.45,0.073817787,0.269492649,0.000106706,299,299,299 -60,ETP_SRI_LinearFitting,myocardium ra,200,0.07,0.07,0.0015,0.073379231,0.062367615,0.001493664,0.45,0.45,0.45,0.45,0.45,0.45,0.036841195,0.237445082,5.34E-05,299,299,299 -61,ETP_SRI_LinearFitting,myocardium RV,10,0.15,0.08,0.0024,-5.410078294,0.009418423,0.002382229,0.45,0.45,0.45,0.45,0.45,0.45,43.93502167,0.097852244,0.0022263,299,299,299 -62,ETP_SRI_LinearFitting,myocardium RV,30,0.15,0.08,0.0024,-0.593493538,0.03073956,0.002476974,0.45,0.45,0.45,0.45,0.45,0.45,4.684077827,0.268537532,0.001150104,299,299,299 -63,ETP_SRI_LinearFitting,myocardium RV,50,0.15,0.08,0.0024,0.092018455,0.031374216,0.002384144,0.45,0.45,0.45,0.45,0.45,0.45,0.464498483,0.152892133,0.000563768,299,299,299 -64,ETP_SRI_LinearFitting,myocardium RV,100,0.15,0.08,0.0024,0.150567855,0.051497003,0.002376186,0.45,0.45,0.45,0.45,0.45,0.45,0.165469383,0.127123616,0.000266535,299,299,299 -65,ETP_SRI_LinearFitting,myocardium RV,200,0.15,0.08,0.0024,0.155639735,0.093387688,0.002384589,0.45,0.45,0.45,0.45,0.45,0.45,0.079130659,0.288726462,0.000132239,299,299,299 -66,ETP_SRI_LinearFitting,pancreas,10,0.15,0.01,0.0013,-0.650527215,0.003733686,0.001388666,0.45,0.45,0.45,0.45,0.45,0.45,4.936673942,0.007224742,0.001192487,299,299,299 -67,ETP_SRI_LinearFitting,pancreas,30,0.15,0.01,0.0013,0.14118139,0.057102218,0.001276319,0.45,0.45,0.45,0.45,0.45,0.45,0.223328699,0.302359176,0.000329779,299,299,299 -68,ETP_SRI_LinearFitting,pancreas,50,0.15,0.01,0.0013,0.151003608,0.015294408,0.001283857,0.45,0.45,0.45,0.45,0.45,0.45,0.127982123,0.126325868,0.000196269,299,299,299 -69,ETP_SRI_LinearFitting,pancreas,100,0.15,0.01,0.0013,0.151847983,0.013162645,0.001292321,0.45,0.45,0.45,0.45,0.45,0.45,0.063129376,0.037792736,9.80E-05,299,299,299 -70,ETP_SRI_LinearFitting,pancreas,200,0.15,0.01,0.0013,0.150332194,0.010944593,0.001297416,0.45,0.45,0.45,0.45,0.45,0.45,0.031532784,0.005872722,4.90E-05,299,299,299 -71,ETP_SRI_LinearFitting,pericardium,10,0.07,0.01,0.003,-1.710694554,0.004138065,0.002220024,0.45,0.45,0.45,0.45,0.45,0.45,11.3461458,0.007963309,0.002143504,299,299,299 -72,ETP_SRI_LinearFitting,pericardium,30,0.07,0.01,0.003,-2.915277448,0.005071733,0.003219865,0.45,0.45,0.45,0.45,0.45,0.45,18.81629556,0.003158921,0.001765429,299,299,299 -73,ETP_SRI_LinearFitting,pericardium,50,0.07,0.01,0.003,-0.72510748,0.014614316,0.003084362,0.45,0.45,0.45,0.45,0.45,0.45,5.028923977,0.139670662,0.001122843,299,299,299 -74,ETP_SRI_LinearFitting,pericardium,100,0.07,0.01,0.003,0.039507292,0.007397628,0.002981328,0.45,0.45,0.45,0.45,0.45,0.45,0.337660314,0.026548244,0.0004424,299,299,299 -75,ETP_SRI_LinearFitting,pericardium,200,0.07,0.01,0.003,0.071794092,0.03149852,0.002981441,0.45,0.45,0.45,0.45,0.45,0.45,0.139726244,0.210455939,0.000213772,299,299,299 -76,ETP_SRI_LinearFitting,right kidney medulla,10,0.158,0.019,0.00209,-3.118954546,0.003822726,0.002225559,0.45,0.45,0.45,0.45,0.45,0.45,17.30208987,0.002621005,0.002013047,299,299,299 -77,ETP_SRI_LinearFitting,right kidney medulla,30,0.158,0.019,0.00209,-0.013232776,0.019011833,0.002093524,0.45,0.45,0.45,0.45,0.45,0.45,1.29784271,0.133264708,0.00076512,299,299,299 -78,ETP_SRI_LinearFitting,right kidney medulla,50,0.158,0.019,0.00209,0.13994923,0.043512278,0.002064634,0.45,0.45,0.45,0.45,0.45,0.45,0.277961932,0.272277019,0.000411062,299,299,299 -79,ETP_SRI_LinearFitting,right kidney medulla,100,0.158,0.019,0.00209,0.162111331,0.028419206,0.002069675,0.45,0.45,0.45,0.45,0.45,0.45,0.122752663,0.141684151,0.000200943,299,299,299 -80,ETP_SRI_LinearFitting,right kidney medulla,200,0.158,0.019,0.00209,0.16294032,0.018633137,0.002078042,0.45,0.45,0.45,0.45,0.45,0.45,0.060191046,0.019573477,0.000100189,299,299,299 -81,ETP_SRI_LinearFitting,Right kydney cortex,10,0.097,0.02,0.00212,-14.39555959,0.003917053,0.002285375,0.45,0.45,0.45,0.45,0.45,0.45,192.5980892,0.002844899,0.002079199,299,299,299 -82,ETP_SRI_LinearFitting,Right kydney cortex,30,0.097,0.02,0.00212,-0.04287548,0.006717437,0.002117706,0.45,0.45,0.45,0.45,0.45,0.45,0.980652959,0.027646525,0.000717331,299,299,299 -83,ETP_SRI_LinearFitting,Right kydney cortex,50,0.097,0.02,0.00212,0.08100144,0.020860978,0.002094457,0.45,0.45,0.45,0.45,0.45,0.45,0.2809026,0.162555556,0.00039293,299,299,299 -84,ETP_SRI_LinearFitting,Right kydney cortex,100,0.097,0.02,0.00212,0.101777729,0.031966178,0.002100176,0.45,0.45,0.45,0.45,0.45,0.45,0.125657669,0.191290496,0.000192523,299,299,299 -85,ETP_SRI_LinearFitting,Right kydney cortex,200,0.097,0.02,0.00212,0.102240302,0.025577432,0.002108413,0.45,0.45,0.45,0.45,0.45,0.45,0.061737412,0.065717194,9.60E-05,299,299,299 -86,ETP_SRI_LinearFitting,small intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 -87,ETP_SRI_LinearFitting,small intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 -88,ETP_SRI_LinearFitting,small intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 -89,ETP_SRI_LinearFitting,small intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 -90,ETP_SRI_LinearFitting,small intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 -91,ETP_SRI_LinearFitting,spleen,10,0.2,0.03,0.0013,-3.374013252,0.005536183,0.001434337,0.45,0.45,0.45,0.45,0.45,0.45,32.2937373,0.019919958,0.001436225,299,299,299 -92,ETP_SRI_LinearFitting,spleen,30,0.2,0.03,0.0013,0.191616803,0.052433937,0.001272463,0.45,0.45,0.45,0.45,0.45,0.45,0.225231223,0.241188206,0.00035123,299,299,299 -93,ETP_SRI_LinearFitting,spleen,50,0.2,0.03,0.0013,0.202791755,0.039825291,0.001279879,0.45,0.45,0.45,0.45,0.45,0.45,0.128062905,0.160615566,0.000208716,299,299,299 -94,ETP_SRI_LinearFitting,spleen,100,0.2,0.03,0.0013,0.204134186,0.02969012,0.001288643,0.45,0.45,0.45,0.45,0.45,0.45,0.063013884,0.059005431,0.000104156,299,299,299 -95,ETP_SRI_LinearFitting,spleen,200,0.2,0.03,0.0013,0.202743965,0.021797949,0.001294,0.45,0.45,0.45,0.45,0.45,0.45,0.031461407,0.020464399,5.21E-05,299,299,299 -96,ETP_SRI_LinearFitting,st wall,10,0.3,0.012,0.0015,-1.646104693,0.004698726,0.001672271,0.45,0.45,0.45,0.45,0.45,0.45,15.80559975,0.011689631,0.001581713,299,299,299 -97,ETP_SRI_LinearFitting,st wall,30,0.3,0.012,0.0015,0.270890695,0.014594654,0.00147534,0.45,0.45,0.45,0.45,0.45,0.45,0.29617677,0.064457531,0.000487785,299,299,299 -98,ETP_SRI_LinearFitting,st wall,50,0.3,0.012,0.0015,0.296764049,0.020611866,0.001478122,0.45,0.45,0.45,0.45,0.45,0.45,0.154483981,0.138058216,0.000285388,299,299,299 -99,ETP_SRI_LinearFitting,st wall,100,0.3,0.012,0.0015,0.302162253,0.01270729,0.001487653,0.45,0.45,0.45,0.45,0.45,0.45,0.074253544,0.009993362,0.000141764,299,299,299 -100,ETP_SRI_LinearFitting,st wall,200,0.3,0.012,0.0015,0.301306787,0.011583951,0.001494531,0.45,0.45,0.45,0.45,0.45,0.45,0.036919544,0.003925196,7.09E-05,299,299,299 -101,ETP_SRI_LinearFitting,trans lower intestine,10,0.69,0.029,0.00131,-1.780468474,0.01652229,0.001644179,0.45,0.45,0.45,0.45,0.45,0.45,15.82396512,0.070050642,0.002116538,299,299,299 -102,ETP_SRI_LinearFitting,trans lower intestine,30,0.69,0.029,0.00131,0.475373627,0.022456788,0.001364146,0.45,0.45,0.45,0.45,0.45,0.45,1.767805633,0.042545502,0.001069335,299,299,299 -103,ETP_SRI_LinearFitting,trans lower intestine,50,0.69,0.029,0.00131,0.67071934,0.021616474,0.001282592,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675,0.031628897,0.000565758,299,299,299 -104,ETP_SRI_LinearFitting,trans lower intestine,100,0.69,0.029,0.00131,0.689682969,0.018072945,0.001285895,0.45,0.45,0.45,0.45,0.45,0.45,0.065788213,0.012931848,0.000272558,299,299,299 -105,ETP_SRI_LinearFitting,trans lower intestine,200,0.69,0.029,0.00131,0.691676565,0.018329505,0.00129571,0.45,0.45,0.45,0.45,0.45,0.45,0.031847209,0.009945175,0.000135585,299,299,299 -106,ETP_SRI_LinearFitting,Vein,10,1,0.1,0.003,-0.219136684,0.053732261,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,7.046362612,0.205282332,0.002028992,299,299,299 -107,ETP_SRI_LinearFitting,Vein,30,1,0.1,0.003,0.593621105,0.038249499,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,2.348787537,0.082032448,0.002028992,299,299,299 -108,ETP_SRI_LinearFitting,Vein,50,1,0.1,0.003,0.756172663,0.034480301,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,1.409272522,0.074801816,0.002028992,299,299,299 -109,ETP_SRI_LinearFitting,Vein,100,1,0.1,0.003,0.878086332,0.032334059,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261,0.071209033,0.002028992,299,299,299 -110,ETP_SRI_LinearFitting,Vein,200,1,0.1,0.003,0.939043166,0.027636794,0.001331339,0.45,0.45,0.45,0.45,0.45,0.45,0.352318131,0.053798091,0.002028992,299,299,299 -111,IAR_LU_biexp,Artery,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 -112,IAR_LU_biexp,Artery,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 -113,IAR_LU_biexp,Artery,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 -114,IAR_LU_biexp,Artery,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 -115,IAR_LU_biexp,Artery,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 -116,IAR_LU_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.697212668,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.09691496,0.015087311,0.000756516,299,299,299 -117,IAR_LU_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.03609476,0.00363626,0.00028388,299,299,299 -118,IAR_LU_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.690035517,0.029111598,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472224,0.002118058,0.000167873,299,299,299 -119,IAR_LU_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 -120,IAR_LU_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 -121,IAR_LU_biexp,Blood RA,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 -122,IAR_LU_biexp,Blood RA,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 -123,IAR_LU_biexp,Blood RA,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 -124,IAR_LU_biexp,Blood RA,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 -125,IAR_LU_biexp,Blood RA,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 -126,IAR_LU_biexp,Blood RV,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 -127,IAR_LU_biexp,Blood RV,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 -128,IAR_LU_biexp,Blood RV,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 -129,IAR_LU_biexp,Blood RV,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 -130,IAR_LU_biexp,Blood RV,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 -131,IAR_LU_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.697212667,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.096914961,0.015087311,0.000756516,299,299,299 -132,IAR_LU_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.036094759,0.00363626,0.00028388,299,299,299 -133,IAR_LU_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.690035516,0.029111599,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472226,0.002118059,0.000167873,299,299,299 -134,IAR_LU_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 -135,IAR_LU_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 -136,IAR_LU_biexp,esophagus,10,0.32,0.03,0.00167,0.36768348,0.038773902,0.001499688,0.45,0.45,0.45,0.45,0.45,0.45,0.137924392,0.028700675,0.000539608,299,299,299 -137,IAR_LU_biexp,esophagus,30,0.32,0.03,0.00167,0.324535978,0.031699292,0.001652039,0.45,0.45,0.45,0.45,0.45,0.45,0.041414652,0.010218498,0.000163809,299,299,299 -138,IAR_LU_biexp,esophagus,50,0.32,0.03,0.00167,0.321543302,0.030498119,0.001661859,0.45,0.45,0.45,0.45,0.45,0.45,0.024129146,0.005222801,9.57E-05,299,299,299 -139,IAR_LU_biexp,esophagus,100,0.32,0.03,0.00167,0.320352104,0.030104494,0.00166689,0.45,0.45,0.45,0.45,0.45,0.45,0.011843438,0.002475232,4.71E-05,299,299,299 -140,IAR_LU_biexp,esophagus,200,0.32,0.03,0.00167,0.32007433,0.030021151,0.001668683,0.45,0.45,0.45,0.45,0.45,0.45,0.005887283,0.001220815,2.34E-05,299,299,299 -141,IAR_LU_biexp,esophagus cont,10,0.32,0.03,0.00167,0.36768348,0.038773902,0.001499688,0.45,0.45,0.45,0.45,0.45,0.45,0.137924392,0.028700675,0.000539608,299,299,299 -142,IAR_LU_biexp,esophagus cont,30,0.32,0.03,0.00167,0.324535978,0.031699292,0.001652039,0.45,0.45,0.45,0.45,0.45,0.45,0.041414652,0.010218498,0.000163809,299,299,299 -143,IAR_LU_biexp,esophagus cont,50,0.32,0.03,0.00167,0.321543302,0.030498119,0.001661859,0.45,0.45,0.45,0.45,0.45,0.45,0.024129146,0.005222801,9.57E-05,299,299,299 -144,IAR_LU_biexp,esophagus cont,100,0.32,0.03,0.00167,0.320352104,0.030104494,0.00166689,0.45,0.45,0.45,0.45,0.45,0.45,0.011843438,0.002475232,4.71E-05,299,299,299 -145,IAR_LU_biexp,esophagus cont,200,0.32,0.03,0.00167,0.32007433,0.030021151,0.001668683,0.45,0.45,0.45,0.45,0.45,0.45,0.005887283,0.001220815,2.34E-05,299,299,299 -146,IAR_LU_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.210970907,0.031031066,0.001822947,0.45,0.45,0.45,0.45,0.45,0.45,0.203989005,0.03446746,0.000586837,299,299,299 -147,IAR_LU_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.157683966,0.026659908,0.002001881,0.45,0.45,0.45,0.45,0.45,0.45,0.114151569,0.026341188,0.000253816,299,299,299 -148,IAR_LU_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.121533306,0.026859566,0.002072999,0.45,0.45,0.45,0.45,0.45,0.45,0.070205006,0.022595261,0.000153941,299,299,299 -149,IAR_LU_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.100982702,0.021817156,0.002110922,0.45,0.45,0.45,0.45,0.45,0.45,0.023188431,0.008841303,6.24E-05,299,299,299 -150,IAR_LU_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.097941317,0.020324544,0.002117204,0.45,0.45,0.45,0.45,0.45,0.45,0.01052426,0.003348266,2.96E-05,299,299,299 -151,IAR_LU_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.278725113,0.029929528,0.001754916,0.45,0.45,0.45,0.45,0.45,0.45,0.214439227,0.032066541,0.000647004,299,299,299 -152,IAR_LU_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.195052951,0.026185606,0.002008375,0.45,0.45,0.45,0.45,0.45,0.45,0.107212847,0.022730281,0.000274367,299,299,299 -153,IAR_LU_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.168666541,0.022131208,0.002065348,0.45,0.45,0.45,0.45,0.45,0.45,0.051119773,0.013054907,0.000140952,299,299,299 -154,IAR_LU_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.160303514,0.019506394,0.002083251,0.45,0.45,0.45,0.45,0.45,0.45,0.022096746,0.004024377,6.45E-05,299,299,299 -155,IAR_LU_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.158549311,0.019121903,0.002087809,0.45,0.45,0.45,0.45,0.45,0.45,0.010717109,0.001954292,3.17E-05,299,299,299 -156,IAR_LU_biexp,Liver,10,0.11,0.1,0.0015,0.171505033,0.058589487,0.001330829,0.45,0.45,0.45,0.45,0.45,0.45,0.136516097,0.040090039,0.000354915,299,299,299 -157,IAR_LU_biexp,Liver,30,0.11,0.1,0.0015,0.116524923,0.079746132,0.001470396,0.45,0.45,0.45,0.45,0.45,0.45,0.033344572,0.027358664,9.54E-05,299,299,299 -158,IAR_LU_biexp,Liver,50,0.11,0.1,0.0015,0.111213986,0.087171084,0.001487978,0.45,0.45,0.45,0.45,0.45,0.45,0.015400616,0.018117775,4.77E-05,299,299,299 -159,IAR_LU_biexp,Liver,100,0.11,0.1,0.0015,0.110305057,0.092787224,0.001494436,0.45,0.45,0.45,0.45,0.45,0.45,0.007603673,0.010636985,2.35E-05,299,299,299 -160,IAR_LU_biexp,Liver,200,0.11,0.1,0.0015,0.110083102,0.096108863,0.001497297,0.45,0.45,0.45,0.45,0.45,0.45,0.003774092,0.005893522,1.17E-05,299,299,299 -161,IAR_LU_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.270068425,0.051790092,0.001976774,0.45,0.45,0.45,0.45,0.45,0.45,0.196904006,0.039079007,0.00065725,299,299,299 -162,IAR_LU_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.159128615,0.075299601,0.002360279,0.45,0.45,0.45,0.45,0.45,0.45,0.044062237,0.025826858,0.00017363,299,299,299 -163,IAR_LU_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.152177073,0.079191981,0.002386876,0.45,0.45,0.45,0.45,0.45,0.45,0.017389108,0.018489134,8.64E-05,299,299,299 -164,IAR_LU_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.150508149,0.080680789,0.002396117,0.45,0.45,0.45,0.45,0.45,0.45,0.008522016,0.012076753,4.33E-05,299,299,299 -165,IAR_LU_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150084202,0.080485951,0.002398748,0.45,0.45,0.45,0.45,0.45,0.45,0.004245994,0.006943954,2.19E-05,299,299,299 -166,IAR_LU_biexp,myocardium ra,10,0.07,0.07,0.0015,0.144345298,0.049616044,0.001329984,0.45,0.45,0.45,0.45,0.45,0.45,0.14085515,0.040460542,0.000341449,299,299,299 -167,IAR_LU_biexp,myocardium ra,30,0.07,0.07,0.0015,0.088493402,0.060599019,0.001455011,0.45,0.45,0.45,0.45,0.45,0.45,0.049232584,0.035197619,0.000113777,299,299,299 -168,IAR_LU_biexp,myocardium ra,50,0.07,0.07,0.0015,0.075864717,0.067916501,0.00148333,0.45,0.45,0.45,0.45,0.45,0.45,0.023045666,0.029100163,5.94E-05,299,299,299 -169,IAR_LU_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070874913,0.071193644,0.001496424,0.45,0.45,0.45,0.45,0.45,0.45,0.008165007,0.019272121,2.44E-05,299,299,299 -170,IAR_LU_biexp,myocardium ra,200,0.07,0.07,0.0015,0.070182595,0.071171768,0.001498969,0.45,0.45,0.45,0.45,0.45,0.45,0.004032984,0.011962012,1.22E-05,299,299,299 -171,IAR_LU_biexp,myocardium RV,10,0.15,0.08,0.0024,0.270068425,0.051790092,0.001976774,0.45,0.45,0.45,0.45,0.45,0.45,0.196904006,0.039079007,0.00065725,299,299,299 -172,IAR_LU_biexp,myocardium RV,30,0.15,0.08,0.0024,0.159128615,0.075299601,0.002360279,0.45,0.45,0.45,0.45,0.45,0.45,0.044062237,0.025826858,0.00017363,299,299,299 -173,IAR_LU_biexp,myocardium RV,50,0.15,0.08,0.0024,0.152177073,0.079191981,0.002386876,0.45,0.45,0.45,0.45,0.45,0.45,0.017389108,0.018489134,8.64E-05,299,299,299 -174,IAR_LU_biexp,myocardium RV,100,0.15,0.08,0.0024,0.150508149,0.080680789,0.002396117,0.45,0.45,0.45,0.45,0.45,0.45,0.008522016,0.012076753,4.33E-05,299,299,299 -175,IAR_LU_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150084202,0.080485951,0.002398748,0.45,0.45,0.45,0.45,0.45,0.45,0.004245994,0.006943954,2.19E-05,299,299,299 -176,IAR_LU_biexp,pancreas,10,0.15,0.01,0.0013,0.194101488,0.031275884,0.001205266,0.45,0.45,0.45,0.45,0.45,0.45,0.163835606,0.035113417,0.000389002,299,299,299 -177,IAR_LU_biexp,pancreas,30,0.15,0.01,0.0013,0.180577811,0.017290382,0.001251611,0.45,0.45,0.45,0.45,0.45,0.45,0.094620148,0.020761393,0.000184226,299,299,299 -178,IAR_LU_biexp,pancreas,50,0.15,0.01,0.0013,0.172218378,0.012201506,0.001264619,0.45,0.45,0.45,0.45,0.45,0.45,0.068005782,0.010289547,0.00012628,299,299,299 -179,IAR_LU_biexp,pancreas,100,0.15,0.01,0.0013,0.15681439,0.010276361,0.001288314,0.45,0.45,0.45,0.45,0.45,0.45,0.033092544,0.002805941,6.20E-05,299,299,299 -180,IAR_LU_biexp,pancreas,200,0.15,0.01,0.0013,0.151550794,0.010051333,0.001296881,0.45,0.45,0.45,0.45,0.45,0.45,0.015024922,0.00127662,2.91E-05,299,299,299 -181,IAR_LU_biexp,pericardium,10,0.07,0.01,0.003,0.285492213,0.019067033,0.002261575,0.45,0.45,0.45,0.45,0.45,0.45,0.295897833,0.028197474,0.000970922,299,299,299 -182,IAR_LU_biexp,pericardium,30,0.07,0.01,0.003,0.171300202,0.017665897,0.002797556,0.45,0.45,0.45,0.45,0.45,0.45,0.19234322,0.024975905,0.000428028,299,299,299 -183,IAR_LU_biexp,pericardium,50,0.07,0.01,0.003,0.150556932,0.018667329,0.002870296,0.45,0.45,0.45,0.45,0.45,0.45,0.153716457,0.02482354,0.000300739,299,299,299 -184,IAR_LU_biexp,pericardium,100,0.07,0.01,0.003,0.137271521,0.016047399,0.002909275,0.45,0.45,0.45,0.45,0.45,0.45,0.117893567,0.019515272,0.000196242,299,299,299 -185,IAR_LU_biexp,pericardium,200,0.07,0.01,0.003,0.102312394,0.012593093,0.002957776,0.45,0.45,0.45,0.45,0.45,0.45,0.078504107,0.010905113,0.000124247,299,299,299 -186,IAR_LU_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.278725113,0.029929528,0.001754916,0.45,0.45,0.45,0.45,0.45,0.45,0.214439227,0.032066541,0.000647004,299,299,299 -187,IAR_LU_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.195052951,0.026185606,0.002008375,0.45,0.45,0.45,0.45,0.45,0.45,0.107212847,0.022730281,0.000274367,299,299,299 -188,IAR_LU_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.168666541,0.022131208,0.002065348,0.45,0.45,0.45,0.45,0.45,0.45,0.051119773,0.013054907,0.000140952,299,299,299 -189,IAR_LU_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.160303514,0.019506394,0.002083251,0.45,0.45,0.45,0.45,0.45,0.45,0.022096746,0.004024377,6.45E-05,299,299,299 -190,IAR_LU_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.158549311,0.019121903,0.002087809,0.45,0.45,0.45,0.45,0.45,0.45,0.010717109,0.001954292,3.17E-05,299,299,299 -191,IAR_LU_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.210970907,0.031031066,0.001822947,0.45,0.45,0.45,0.45,0.45,0.45,0.203989005,0.03446746,0.000586837,299,299,299 -192,IAR_LU_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.157683966,0.026659908,0.002001881,0.45,0.45,0.45,0.45,0.45,0.45,0.114151569,0.026341188,0.000253816,299,299,299 -193,IAR_LU_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.121533306,0.026859566,0.002072999,0.45,0.45,0.45,0.45,0.45,0.45,0.070205006,0.022595261,0.000153941,299,299,299 -194,IAR_LU_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.100982702,0.021817156,0.002110922,0.45,0.45,0.45,0.45,0.45,0.45,0.023188431,0.008841303,6.24E-05,299,299,299 -195,IAR_LU_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.097941317,0.020324544,0.002117204,0.45,0.45,0.45,0.45,0.45,0.45,0.01052426,0.003348266,2.96E-05,299,299,299 -196,IAR_LU_biexp,small intestine,10,0.69,0.029,0.00131,0.697212667,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.096914961,0.015087311,0.000756516,299,299,299 -197,IAR_LU_biexp,small intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.036094759,0.00363626,0.00028388,299,299,299 -198,IAR_LU_biexp,small intestine,50,0.69,0.029,0.00131,0.690035516,0.029111599,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472226,0.002118059,0.000167873,299,299,299 -199,IAR_LU_biexp,small intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 -200,IAR_LU_biexp,small intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 -201,IAR_LU_biexp,spleen,10,0.2,0.03,0.0013,0.258238381,0.041585549,0.001156583,0.45,0.45,0.45,0.45,0.45,0.45,0.138972936,0.033199359,0.000392003,299,299,299 -202,IAR_LU_biexp,spleen,30,0.2,0.03,0.0013,0.206967214,0.033891958,0.001281564,0.45,0.45,0.45,0.45,0.45,0.45,0.038763348,0.01754092,0.000113885,299,299,299 -203,IAR_LU_biexp,spleen,50,0.2,0.03,0.0013,0.202249287,0.031283391,0.00129257,0.45,0.45,0.45,0.45,0.45,0.45,0.022158151,0.008797369,6.60E-05,299,299,299 -204,IAR_LU_biexp,spleen,100,0.2,0.03,0.0013,0.20048708,0.030250428,0.001297394,0.45,0.45,0.45,0.45,0.45,0.45,0.010745718,0.003832956,3.21E-05,299,299,299 -205,IAR_LU_biexp,spleen,200,0.2,0.03,0.0013,0.200092056,0.030052736,0.001298975,0.45,0.45,0.45,0.45,0.45,0.45,0.005316567,0.001865286,1.59E-05,299,299,299 -206,IAR_LU_biexp,st wall,10,0.3,0.012,0.0015,0.361045682,0.025295608,0.001317174,0.45,0.45,0.45,0.45,0.45,0.45,0.203267228,0.028564728,0.000612145,299,299,299 -207,IAR_LU_biexp,st wall,30,0.3,0.012,0.0015,0.323962429,0.013419393,0.001438868,0.45,0.45,0.45,0.45,0.45,0.45,0.098208329,0.007989333,0.000260082,299,299,299 -208,IAR_LU_biexp,st wall,50,0.3,0.012,0.0015,0.307361981,0.012384744,0.001479686,0.45,0.45,0.45,0.45,0.45,0.45,0.054390627,0.003119057,0.000143561,299,299,299 -209,IAR_LU_biexp,st wall,100,0.3,0.012,0.0015,0.301677558,0.012087836,0.001494343,0.45,0.45,0.45,0.45,0.45,0.45,0.026338451,0.001432276,6.97E-05,299,299,299 -210,IAR_LU_biexp,st wall,200,0.3,0.012,0.0015,0.300399088,0.012019304,0.001498139,0.45,0.45,0.45,0.45,0.45,0.45,0.013097968,0.000698591,3.46E-05,299,299,299 -211,IAR_LU_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.697212668,0.032502374,0.001137829,0.45,0.45,0.45,0.45,0.45,0.45,0.096914961,0.015087311,0.000756516,299,299,299 -212,IAR_LU_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.690042688,0.029340874,0.001297338,0.45,0.45,0.45,0.45,0.45,0.45,0.03609476,0.00363626,0.00028388,299,299,299 -213,IAR_LU_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.690035516,0.029111599,0.001302385,0.45,0.45,0.45,0.45,0.45,0.45,0.021472226,0.002118059,0.000167873,299,299,299 -214,IAR_LU_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.690016591,0.029024172,0.001306172,0.45,0.45,0.45,0.45,0.45,0.45,0.010687088,0.001046624,8.34E-05,299,299,299 -215,IAR_LU_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.690006716,0.029004522,0.001308087,0.45,0.45,0.45,0.45,0.45,0.45,0.005335996,0.000521522,4.16E-05,299,299,299 -216,IAR_LU_biexp,Vein,10,1,0.1,0.003,0.926470695,0.098261376,0.000127034,0.45,0.45,0.45,0.45,0.45,0.45,0.021521067,0.004961527,0.000371974,299,299,299 -217,IAR_LU_biexp,Vein,30,1,0.1,0.003,0.977495352,0.099448405,8.68E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.006924618,0.001650052,0.00029552,299,299,299 -218,IAR_LU_biexp,Vein,50,1,0.1,0.003,0.986847788,0.099657852,7.50E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.004110894,0.001017505,0.000278518,299,299,299 -219,IAR_LU_biexp,Vein,100,1,0.1,0.003,0.993665236,0.099816488,5.79E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.002003789,0.000529927,0.000263826,299,299,299 -220,IAR_LU_biexp,Vein,200,1,0.1,0.003,0.996952138,0.099902354,4.82E-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618,0.000274815,0.00025656,299,299,299 -221,IAR_LU_modified_mix,Artery,10,1,0.1,0.003,0.933585498,0.098157464,9.69E-05,0.35,0.35,0.35,0,0,0,0.021536789,0.004837369,0.000275993,299,299,299 -222,IAR_LU_modified_mix,Artery,30,1,0.1,0.003,0.97866099,0.098925381,0.000105438,0.35,0.35,0.35,0,0,0,0.007178486,0.002552449,0.000389452,299,299,299 -223,IAR_LU_modified_mix,Artery,50,1,0.1,0.003,0.987498292,0.099329795,0.000129154,0.35,0.35,0.35,0,0,0,0.004229407,0.001602046,0.000484318,299,299,299 -224,IAR_LU_modified_mix,Artery,100,1,0.1,0.003,0.993800721,0.099629788,0.000654204,0.35,0.35,0.35,0,0,0,0.002234854,0.000852588,0.000795654,299,299,299 -225,IAR_LU_modified_mix,Artery,200,1,0.1,0.003,0.996838931,0.099812023,0.000929915,0.35,0.35,0.35,0,0,0,0.001219395,0.00043314,0.000927151,299,299,299 -226,IAR_LU_modified_mix,asc lower intestine,10,0.69,0.029,0.00131,0.701183027,0.037663182,0.001235528,0.35,0.35,0.35,0,0,0,0.083800073,0.014230338,0.000699879,299,299,299 -227,IAR_LU_modified_mix,asc lower intestine,30,0.69,0.029,0.00131,0.689290201,0.030566797,0.001325736,0.35,0.35,0.35,0,0,0,0.034311286,0.003874222,0.000274365,299,299,299 -228,IAR_LU_modified_mix,asc lower intestine,50,0.69,0.029,0.00131,0.689070661,0.029613329,0.001316619,0.35,0.35,0.35,0,0,0,0.021103665,0.002314011,0.000165641,299,299,299 -229,IAR_LU_modified_mix,asc lower intestine,100,0.69,0.029,0.00131,0.689235661,0.029167441,0.001312393,0.35,0.35,0.35,0,0,0,0.010621284,0.001184636,8.32E-05,299,299,299 -230,IAR_LU_modified_mix,asc lower intestine,200,0.69,0.029,0.00131,0.689605412,0.029061354,0.00131096,0.35,0.35,0.35,0,0,0,0.005304789,0.000596434,4.16E-05,299,299,299 -231,IAR_LU_modified_mix,Blood RA,10,1,0.1,0.003,0.933571674,0.098179996,9.69E-05,0.35,0.35,0.35,0,0,0,0.021531762,0.00482884,0.000274227,299,299,299 -232,IAR_LU_modified_mix,Blood RA,30,1,0.1,0.003,0.97866475,0.098924147,0.00010546,0.35,0.35,0.35,0,0,0,0.00717458,0.002560317,0.00039157,299,299,299 -233,IAR_LU_modified_mix,Blood RA,50,1,0.1,0.003,0.987513436,0.09931794,0.000133319,0.35,0.35,0.35,0,0,0,0.004260592,0.001630674,0.000506176,299,299,299 -234,IAR_LU_modified_mix,Blood RA,100,1,0.1,0.003,0.99377906,0.099631741,0.000656412,0.35,0.35,0.35,0,0,0,0.002233794,0.000861993,0.000794136,299,299,299 -235,IAR_LU_modified_mix,Blood RA,200,1,0.1,0.003,0.996844779,0.099803471,0.000950963,0.35,0.35,0.35,0,0,0,0.00123142,0.000438548,0.000907622,299,299,299 -236,IAR_LU_modified_mix,Blood RV,10,1,0.1,0.003,0.933567035,0.0981804,9.72E-05,0.35,0.35,0.35,0,0,0,0.021532249,0.004827321,0.000276299,299,299,299 -237,IAR_LU_modified_mix,Blood RV,30,1,0.1,0.003,0.978662585,0.098927544,0.000105269,0.35,0.35,0.35,0,0,0,0.007176238,0.0025574,0.000390635,299,299,299 -238,IAR_LU_modified_mix,Blood RV,50,1,0.1,0.003,0.987518052,0.099326331,0.000138935,0.35,0.35,0.35,0,0,0,0.004288932,0.001598073,0.000530085,299,299,299 -239,IAR_LU_modified_mix,Blood RV,100,1,0.1,0.003,0.993800121,0.099630889,0.00066833,0.35,0.35,0.35,0,0,0,0.002255411,0.000846892,0.000826259,299,299,299 -240,IAR_LU_modified_mix,Blood RV,200,1,0.1,0.003,0.996847422,0.099804533,0.000864913,0.35,0.35,0.35,0,0,0,0.001218892,0.000451967,0.000878525,299,299,299 -241,IAR_LU_modified_mix,desc lower intestine,10,0.69,0.029,0.00131,0.701210417,0.037659365,0.001235281,0.35,0.35,0.35,0,0,0,0.0838037,0.01422387,0.000699364,299,299,299 -242,IAR_LU_modified_mix,desc lower intestine,30,0.69,0.029,0.00131,0.689288149,0.030567592,0.001325803,0.35,0.35,0.35,0,0,0,0.034291465,0.003874974,0.000274453,299,299,299 -243,IAR_LU_modified_mix,desc lower intestine,50,0.69,0.029,0.00131,0.689067879,0.029613638,0.001316604,0.35,0.35,0.35,0,0,0,0.02111824,0.002315829,0.000165691,299,299,299 -244,IAR_LU_modified_mix,desc lower intestine,100,0.69,0.029,0.00131,0.689242118,0.029166501,0.001312342,0.35,0.35,0.35,0,0,0,0.010611633,0.001184343,8.32E-05,299,299,299 -245,IAR_LU_modified_mix,desc lower intestine,200,0.69,0.029,0.00131,0.689582683,0.029063778,0.001311114,0.35,0.35,0.35,0,0,0,0.005303206,0.000594675,4.16E-05,299,299,299 -246,IAR_LU_modified_mix,esophagus,10,0.32,0.03,0.00167,0.401162145,0.044505563,0.001539736,0.35,0.35,0.35,0,0,0,0.102560346,0.025884854,0.000432757,299,299,299 -247,IAR_LU_modified_mix,esophagus,30,0.32,0.03,0.00167,0.337533779,0.033315069,0.001648339,0.35,0.35,0.35,0,0,0,0.040471693,0.009673424,0.000155139,299,299,299 -248,IAR_LU_modified_mix,esophagus,50,0.32,0.03,0.00167,0.32780132,0.031278484,0.001659346,0.35,0.35,0.35,0,0,0,0.025189402,0.005042477,9.38E-05,299,299,299 -249,IAR_LU_modified_mix,esophagus,100,0.32,0.03,0.00167,0.321627369,0.030363705,0.001667009,0.35,0.35,0.35,0,0,0,0.013005665,0.002464501,4.73E-05,299,299,299 -250,IAR_LU_modified_mix,esophagus,200,0.32,0.03,0.00167,0.319960908,0.030126514,0.001669589,0.35,0.35,0.35,0,0,0,0.006666776,0.001239427,2.37E-05,299,299,299 -251,IAR_LU_modified_mix,esophagus cont,10,0.32,0.03,0.00167,0.400889682,0.044522675,0.001541568,0.35,0.35,0.35,0,0,0,0.102185902,0.025853926,0.000435332,299,299,299 -252,IAR_LU_modified_mix,esophagus cont,30,0.32,0.03,0.00167,0.337499868,0.033327122,0.001648476,0.35,0.35,0.35,0,0,0,0.04046196,0.009685408,0.000155032,299,299,299 -253,IAR_LU_modified_mix,esophagus cont,50,0.32,0.03,0.00167,0.327741721,0.031294305,0.001659477,0.35,0.35,0.35,0,0,0,0.025218858,0.005067032,9.40E-05,299,299,299 -254,IAR_LU_modified_mix,esophagus cont,100,0.32,0.03,0.00167,0.32157592,0.030376402,0.00166719,0.35,0.35,0.35,0,0,0,0.013010309,0.002457789,4.72E-05,299,299,299 -255,IAR_LU_modified_mix,esophagus cont,200,0.32,0.03,0.00167,0.319991094,0.030119433,0.001669495,0.35,0.35,0.35,0,0,0,0.006662012,0.001238349,2.36E-05,299,299,299 -256,IAR_LU_modified_mix,Left kidney cortex,10,0.097,0.02,0.00212,0.251345368,0.047102019,0.001874486,0.35,0.35,0.35,0,0,0,0.152953898,0.03267794,0.00051008,299,299,299 -257,IAR_LU_modified_mix,Left kidney cortex,30,0.097,0.02,0.00212,0.151979124,0.033994137,0.002042844,0.35,0.35,0.35,0,0,0,0.07608832,0.027346893,0.000194312,299,299,299 -258,IAR_LU_modified_mix,Left kidney cortex,50,0.097,0.02,0.00212,0.125804872,0.028875206,0.002080221,0.35,0.35,0.35,0,0,0,0.048064026,0.022048945,0.000120439,299,299,299 -259,IAR_LU_modified_mix,Left kidney cortex,100,0.097,0.02,0.00212,0.109168358,0.02107736,0.002100506,0.35,0.35,0.35,0,0,0,0.020268428,0.008565169,5.54E-05,299,299,299 -260,IAR_LU_modified_mix,Left kidney cortex,200,0.097,0.02,0.00212,0.102581896,0.019542534,0.002109142,0.35,0.35,0.35,0,0,0,0.009946767,0.003013677,2.73E-05,299,299,299 -261,IAR_LU_modified_mix,left kidney medulla,10,0.158,0.019,0.00209,0.29203463,0.046164277,0.001862116,0.35,0.35,0.35,0,0,0,0.155532305,0.032754471,0.000547848,299,299,299 -262,IAR_LU_modified_mix,left kidney medulla,30,0.158,0.019,0.00209,0.194835612,0.029847423,0.002044034,0.35,0.35,0.35,0,0,0,0.071093392,0.021799987,0.000204183,299,299,299 -263,IAR_LU_modified_mix,left kidney medulla,50,0.158,0.019,0.00209,0.17422836,0.024244612,0.002072577,0.35,0.35,0.35,0,0,0,0.04157661,0.012938034,0.000121633,299,299,299 -264,IAR_LU_modified_mix,left kidney medulla,100,0.158,0.019,0.00209,0.163237476,0.020316331,0.002084258,0.35,0.35,0.35,0,0,0,0.021011224,0.00392657,6.10E-05,299,299,299 -265,IAR_LU_modified_mix,left kidney medulla,200,0.158,0.019,0.00209,0.15888846,0.019441617,0.002089164,0.35,0.35,0.35,0,0,0,0.011107822,0.001963321,3.16E-05,299,299,299 -266,IAR_LU_modified_mix,Liver,10,0.11,0.1,0.0015,0.241195763,0.064165448,0.001329128,0.35,0.35,0.35,0,0,0,0.100694311,0.034250612,0.000295057,299,299,299 -267,IAR_LU_modified_mix,Liver,30,0.11,0.1,0.0015,0.141213557,0.080030575,0.001457676,0.35,0.35,0.35,0,0,0,0.03293353,0.026310745,8.89E-05,299,299,299 -268,IAR_LU_modified_mix,Liver,50,0.11,0.1,0.0015,0.123094957,0.086999016,0.001481294,0.35,0.35,0.35,0,0,0,0.018455659,0.017850533,4.85E-05,299,299,299 -269,IAR_LU_modified_mix,Liver,100,0.11,0.1,0.0015,0.113750268,0.092524083,0.001492491,0.35,0.35,0.35,0,0,0,0.009702994,0.010461345,2.39E-05,299,299,299 -270,IAR_LU_modified_mix,Liver,200,0.11,0.1,0.0015,0.111149886,0.095790054,0.001496602,0.35,0.35,0.35,0,0,0,0.005229869,0.005808767,1.19E-05,299,299,299 -271,IAR_LU_modified_mix,Myocardium LV,10,0.15,0.08,0.0024,0.291461531,0.06337411,0.002073548,0.35,0.35,0.35,0,0,0,0.127600865,0.03342574,0.000514838,299,299,299 -272,IAR_LU_modified_mix,Myocardium LV,30,0.15,0.08,0.0024,0.178238819,0.076415923,0.002345026,0.35,0.35,0.35,0,0,0,0.037182528,0.024327275,0.000153544,299,299,299 -273,IAR_LU_modified_mix,Myocardium LV,50,0.15,0.08,0.0024,0.160907615,0.079285372,0.002378232,0.35,0.35,0.35,0,0,0,0.020775703,0.018277161,8.80E-05,299,299,299 -274,IAR_LU_modified_mix,Myocardium LV,100,0.15,0.08,0.0024,0.152018374,0.080628062,0.002394546,0.35,0.35,0.35,0,0,0,0.010877123,0.011966734,4.44E-05,299,299,299 -275,IAR_LU_modified_mix,Myocardium LV,200,0.15,0.08,0.0024,0.150216575,0.080439513,0.002398536,0.35,0.35,0.35,0,0,0,0.005765294,0.006947921,2.26E-05,299,299,299 -276,IAR_LU_modified_mix,myocardium ra,10,0.07,0.07,0.0015,0.217381435,0.054601498,0.001330884,0.35,0.35,0.35,0,0,0,0.107017813,0.033504387,0.000296878,299,299,299 -277,IAR_LU_modified_mix,myocardium ra,30,0.07,0.07,0.0015,0.114067575,0.060985985,0.001446651,0.35,0.35,0.35,0,0,0,0.040808188,0.032104126,9.70E-05,299,299,299 -278,IAR_LU_modified_mix,myocardium ra,50,0.07,0.07,0.0015,0.09065019,0.066402557,0.001475263,0.35,0.35,0.35,0,0,0,0.022995129,0.026747369,5.63E-05,299,299,299 -279,IAR_LU_modified_mix,myocardium ra,100,0.07,0.07,0.0015,0.076308143,0.070311823,0.001492231,0.35,0.35,0.35,0,0,0,0.01097264,0.020399942,2.73E-05,299,299,299 -280,IAR_LU_modified_mix,myocardium ra,200,0.07,0.07,0.0015,0.07119761,0.070948319,0.001498179,0.35,0.35,0.35,0,0,0,0.005499449,0.01239686,1.33E-05,299,299,299 -281,IAR_LU_modified_mix,myocardium RV,10,0.15,0.08,0.0024,0.290343842,0.063156542,0.002079168,0.35,0.35,0.35,0,0,0,0.123193212,0.033541987,0.000502527,299,299,299 -282,IAR_LU_modified_mix,myocardium RV,30,0.15,0.08,0.0024,0.17848393,0.076183088,0.002344261,0.35,0.35,0.35,0,0,0,0.037003453,0.024499514,0.000155052,299,299,299 -283,IAR_LU_modified_mix,myocardium RV,50,0.15,0.08,0.0024,0.160935832,0.079243465,0.002378149,0.35,0.35,0.35,0,0,0,0.020811916,0.018271547,8.79E-05,299,299,299 -284,IAR_LU_modified_mix,myocardium RV,100,0.15,0.08,0.0024,0.152022055,0.080619221,0.002394526,0.35,0.35,0.35,0,0,0,0.010880877,0.01197127,4.44E-05,299,299,299 -285,IAR_LU_modified_mix,myocardium RV,200,0.15,0.08,0.0024,0.150196055,0.080475848,0.002398612,0.35,0.35,0.35,0,0,0,0.005723963,0.006909242,2.26E-05,299,299,299 -286,IAR_LU_modified_mix,pancreas,10,0.15,0.01,0.0013,0.252480197,0.042321361,0.001228359,0.35,0.35,0.35,0,0,0,0.126759368,0.032789127,0.000344745,299,299,299 -287,IAR_LU_modified_mix,pancreas,30,0.15,0.01,0.0013,0.18315252,0.021870382,0.001278366,0.35,0.35,0.35,0,0,0,0.071009081,0.02209634,0.00014983,299,299,299 -288,IAR_LU_modified_mix,pancreas,50,0.15,0.01,0.0013,0.169795981,0.014403054,0.00128504,0.35,0.35,0.35,0,0,0,0.050063293,0.010753154,0.000100029,299,299,299 -289,IAR_LU_modified_mix,pancreas,100,0.15,0.01,0.0013,0.156711248,0.011269338,0.001295759,0.35,0.35,0.35,0,0,0,0.027629876,0.002813866,5.38E-05,299,299,299 -290,IAR_LU_modified_mix,pancreas,200,0.15,0.01,0.0013,0.151391515,0.010446564,0.001299811,0.35,0.35,0.35,0,0,0,0.014141099,0.001306694,2.74E-05,299,299,299 -291,IAR_LU_modified_mix,pericardium,10,0.07,0.01,0.003,0.258557302,0.047106818,0.002487954,0.35,0.35,0.35,0,0,0,0.214903019,0.033510828,0.000830838,299,299,299 -292,IAR_LU_modified_mix,pericardium,30,0.07,0.01,0.003,0.149947239,0.036923758,0.002845034,0.35,0.35,0.35,0,0,0,0.158441859,0.030830048,0.000396003,299,299,299 -293,IAR_LU_modified_mix,pericardium,50,0.07,0.01,0.003,0.135294848,0.033060056,0.002890363,0.35,0.35,0.35,0,0,0,0.137727374,0.031802391,0.000292283,299,299,299 -294,IAR_LU_modified_mix,pericardium,100,0.07,0.01,0.003,0.119582922,0.021466818,0.00292934,0.35,0.35,0.35,0,0,0,0.106494154,0.024864291,0.000191539,299,299,299 -295,IAR_LU_modified_mix,pericardium,200,0.07,0.01,0.003,0.099798112,0.012912109,0.002958068,0.35,0.35,0.35,0,0,0,0.071439988,0.011033722,0.000118667,299,299,299 -296,IAR_LU_modified_mix,right kidney medulla,10,0.158,0.019,0.00209,0.287388355,0.046990232,0.0018749,0.35,0.35,0.35,0,0,0,0.154088233,0.032941051,0.000549302,299,299,299 -297,IAR_LU_modified_mix,right kidney medulla,30,0.158,0.019,0.00209,0.195385185,0.029642672,0.002042645,0.35,0.35,0.35,0,0,0,0.071080737,0.021685682,0.000203684,299,299,299 -298,IAR_LU_modified_mix,right kidney medulla,50,0.158,0.019,0.00209,0.174199345,0.024283387,0.002072714,0.35,0.35,0.35,0,0,0,0.041529718,0.013037896,0.000121526,299,299,299 -299,IAR_LU_modified_mix,right kidney medulla,100,0.158,0.019,0.00209,0.163223785,0.020315874,0.002084306,0.35,0.35,0.35,0,0,0,0.021039576,0.003904718,6.11E-05,299,299,299 -300,IAR_LU_modified_mix,right kidney medulla,200,0.158,0.019,0.00209,0.158956494,0.019425636,0.002088993,0.35,0.35,0.35,0,0,0,0.011042297,0.001941881,3.14E-05,299,299,299 -301,IAR_LU_modified_mix,Right kydney cortex,10,0.097,0.02,0.00212,0.250888349,0.047371403,0.001875637,0.35,0.35,0.35,0,0,0,0.152600475,0.032884472,0.000509347,299,299,299 -302,IAR_LU_modified_mix,Right kydney cortex,30,0.097,0.02,0.00212,0.152394367,0.033834225,0.002041764,0.35,0.35,0.35,0,0,0,0.076460293,0.027206016,0.000194417,299,299,299 -303,IAR_LU_modified_mix,Right kydney cortex,50,0.097,0.02,0.00212,0.125722136,0.028841893,0.002080458,0.35,0.35,0.35,0,0,0,0.047941096,0.022098772,0.000120008,299,299,299 -304,IAR_LU_modified_mix,Right kydney cortex,100,0.097,0.02,0.00212,0.109258251,0.021088834,0.002100269,0.35,0.35,0.35,0,0,0,0.020115657,0.009065525,5.50E-05,299,299,299 -305,IAR_LU_modified_mix,Right kydney cortex,200,0.097,0.02,0.00212,0.102591352,0.01951949,0.002109078,0.35,0.35,0.35,0,0,0,0.009874238,0.002906333,2.72E-05,299,299,299 -306,IAR_LU_modified_mix,small intestine,10,0.69,0.029,0.00131,0.701245974,0.037653311,0.001234943,0.35,0.35,0.35,0,0,0,0.083808798,0.014220898,0.000699569,299,299,299 -307,IAR_LU_modified_mix,small intestine,30,0.69,0.029,0.00131,0.689282253,0.030567952,0.001325823,0.35,0.35,0.35,0,0,0,0.034312035,0.003873819,0.000274505,299,299,299 -308,IAR_LU_modified_mix,small intestine,50,0.69,0.029,0.00131,0.689064699,0.029614147,0.001316647,0.35,0.35,0.35,0,0,0,0.021104638,0.002315034,0.000165568,299,299,299 -309,IAR_LU_modified_mix,small intestine,100,0.69,0.029,0.00131,0.689240856,0.029166955,0.001312365,0.35,0.35,0.35,0,0,0,0.010592721,0.00118429,8.30E-05,299,299,299 -310,IAR_LU_modified_mix,small intestine,200,0.69,0.029,0.00131,0.689565538,0.029065431,0.001311213,0.35,0.35,0.35,0,0,0,0.005318597,0.000596168,4.16E-05,299,299,299 -311,IAR_LU_modified_mix,spleen,10,0.2,0.03,0.0013,0.307436964,0.047114743,0.001181115,0.35,0.35,0.35,0,0,0,0.098990291,0.029448219,0.000309748,299,299,299 -312,IAR_LU_modified_mix,spleen,30,0.2,0.03,0.0013,0.226765953,0.035745682,0.001274169,0.35,0.35,0.35,0,0,0,0.038338503,0.01667343,0.000105849,299,299,299 -313,IAR_LU_modified_mix,spleen,50,0.2,0.03,0.0013,0.212801364,0.032218085,0.001287327,0.35,0.35,0.35,0,0,0,0.023950932,0.00843275,6.46E-05,299,299,299 -314,IAR_LU_modified_mix,spleen,100,0.2,0.03,0.0013,0.20393232,0.030585515,0.001295591,0.35,0.35,0.35,0,0,0,0.012419155,0.003777132,3.24E-05,299,299,299 -315,IAR_LU_modified_mix,spleen,200,0.2,0.03,0.0013,0.200647029,0.030153375,0.001298839,0.35,0.35,0.35,0,0,0,0.006475836,0.001864115,1.62E-05,299,299,299 -316,IAR_LU_modified_mix,st wall,10,0.3,0.012,0.0015,0.367945972,0.032881553,0.001434967,0.35,0.35,0.35,0,0,0,0.147807528,0.027194488,0.000506058,299,299,299 -317,IAR_LU_modified_mix,st wall,30,0.3,0.012,0.0015,0.308728622,0.016604929,0.001511115,0.35,0.35,0.35,0,0,0,0.072613174,0.007994054,0.000207407,299,299,299 -318,IAR_LU_modified_mix,st wall,50,0.3,0.012,0.0015,0.300780288,0.014131458,0.001513982,0.35,0.35,0.35,0,0,0,0.045953191,0.003478269,0.000127429,299,299,299 -319,IAR_LU_modified_mix,st wall,100,0.3,0.012,0.0015,0.298614415,0.012747355,0.001508151,0.35,0.35,0.35,0,0,0,0.024645578,0.001586662,6.63E-05,299,299,299 -320,IAR_LU_modified_mix,st wall,200,0.3,0.012,0.0015,0.298468884,0.012252636,0.001504399,0.35,0.35,0.35,0,0,0,0.012803407,0.000749712,3.39E-05,299,299,299 -321,IAR_LU_modified_mix,trans lower intestine,10,0.69,0.029,0.00131,0.701172083,0.037664336,0.001235321,0.35,0.35,0.35,0,0,0,0.083827604,0.014237105,0.000699686,299,299,299 -322,IAR_LU_modified_mix,trans lower intestine,30,0.69,0.029,0.00131,0.689289919,0.030566993,0.001325747,0.35,0.35,0.35,0,0,0,0.034310373,0.003875815,0.000274566,299,299,299 -323,IAR_LU_modified_mix,trans lower intestine,50,0.69,0.029,0.00131,0.689070278,0.029613727,0.001316615,0.35,0.35,0.35,0,0,0,0.021124627,0.002316277,0.000165675,299,299,299 -324,IAR_LU_modified_mix,trans lower intestine,100,0.69,0.029,0.00131,0.689264337,0.029164491,0.001312209,0.35,0.35,0.35,0,0,0,0.010606117,0.001186048,8.31E-05,299,299,299 -325,IAR_LU_modified_mix,trans lower intestine,200,0.69,0.029,0.00131,0.689571593,0.029064733,0.001311168,0.35,0.35,0.35,0,0,0,0.005313539,0.000595353,4.16E-05,299,299,299 -326,IAR_LU_modified_mix,Vein,10,1,0.1,0.003,0.933576727,0.098172327,9.67E-05,0.35,0.35,0.35,0,0,0,0.021526133,0.0048308,0.000272807,299,299,299 -327,IAR_LU_modified_mix,Vein,30,1,0.1,0.003,0.978665787,0.098928707,0.000104687,0.35,0.35,0.35,0,0,0,0.007168556,0.002551674,0.000389305,299,299,299 -328,IAR_LU_modified_mix,Vein,50,1,0.1,0.003,0.987513702,0.099331329,0.000145994,0.35,0.35,0.35,0,0,0,0.0042727,0.001592503,0.000547273,299,299,299 -329,IAR_LU_modified_mix,Vein,100,1,0.1,0.003,0.993791753,0.099630691,0.000663419,0.35,0.35,0.35,0,0,0,0.002251112,0.000852347,0.000790402,299,299,299 -330,IAR_LU_modified_mix,Vein,200,1,0.1,0.003,0.996846827,0.099813302,0.000912981,0.35,0.35,0.35,0,0,0,0.001236704,0.000412864,0.000874297,299,299,299 -331,IAR_LU_modified_topopro,Artery,10,1,0.1,0.003,0.920356474,0.125272817,0.000181721,0.45,0.45,0.45,0.45,0.45,0.45,0.022466088,0.02443358,0.000580254,299,299,299 -332,IAR_LU_modified_topopro,Artery,30,1,0.1,0.003,0.974303995,0.106099273,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489592,0.008295476,0.000678898,299,299,299 -333,IAR_LU_modified_topopro,Artery,50,1,0.1,0.003,0.984941577,0.103360684,0.00015591,0.45,0.45,0.45,0.45,0.45,0.45,0.004475764,0.004954989,0.00064424,299,299,299 -334,IAR_LU_modified_topopro,Artery,100,1,0.1,0.003,0.992841729,0.101349324,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.002215293,0.002483923,0.000596162,299,299,299 -335,IAR_LU_modified_topopro,Artery,200,1,0.1,0.003,0.996733418,0.100300501,0.000119816,0.45,0.45,0.45,0.45,0.45,0.45,0.001171457,0.001008831,0.000632412,299,299,299 -336,IAR_LU_modified_topopro,asc lower intestine,10,0.69,0.029,0.00131,0.693578781,0.041535553,0.001281033,0.45,0.45,0.45,0.45,0.45,0.45,0.097050953,0.023682344,0.000819227,299,299,299 -337,IAR_LU_modified_topopro,asc lower intestine,30,0.69,0.029,0.00131,0.687810582,0.030753615,0.00133829,0.45,0.45,0.45,0.45,0.45,0.45,0.035314414,0.004359176,0.000286311,299,299,299 -338,IAR_LU_modified_topopro,asc lower intestine,50,0.69,0.029,0.00131,0.688721295,0.029625729,0.001318938,0.45,0.45,0.45,0.45,0.45,0.45,0.021246508,0.002490489,0.000169271,299,299,299 -339,IAR_LU_modified_topopro,asc lower intestine,100,0.69,0.029,0.00131,0.689845828,0.029089479,0.001307502,0.45,0.45,0.45,0.45,0.45,0.45,0.010719514,0.00127256,8.48E-05,299,299,299 -340,IAR_LU_modified_topopro,asc lower intestine,200,0.69,0.029,0.00131,0.68982594,0.029014212,0.001308477,0.45,0.45,0.45,0.45,0.45,0.45,0.005557503,0.000601295,4.25E-05,299,299,299 -341,IAR_LU_modified_topopro,Blood RA,10,1,0.1,0.003,0.920356474,0.125272817,0.000181721,0.45,0.45,0.45,0.45,0.45,0.45,0.022466088,0.02443358,0.000580254,299,299,299 -342,IAR_LU_modified_topopro,Blood RA,30,1,0.1,0.003,0.974303995,0.106099273,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489592,0.008295476,0.000678898,299,299,299 -343,IAR_LU_modified_topopro,Blood RA,50,1,0.1,0.003,0.984941577,0.103360684,0.00015591,0.45,0.45,0.45,0.45,0.45,0.45,0.004475764,0.004954989,0.00064424,299,299,299 -344,IAR_LU_modified_topopro,Blood RA,100,1,0.1,0.003,0.992841729,0.101349324,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.002215293,0.002483923,0.000596162,299,299,299 -345,IAR_LU_modified_topopro,Blood RA,200,1,0.1,0.003,0.996733418,0.100300501,0.000119816,0.45,0.45,0.45,0.45,0.45,0.45,0.001171457,0.001008831,0.000632412,299,299,299 -346,IAR_LU_modified_topopro,Blood RV,10,1,0.1,0.003,0.920296651,0.125293034,0.000183447,0.45,0.45,0.45,0.45,0.45,0.45,0.022680633,0.024433347,0.000584107,299,299,299 -347,IAR_LU_modified_topopro,Blood RV,30,1,0.1,0.003,0.974303991,0.106099274,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489578,0.008295477,0.000678897,299,299,299 -348,IAR_LU_modified_topopro,Blood RV,50,1,0.1,0.003,0.984941579,0.103360682,0.00015591,0.45,0.45,0.45,0.45,0.45,0.45,0.004475766,0.004954987,0.000644238,299,299,299 -349,IAR_LU_modified_topopro,Blood RV,100,1,0.1,0.003,0.992841727,0.101349325,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.00221529,0.002483923,0.000596162,299,299,299 -350,IAR_LU_modified_topopro,Blood RV,200,1,0.1,0.003,0.996733416,0.100300501,0.000119817,0.45,0.45,0.45,0.45,0.45,0.45,0.001171454,0.001008832,0.000632414,299,299,299 -351,IAR_LU_modified_topopro,desc lower intestine,10,0.69,0.029,0.00131,0.693532553,0.041561205,0.001285696,0.45,0.45,0.45,0.45,0.45,0.45,0.09708272,0.023763889,0.000822922,299,299,299 -352,IAR_LU_modified_topopro,desc lower intestine,30,0.69,0.029,0.00131,0.687529033,0.030786425,0.00133992,0.45,0.45,0.45,0.45,0.45,0.45,0.035340761,0.0043436,0.000285576,299,299,299 -353,IAR_LU_modified_topopro,desc lower intestine,50,0.69,0.029,0.00131,0.688938061,0.029600249,0.00131727,0.45,0.45,0.45,0.45,0.45,0.45,0.021228425,0.002473668,0.000167934,299,299,299 -354,IAR_LU_modified_topopro,desc lower intestine,100,0.69,0.029,0.00131,0.689803781,0.029094023,0.001307418,0.45,0.45,0.45,0.45,0.45,0.45,0.011012001,0.001270889,8.46E-05,299,299,299 -355,IAR_LU_modified_topopro,desc lower intestine,200,0.69,0.029,0.00131,0.68978423,0.029018962,0.001308685,0.45,0.45,0.45,0.45,0.45,0.45,0.005536395,0.000608258,4.23E-05,299,299,299 -356,IAR_LU_modified_topopro,esophagus,10,0.32,0.03,0.00167,0.398926937,0.058871325,0.001543549,0.45,0.45,0.45,0.45,0.45,0.45,0.124354467,0.0476507,0.000520429,299,299,299 -357,IAR_LU_modified_topopro,esophagus,30,0.32,0.03,0.00167,0.330953766,0.036394693,0.001674611,0.45,0.45,0.45,0.45,0.45,0.45,0.039954883,0.01568087,0.00016198,299,299,299 -358,IAR_LU_modified_topopro,esophagus,50,0.32,0.03,0.00167,0.327397496,0.031535538,0.001664105,0.45,0.45,0.45,0.45,0.45,0.45,0.025489433,0.007174534,9.87E-05,299,299,299 -359,IAR_LU_modified_topopro,esophagus,100,0.32,0.03,0.00167,0.322267039,0.030140129,0.001666344,0.45,0.45,0.45,0.45,0.45,0.45,0.013683476,0.002464606,4.89E-05,299,299,299 -360,IAR_LU_modified_topopro,esophagus,200,0.32,0.03,0.00167,0.320331698,0.030025203,0.001668478,0.45,0.45,0.45,0.45,0.45,0.45,0.00704809,0.001220329,2.41E-05,299,299,299 -361,IAR_LU_modified_topopro,esophagus cont,10,0.32,0.03,0.00167,0.398926937,0.058871325,0.001543549,0.45,0.45,0.45,0.45,0.45,0.45,0.124354467,0.0476507,0.000520429,299,299,299 -362,IAR_LU_modified_topopro,esophagus cont,30,0.32,0.03,0.00167,0.330953766,0.036394693,0.001674611,0.45,0.45,0.45,0.45,0.45,0.45,0.039954883,0.01568087,0.00016198,299,299,299 -363,IAR_LU_modified_topopro,esophagus cont,50,0.32,0.03,0.00167,0.327397496,0.031535538,0.001664105,0.45,0.45,0.45,0.45,0.45,0.45,0.025489433,0.007174534,9.87E-05,299,299,299 -364,IAR_LU_modified_topopro,esophagus cont,100,0.32,0.03,0.00167,0.322267039,0.030140129,0.001666344,0.45,0.45,0.45,0.45,0.45,0.45,0.013683476,0.002464606,4.89E-05,299,299,299 -365,IAR_LU_modified_topopro,esophagus cont,200,0.32,0.03,0.00167,0.320331698,0.030025203,0.001668478,0.45,0.45,0.45,0.45,0.45,0.45,0.00704809,0.001220329,2.41E-05,299,299,299 -366,IAR_LU_modified_topopro,Left kidney cortex,10,0.097,0.02,0.00212,0.27587976,0.064262359,0.001817507,0.45,0.45,0.45,0.45,0.45,0.45,0.185636097,0.061957761,0.000603294,299,299,299 -367,IAR_LU_modified_topopro,Left kidney cortex,30,0.097,0.02,0.00212,0.159436749,0.046934811,0.002032889,0.45,0.45,0.45,0.45,0.45,0.45,0.100142398,0.048383604,0.000246305,299,299,299 -368,IAR_LU_modified_topopro,Left kidney cortex,50,0.097,0.02,0.00212,0.125434307,0.036549497,0.002079999,0.45,0.45,0.45,0.45,0.45,0.45,0.065454085,0.034695747,0.000143495,299,299,299 -369,IAR_LU_modified_topopro,Left kidney cortex,100,0.097,0.02,0.00212,0.105310502,0.02413223,0.002110132,0.45,0.45,0.45,0.45,0.45,0.45,0.023127834,0.013332796,6.11E-05,299,299,299 -370,IAR_LU_modified_topopro,Left kidney cortex,200,0.097,0.02,0.00212,0.100113058,0.020432179,0.002116371,0.45,0.45,0.45,0.45,0.45,0.45,0.011432184,0.003678805,2.88E-05,299,299,299 -371,IAR_LU_modified_topopro,left kidney medulla,10,0.158,0.019,0.00209,0.318917416,0.062109562,0.0017886,0.45,0.45,0.45,0.45,0.45,0.45,0.189533101,0.060537576,0.00066041,299,299,299 -372,IAR_LU_modified_topopro,left kidney medulla,30,0.158,0.019,0.00209,0.190749446,0.037247733,0.00205053,0.45,0.45,0.45,0.45,0.45,0.45,0.080803145,0.034913339,0.000222454,299,299,299 -373,IAR_LU_modified_topopro,left kidney medulla,50,0.158,0.019,0.00209,0.169372881,0.0278858,0.002083263,0.45,0.45,0.45,0.45,0.45,0.45,0.043367093,0.021117736,0.000122939,299,299,299 -374,IAR_LU_modified_topopro,left kidney medulla,100,0.158,0.019,0.00209,0.162374703,0.020780971,0.002089491,0.45,0.45,0.45,0.45,0.45,0.45,0.023038331,0.005620651,6.52E-05,299,299,299 -375,IAR_LU_modified_topopro,left kidney medulla,200,0.158,0.019,0.00209,0.159988752,0.019168023,0.002087906,0.45,0.45,0.45,0.45,0.45,0.45,0.011800157,0.002125068,3.20E-05,299,299,299 -376,IAR_LU_modified_topopro,Liver,10,0.11,0.1,0.0015,0.255827144,0.095794933,0.001300926,0.45,0.45,0.45,0.45,0.45,0.45,0.133644074,0.068438659,0.000379477,299,299,299 -377,IAR_LU_modified_topopro,Liver,30,0.11,0.1,0.0015,0.133802596,0.121405497,0.001472529,0.45,0.45,0.45,0.45,0.45,0.45,0.032331379,0.050451185,8.92E-05,299,299,299 -378,IAR_LU_modified_topopro,Liver,50,0.11,0.1,0.0015,0.118729928,0.117739469,0.001488815,0.45,0.45,0.45,0.45,0.45,0.45,0.016741169,0.042633364,4.74E-05,299,299,299 -379,IAR_LU_modified_topopro,Liver,100,0.11,0.1,0.0015,0.112266607,0.105433216,0.001494199,0.45,0.45,0.45,0.45,0.45,0.45,0.009021084,0.030662316,2.43E-05,299,299,299 -380,IAR_LU_modified_topopro,Liver,200,0.11,0.1,0.0015,0.110995126,0.097392444,0.001496239,0.45,0.45,0.45,0.45,0.45,0.45,0.005185904,0.010618342,1.21E-05,299,299,299 -381,IAR_LU_modified_topopro,Myocardium LV,10,0.15,0.08,0.0024,0.306954853,0.094300999,0.002027843,0.45,0.45,0.45,0.45,0.45,0.45,0.165573397,0.065781153,0.000643267,299,299,299 -382,IAR_LU_modified_topopro,Myocardium LV,30,0.15,0.08,0.0024,0.16975749,0.104888078,0.002366359,0.45,0.45,0.45,0.45,0.45,0.45,0.038500101,0.046747344,0.000156089,299,299,299 -383,IAR_LU_modified_topopro,Myocardium LV,50,0.15,0.08,0.0024,0.157582473,0.090929385,0.002387071,0.45,0.45,0.45,0.45,0.45,0.45,0.019557933,0.033962814,8.63E-05,299,299,299 -384,IAR_LU_modified_topopro,Myocardium LV,100,0.15,0.08,0.0024,0.151716774,0.081614418,0.002396175,0.45,0.45,0.45,0.45,0.45,0.45,0.01048639,0.015707081,4.33E-05,299,299,299 -385,IAR_LU_modified_topopro,Myocardium LV,200,0.15,0.08,0.0024,0.150182177,0.080486066,0.002398749,0.45,0.45,0.45,0.45,0.45,0.45,0.005507326,0.006944043,2.19E-05,299,299,299 -386,IAR_LU_modified_topopro,myocardium ra,10,0.07,0.07,0.0015,0.233345798,0.075820623,0.001301875,0.45,0.45,0.45,0.45,0.45,0.45,0.133957644,0.066388572,0.00036365,299,299,299 -387,IAR_LU_modified_topopro,myocardium ra,30,0.07,0.07,0.0015,0.108856127,0.096445667,0.001456733,0.45,0.45,0.45,0.45,0.45,0.45,0.044015737,0.059609039,0.000103224,299,299,299 -388,IAR_LU_modified_topopro,myocardium ra,50,0.07,0.07,0.0015,0.085488056,0.097314494,0.001482815,0.45,0.45,0.45,0.45,0.45,0.45,0.020737383,0.049799436,5.43E-05,299,299,299 -389,IAR_LU_modified_topopro,myocardium ra,100,0.07,0.07,0.0015,0.07453746,0.080703622,0.001494784,0.45,0.45,0.45,0.45,0.45,0.45,0.009975441,0.031511764,2.58E-05,299,299,299 -390,IAR_LU_modified_topopro,myocardium ra,200,0.07,0.07,0.0015,0.070924223,0.071568491,0.001498093,0.45,0.45,0.45,0.45,0.45,0.45,0.005399807,0.013399028,1.28E-05,299,299,299 -391,IAR_LU_modified_topopro,myocardium RV,10,0.15,0.08,0.0024,0.306954853,0.094300999,0.002027843,0.45,0.45,0.45,0.45,0.45,0.45,0.165573397,0.065781153,0.000643267,299,299,299 -392,IAR_LU_modified_topopro,myocardium RV,30,0.15,0.08,0.0024,0.16975749,0.104888078,0.002366359,0.45,0.45,0.45,0.45,0.45,0.45,0.038500101,0.046747344,0.000156089,299,299,299 -393,IAR_LU_modified_topopro,myocardium RV,50,0.15,0.08,0.0024,0.157582473,0.090929385,0.002387071,0.45,0.45,0.45,0.45,0.45,0.45,0.019557933,0.033962814,8.63E-05,299,299,299 -394,IAR_LU_modified_topopro,myocardium RV,100,0.15,0.08,0.0024,0.151716774,0.081614418,0.002396175,0.45,0.45,0.45,0.45,0.45,0.45,0.01048639,0.015707081,4.33E-05,299,299,299 -395,IAR_LU_modified_topopro,myocardium RV,200,0.15,0.08,0.0024,0.150182177,0.080486066,0.002398749,0.45,0.45,0.45,0.45,0.45,0.45,0.005507326,0.006944043,2.19E-05,299,299,299 -396,IAR_LU_modified_topopro,pancreas,10,0.15,0.01,0.0013,0.280147619,0.055096347,0.001165546,0.45,0.45,0.45,0.45,0.45,0.45,0.154200672,0.060115085,0.000411333,299,299,299 -397,IAR_LU_modified_topopro,pancreas,30,0.15,0.01,0.0013,0.180292443,0.028367022,0.001282207,0.45,0.45,0.45,0.45,0.45,0.45,0.075818352,0.037302595,0.00015489,299,299,299 -398,IAR_LU_modified_topopro,pancreas,50,0.15,0.01,0.0013,0.160883491,0.017284914,0.001300371,0.45,0.45,0.45,0.45,0.45,0.45,0.052081777,0.015260762,0.000103316,299,299,299 -399,IAR_LU_modified_topopro,pancreas,100,0.15,0.01,0.0013,0.154976949,0.012006927,0.001299773,0.45,0.45,0.45,0.45,0.45,0.45,0.033464673,0.004463446,6.41E-05,299,299,299 -400,IAR_LU_modified_topopro,pancreas,200,0.15,0.01,0.0013,0.155286959,0.010142889,0.001292707,0.45,0.45,0.45,0.45,0.45,0.45,0.017233308,0.001534397,3.24E-05,299,299,299 -401,IAR_LU_modified_topopro,pericardium,10,0.07,0.01,0.003,0.304246596,0.063049116,0.002354827,0.45,0.45,0.45,0.45,0.45,0.45,0.260685325,0.063717899,0.000993598,299,299,299 -402,IAR_LU_modified_topopro,pericardium,30,0.07,0.01,0.003,0.176641494,0.052027934,0.002834865,0.45,0.45,0.45,0.45,0.45,0.45,0.207967296,0.059688818,0.000571522,299,299,299 -403,IAR_LU_modified_topopro,pericardium,50,0.07,0.01,0.003,0.14622738,0.042647288,0.002913299,0.45,0.45,0.45,0.45,0.45,0.45,0.159901073,0.052223285,0.00036958,299,299,299 -404,IAR_LU_modified_topopro,pericardium,100,0.07,0.01,0.003,0.137535248,0.027469402,0.002919319,0.45,0.45,0.45,0.45,0.45,0.45,0.131305938,0.040584789,0.00023699,299,299,299 -405,IAR_LU_modified_topopro,pericardium,200,0.07,0.01,0.003,0.106876601,0.014182186,0.002951759,0.45,0.45,0.45,0.45,0.45,0.45,0.086637003,0.015468327,0.000137465,299,299,299 -406,IAR_LU_modified_topopro,right kidney medulla,10,0.158,0.019,0.00209,0.318917416,0.062109562,0.0017886,0.45,0.45,0.45,0.45,0.45,0.45,0.189533101,0.060537576,0.00066041,299,299,299 -407,IAR_LU_modified_topopro,right kidney medulla,30,0.158,0.019,0.00209,0.190749446,0.037247733,0.00205053,0.45,0.45,0.45,0.45,0.45,0.45,0.080803145,0.034913339,0.000222454,299,299,299 -408,IAR_LU_modified_topopro,right kidney medulla,50,0.158,0.019,0.00209,0.169372881,0.0278858,0.002083263,0.45,0.45,0.45,0.45,0.45,0.45,0.043367093,0.021117736,0.000122939,299,299,299 -409,IAR_LU_modified_topopro,right kidney medulla,100,0.158,0.019,0.00209,0.162374703,0.020780971,0.002089491,0.45,0.45,0.45,0.45,0.45,0.45,0.023038331,0.005620651,6.52E-05,299,299,299 -410,IAR_LU_modified_topopro,right kidney medulla,200,0.158,0.019,0.00209,0.159988752,0.019168023,0.002087906,0.45,0.45,0.45,0.45,0.45,0.45,0.011800157,0.002125068,3.20E-05,299,299,299 -411,IAR_LU_modified_topopro,Right kydney cortex,10,0.097,0.02,0.00212,0.27587976,0.064262359,0.001817507,0.45,0.45,0.45,0.45,0.45,0.45,0.185636097,0.061957761,0.000603294,299,299,299 -412,IAR_LU_modified_topopro,Right kydney cortex,30,0.097,0.02,0.00212,0.159436749,0.046934811,0.002032889,0.45,0.45,0.45,0.45,0.45,0.45,0.100142398,0.048383604,0.000246305,299,299,299 -413,IAR_LU_modified_topopro,Right kydney cortex,50,0.097,0.02,0.00212,0.125434307,0.036549497,0.002079999,0.45,0.45,0.45,0.45,0.45,0.45,0.065454085,0.034695747,0.000143495,299,299,299 -414,IAR_LU_modified_topopro,Right kydney cortex,100,0.097,0.02,0.00212,0.105310502,0.02413223,0.002110132,0.45,0.45,0.45,0.45,0.45,0.45,0.023127834,0.013332796,6.11E-05,299,299,299 -415,IAR_LU_modified_topopro,Right kydney cortex,200,0.097,0.02,0.00212,0.100113058,0.020432179,0.002116371,0.45,0.45,0.45,0.45,0.45,0.45,0.011432184,0.003678805,2.88E-05,299,299,299 -416,IAR_LU_modified_topopro,small intestine,10,0.69,0.029,0.00131,0.694262245,0.041376032,0.001275757,0.45,0.45,0.45,0.45,0.45,0.45,0.096783714,0.023361273,0.000821652,299,299,299 -417,IAR_LU_modified_topopro,small intestine,30,0.69,0.029,0.00131,0.687722331,0.030758001,0.001340218,0.45,0.45,0.45,0.45,0.45,0.45,0.03514261,0.004354692,0.000284059,299,299,299 -418,IAR_LU_modified_topopro,small intestine,50,0.69,0.029,0.00131,0.689084487,0.029571944,0.001316562,0.45,0.45,0.45,0.45,0.45,0.45,0.021479377,0.002475689,0.00016832,299,299,299 -419,IAR_LU_modified_topopro,small intestine,100,0.69,0.029,0.00131,0.689765613,0.029094033,0.001308083,0.45,0.45,0.45,0.45,0.45,0.45,0.010952332,0.00123762,8.53E-05,299,299,299 -420,IAR_LU_modified_topopro,small intestine,200,0.69,0.029,0.00131,0.689905499,0.029005644,0.001308244,0.45,0.45,0.45,0.45,0.45,0.45,0.005449729,0.000598862,4.18E-05,299,299,299 -421,IAR_LU_modified_topopro,spleen,10,0.2,0.03,0.0013,0.319868006,0.063392313,0.00114702,0.45,0.45,0.45,0.45,0.45,0.45,0.127028195,0.054216695,0.0003883,299,299,299 -422,IAR_LU_modified_topopro,spleen,30,0.2,0.03,0.0013,0.215360998,0.04426065,0.001303547,0.45,0.45,0.45,0.45,0.45,0.45,0.036562403,0.0261446,0.000105551,299,299,299 -423,IAR_LU_modified_topopro,spleen,50,0.2,0.03,0.0013,0.208856499,0.034937983,0.001299973,0.45,0.45,0.45,0.45,0.45,0.45,0.023243638,0.013486415,6.61E-05,299,299,299 -424,IAR_LU_modified_topopro,spleen,100,0.2,0.03,0.0013,0.204200673,0.03042392,0.001295775,0.45,0.45,0.45,0.45,0.45,0.45,0.012964711,0.004657265,3.36E-05,299,299,299 -425,IAR_LU_modified_topopro,spleen,200,0.2,0.03,0.0013,0.200822328,0.03005254,0.001298398,0.45,0.45,0.45,0.45,0.45,0.45,0.006530179,0.001865359,1.63E-05,299,299,299 -426,IAR_LU_modified_topopro,st wall,10,0.3,0.012,0.0015,0.398249536,0.041432759,0.001330846,0.45,0.45,0.45,0.45,0.45,0.45,0.179875567,0.048890092,0.000607087,299,299,299 -427,IAR_LU_modified_topopro,st wall,30,0.3,0.012,0.0015,0.304981866,0.019062815,0.001524064,0.45,0.45,0.45,0.45,0.45,0.45,0.086398506,0.015997839,0.000239114,299,299,299 -428,IAR_LU_modified_topopro,st wall,50,0.3,0.012,0.0015,0.303869758,0.014236952,0.001513996,0.45,0.45,0.45,0.45,0.45,0.45,0.056210278,0.004887887,0.000149801,299,299,299 -429,IAR_LU_modified_topopro,st wall,100,0.3,0.012,0.0015,0.305112115,0.012259288,0.001497606,0.45,0.45,0.45,0.45,0.45,0.45,0.02739339,0.001634827,7.14E-05,299,299,299 -430,IAR_LU_modified_topopro,st wall,200,0.3,0.012,0.0015,0.301896747,0.012019566,0.001498059,0.45,0.45,0.45,0.45,0.45,0.45,0.013977942,0.00070094,3.50E-05,299,299,299 -431,IAR_LU_modified_topopro,trans lower intestine,10,0.69,0.029,0.00131,0.693178885,0.041579168,0.001287706,0.45,0.45,0.45,0.45,0.45,0.45,0.096856303,0.023744998,0.000825061,299,299,299 -432,IAR_LU_modified_topopro,trans lower intestine,30,0.69,0.029,0.00131,0.687355419,0.030794597,0.001340838,0.45,0.45,0.45,0.45,0.45,0.45,0.034699975,0.004305909,0.000281486,299,299,299 -433,IAR_LU_modified_topopro,trans lower intestine,50,0.69,0.029,0.00131,0.688922163,0.02959112,0.001317947,0.45,0.45,0.45,0.45,0.45,0.45,0.021177767,0.002459108,0.000167888,299,299,299 -434,IAR_LU_modified_topopro,trans lower intestine,100,0.69,0.029,0.00131,0.689976252,0.029064378,0.00130713,0.45,0.45,0.45,0.45,0.45,0.45,0.011159661,0.001272301,8.61E-05,299,299,299 -435,IAR_LU_modified_topopro,trans lower intestine,200,0.69,0.029,0.00131,0.68988817,0.029001879,0.001308473,0.45,0.45,0.45,0.45,0.45,0.45,0.005465021,0.000593775,4.23E-05,299,299,299 -436,IAR_LU_modified_topopro,Vein,10,1,0.1,0.003,0.920340949,0.125267603,0.00018283,0.45,0.45,0.45,0.45,0.45,0.45,0.022594825,0.024445062,0.000583405,299,299,299 -437,IAR_LU_modified_topopro,Vein,30,1,0.1,0.003,0.974304008,0.106099271,0.000177399,0.45,0.45,0.45,0.45,0.45,0.45,0.007489631,0.008295476,0.000678898,299,299,299 -438,IAR_LU_modified_topopro,Vein,50,1,0.1,0.003,0.984941555,0.103360681,0.000155911,0.45,0.45,0.45,0.45,0.45,0.45,0.004475711,0.004954988,0.000644242,299,299,299 -439,IAR_LU_modified_topopro,Vein,100,1,0.1,0.003,0.992841726,0.101349324,0.000128757,0.45,0.45,0.45,0.45,0.45,0.45,0.002215288,0.002483923,0.000596162,299,299,299 -440,IAR_LU_modified_topopro,Vein,200,1,0.1,0.003,0.996733416,0.100300502,0.000119817,0.45,0.45,0.45,0.45,0.45,0.45,0.001171461,0.001008831,0.000632414,299,299,299 -441,IAR_LU_segmented_2step,Artery,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 -442,IAR_LU_segmented_2step,Artery,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 -443,IAR_LU_segmented_2step,Artery,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 -444,IAR_LU_segmented_2step,Artery,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 -445,IAR_LU_segmented_2step,Artery,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 -446,IAR_LU_segmented_2step,asc lower intestine,10,0.69,0.029,0.00131,0.690373036,0.032061085,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830765,0.014936399,0.001031075,299,299,299 -447,IAR_LU_segmented_2step,asc lower intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 -448,IAR_LU_segmented_2step,asc lower intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 -449,IAR_LU_segmented_2step,asc lower intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 -450,IAR_LU_segmented_2step,asc lower intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 -451,IAR_LU_segmented_2step,Blood RA,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 -452,IAR_LU_segmented_2step,Blood RA,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 -453,IAR_LU_segmented_2step,Blood RA,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 -454,IAR_LU_segmented_2step,Blood RA,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 -455,IAR_LU_segmented_2step,Blood RA,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 -456,IAR_LU_segmented_2step,Blood RV,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 -457,IAR_LU_segmented_2step,Blood RV,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 -458,IAR_LU_segmented_2step,Blood RV,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 -459,IAR_LU_segmented_2step,Blood RV,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 -460,IAR_LU_segmented_2step,Blood RV,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 -461,IAR_LU_segmented_2step,desc lower intestine,10,0.69,0.029,0.00131,0.690373037,0.032061085,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830764,0.014936399,0.001031075,299,299,299 -462,IAR_LU_segmented_2step,desc lower intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 -463,IAR_LU_segmented_2step,desc lower intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 -464,IAR_LU_segmented_2step,desc lower intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 -465,IAR_LU_segmented_2step,desc lower intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 -466,IAR_LU_segmented_2step,esophagus,10,0.32,0.03,0.00167,0.340586264,0.039526049,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.14439499,0.028936137,0.00069931,299,299,299 -467,IAR_LU_segmented_2step,esophagus,30,0.32,0.03,0.00167,0.321987927,0.031922209,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.05065662,0.01113205,0.000225181,299,299,299 -468,IAR_LU_segmented_2step,esophagus,50,0.32,0.03,0.00167,0.320433793,0.030648429,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400653,0.005936038,0.000134201,299,299,299 -469,IAR_LU_segmented_2step,esophagus,100,0.32,0.03,0.00167,0.31984888,0.03018635,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161607,0.002893604,6.69E-05,299,299,299 -470,IAR_LU_segmented_2step,esophagus,200,0.32,0.03,0.00167,0.319780244,0.030069705,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572228,0.001441314,3.34E-05,299,299,299 -471,IAR_LU_segmented_2step,esophagus cont,10,0.32,0.03,0.00167,0.340586264,0.039526049,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.14439499,0.028936137,0.00069931,299,299,299 -472,IAR_LU_segmented_2step,esophagus cont,30,0.32,0.03,0.00167,0.321987927,0.031922209,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.05065662,0.01113205,0.000225181,299,299,299 -473,IAR_LU_segmented_2step,esophagus cont,50,0.32,0.03,0.00167,0.320433793,0.030648429,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400653,0.005936038,0.000134201,299,299,299 -474,IAR_LU_segmented_2step,esophagus cont,100,0.32,0.03,0.00167,0.31984888,0.03018635,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161607,0.002893604,6.69E-05,299,299,299 -475,IAR_LU_segmented_2step,esophagus cont,200,0.32,0.03,0.00167,0.319780244,0.030069705,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572228,0.001441314,3.34E-05,299,299,299 -476,IAR_LU_segmented_2step,Left kidney cortex,10,0.097,0.02,0.00212,0.170083391,0.036260778,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168104196,0.038392831,0.000693964,299,299,299 -477,IAR_LU_segmented_2step,Left kidney cortex,30,0.097,0.02,0.00212,0.11252675,0.032442252,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762921,0.029993935,0.000230469,299,299,299 -478,IAR_LU_segmented_2step,Left kidney cortex,50,0.097,0.02,0.00212,0.102943416,0.027674987,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.022352352,0.000137435,299,299,299 -479,IAR_LU_segmented_2step,Left kidney cortex,100,0.097,0.02,0.00212,0.097936584,0.02226186,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685511,0.009418943,6.85E-05,299,299,299 -480,IAR_LU_segmented_2step,Left kidney cortex,200,0.097,0.02,0.00212,0.096588828,0.020696624,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398461,0.003773564,3.42E-05,299,299,299 -481,IAR_LU_segmented_2step,left kidney medulla,10,0.158,0.019,0.00209,0.214897365,0.034932381,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176570101,0.035703866,0.000728386,299,299,299 -482,IAR_LU_segmented_2step,left kidney medulla,30,0.158,0.019,0.00209,0.165710994,0.027090671,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510059,0.022576895,0.000242647,299,299,299 -483,IAR_LU_segmented_2step,left kidney medulla,50,0.158,0.019,0.00209,0.15984036,0.022624308,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993407,0.012999531,0.000144591,299,299,299 -484,IAR_LU_segmented_2step,left kidney medulla,100,0.158,0.019,0.00209,0.157128036,0.019976564,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.022931211,0.004517731,7.21E-05,299,299,299 -485,IAR_LU_segmented_2step,left kidney medulla,200,0.158,0.019,0.00209,0.156502789,0.019446622,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554558,0.00215365,3.60E-05,299,299,299 -486,IAR_LU_segmented_2step,Liver,10,0.11,0.1,0.0015,0.14457757,0.060004164,0.001520848,0.45,0.45,0.45,0.45,0.45,0.45,0.123335226,0.041737282,0.000472993,299,299,299 -487,IAR_LU_segmented_2step,Liver,30,0.11,0.1,0.0015,0.112815079,0.07688233,0.001501547,0.45,0.45,0.45,0.45,0.45,0.45,0.04024199,0.031043987,0.000152138,299,299,299 -488,IAR_LU_segmented_2step,Liver,50,0.11,0.1,0.0015,0.109957638,0.084566304,0.001500177,0.45,0.45,0.45,0.45,0.45,0.45,0.021883617,0.022477885,9.10E-05,299,299,299 -489,IAR_LU_segmented_2step,Liver,100,0.11,0.1,0.0015,0.109449351,0.091662225,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.010208281,0.012494317,4.54E-05,299,299,299 -490,IAR_LU_segmented_2step,Liver,200,0.11,0.1,0.0015,0.109652146,0.095603591,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.005040249,0.006734131,2.27E-05,299,299,299 -491,IAR_LU_segmented_2step,Myocardium LV,10,0.15,0.08,0.0024,0.216176462,0.058774506,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.171881508,0.040142606,0.000834069,299,299,299 -492,IAR_LU_segmented_2step,Myocardium LV,30,0.15,0.08,0.0024,0.157092625,0.073542287,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239387,0.029066238,0.000296358,299,299,299 -493,IAR_LU_segmented_2step,Myocardium LV,50,0.15,0.08,0.0024,0.152059689,0.077447156,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816435,0.022258668,0.000176238,299,299,299 -494,IAR_LU_segmented_2step,Myocardium LV,100,0.15,0.08,0.0024,0.150244356,0.080220509,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999841,0.014122844,8.78E-05,299,299,299 -495,IAR_LU_segmented_2step,Myocardium LV,200,0.15,0.08,0.0024,0.149981616,0.080572779,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386371,4.39E-05,299,299,299 -496,IAR_LU_segmented_2step,myocardium ra,10,0.07,0.07,0.0015,0.119350871,0.052652211,0.001519752,0.45,0.45,0.45,0.45,0.45,0.45,0.122175674,0.043381711,0.000451902,299,299,299 -497,IAR_LU_segmented_2step,myocardium ra,30,0.07,0.07,0.0015,0.079267824,0.063012225,0.001501351,0.45,0.45,0.45,0.45,0.45,0.45,0.045396572,0.037020532,0.000145532,299,299,299 -498,IAR_LU_segmented_2step,myocardium ra,50,0.07,0.07,0.0015,0.073240388,0.067072541,0.001500123,0.45,0.45,0.45,0.45,0.45,0.45,0.025208285,0.031219546,8.71E-05,299,299,299 -499,IAR_LU_segmented_2step,myocardium ra,100,0.07,0.07,0.0015,0.07061783,0.070443027,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.011195191,0.021890723,4.35E-05,299,299,299 -500,IAR_LU_segmented_2step,myocardium ra,200,0.07,0.07,0.0015,0.070088202,0.071162417,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.005300764,0.013604848,2.17E-05,299,299,299 -501,IAR_LU_segmented_2step,myocardium RV,10,0.15,0.08,0.0024,0.216176462,0.058774506,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.171881508,0.040142606,0.000834069,299,299,299 -502,IAR_LU_segmented_2step,myocardium RV,30,0.15,0.08,0.0024,0.157092625,0.073542287,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239387,0.029066238,0.000296358,299,299,299 -503,IAR_LU_segmented_2step,myocardium RV,50,0.15,0.08,0.0024,0.152059689,0.077447156,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816435,0.022258668,0.000176238,299,299,299 -504,IAR_LU_segmented_2step,myocardium RV,100,0.15,0.08,0.0024,0.150244356,0.080220509,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999841,0.014122844,8.78E-05,299,299,299 -505,IAR_LU_segmented_2step,myocardium RV,200,0.15,0.08,0.0024,0.149981616,0.080572779,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386371,4.39E-05,299,299,299 -506,IAR_LU_segmented_2step,pancreas,10,0.15,0.01,0.0013,0.16736677,0.030697893,0.001347335,0.45,0.45,0.45,0.45,0.45,0.45,0.138138077,0.035311982,0.00043165,299,299,299 -507,IAR_LU_segmented_2step,pancreas,30,0.15,0.01,0.0013,0.141203986,0.017635473,0.001330826,0.45,0.45,0.45,0.45,0.45,0.45,0.060051109,0.019681258,0.000139043,299,299,299 -508,IAR_LU_segmented_2step,pancreas,50,0.15,0.01,0.0013,0.137697421,0.013486081,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.037618638,0.009903919,8.32E-05,299,299,299 -509,IAR_LU_segmented_2step,pancreas,100,0.15,0.01,0.0013,0.136229323,0.011547666,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.019514438,0.002417889,4.15E-05,299,299,299 -510,IAR_LU_segmented_2step,pancreas,200,0.15,0.01,0.0013,0.136024846,0.011223601,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.009852921,0.001072171,2.08E-05,299,299,299 -511,IAR_LU_segmented_2step,pericardium,10,0.07,0.01,0.003,0.223205652,0.026536448,0.002737011,0.45,0.45,0.45,0.45,0.45,0.45,0.23206538,0.035908833,0.000885042,299,299,299 -512,IAR_LU_segmented_2step,pericardium,30,0.07,0.01,0.003,0.104347275,0.025637443,0.003046129,0.45,0.45,0.45,0.45,0.45,0.45,0.114261684,0.033293365,0.000391056,299,299,299 -513,IAR_LU_segmented_2step,pericardium,50,0.07,0.01,0.003,0.081401159,0.024493321,0.00304009,0.45,0.45,0.45,0.45,0.45,0.45,0.079566766,0.030410342,0.000238153,299,299,299 -514,IAR_LU_segmented_2step,pericardium,100,0.07,0.01,0.003,0.064215677,0.020440594,0.003033248,0.45,0.45,0.45,0.45,0.45,0.45,0.044855382,0.023283253,0.000118501,299,299,299 -515,IAR_LU_segmented_2step,pericardium,200,0.07,0.01,0.003,0.058011286,0.014344632,0.00303118,0.45,0.45,0.45,0.45,0.45,0.45,0.023954029,0.0098073,5.92E-05,299,299,299 -516,IAR_LU_segmented_2step,right kidney medulla,10,0.158,0.019,0.00209,0.214897365,0.034932381,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176570101,0.035703866,0.000728386,299,299,299 -517,IAR_LU_segmented_2step,right kidney medulla,30,0.158,0.019,0.00209,0.165710994,0.027090671,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510059,0.022576895,0.000242647,299,299,299 -518,IAR_LU_segmented_2step,right kidney medulla,50,0.158,0.019,0.00209,0.15984036,0.022624308,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993407,0.012999531,0.000144591,299,299,299 -519,IAR_LU_segmented_2step,right kidney medulla,100,0.158,0.019,0.00209,0.157128036,0.019976564,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.022931211,0.004517731,7.21E-05,299,299,299 -520,IAR_LU_segmented_2step,right kidney medulla,200,0.158,0.019,0.00209,0.156502789,0.019446622,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554558,0.00215365,3.60E-05,299,299,299 -521,IAR_LU_segmented_2step,Right kydney cortex,10,0.097,0.02,0.00212,0.170083391,0.036260778,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168104196,0.038392831,0.000693964,299,299,299 -522,IAR_LU_segmented_2step,Right kydney cortex,30,0.097,0.02,0.00212,0.11252675,0.032442252,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762921,0.029993935,0.000230469,299,299,299 -523,IAR_LU_segmented_2step,Right kydney cortex,50,0.097,0.02,0.00212,0.102943416,0.027674987,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.022352352,0.000137435,299,299,299 -524,IAR_LU_segmented_2step,Right kydney cortex,100,0.097,0.02,0.00212,0.097936584,0.02226186,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685511,0.009418943,6.85E-05,299,299,299 -525,IAR_LU_segmented_2step,Right kydney cortex,200,0.097,0.02,0.00212,0.096588828,0.020696624,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398461,0.003773564,3.42E-05,299,299,299 -526,IAR_LU_segmented_2step,small intestine,10,0.69,0.029,0.00131,0.690373037,0.032061085,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830765,0.014936399,0.001031075,299,299,299 -527,IAR_LU_segmented_2step,small intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 -528,IAR_LU_segmented_2step,small intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 -529,IAR_LU_segmented_2step,small intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 -530,IAR_LU_segmented_2step,small intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 -531,IAR_LU_segmented_2step,spleen,10,0.2,0.03,0.0013,0.224602363,0.042254374,0.001318692,0.45,0.45,0.45,0.45,0.45,0.45,0.127234912,0.034161122,0.000459162,299,299,299 -532,IAR_LU_segmented_2step,spleen,30,0.2,0.03,0.0013,0.203576863,0.03395392,0.001301089,0.45,0.45,0.45,0.45,0.45,0.45,0.044331214,0.017617566,0.000147367,299,299,299 -533,IAR_LU_segmented_2step,spleen,50,0.2,0.03,0.0013,0.201083469,0.031432055,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.026494532,0.009734365,8.81E-05,299,299,299 -534,IAR_LU_segmented_2step,spleen,100,0.2,0.03,0.0013,0.200071152,0.030341834,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.013175436,0.004353038,4.40E-05,299,299,299 -535,IAR_LU_segmented_2step,spleen,200,0.2,0.03,0.0013,0.199885784,0.030107013,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.006570871,0.002151389,2.20E-05,299,299,299 -536,IAR_LU_segmented_2step,st wall,10,0.3,0.012,0.0015,0.297910727,0.023898776,0.001577739,0.45,0.45,0.45,0.45,0.45,0.45,0.166898579,0.026413198,0.000614594,299,299,299 -537,IAR_LU_segmented_2step,st wall,30,0.3,0.012,0.0015,0.283533466,0.014626787,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.066770704,0.007845369,0.000195512,299,299,299 -538,IAR_LU_segmented_2step,st wall,50,0.3,0.012,0.0015,0.282913643,0.013356503,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.041258533,0.00296624,0.000116681,299,299,299 -539,IAR_LU_segmented_2step,st wall,100,0.3,0.012,0.0015,0.28295749,0.012941479,0.001548674,0.45,0.45,0.45,0.45,0.45,0.45,0.020929587,0.001312752,5.82E-05,299,299,299 -540,IAR_LU_segmented_2step,st wall,200,0.3,0.012,0.0015,0.283111806,0.012839641,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.010504025,0.000633727,2.91E-05,299,299,299 -541,IAR_LU_segmented_2step,trans lower intestine,10,0.69,0.029,0.00131,0.690373037,0.032061084,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.111830764,0.014936399,0.001031075,299,299,299 -542,IAR_LU_segmented_2step,trans lower intestine,30,0.69,0.029,0.00131,0.688190386,0.029422268,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873464,0.004119365,0.000393815,299,299,299 -543,IAR_LU_segmented_2step,trans lower intestine,50,0.69,0.029,0.00131,0.688983137,0.029173687,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651,0.002431858,0.000231514,299,299,299 -544,IAR_LU_segmented_2step,trans lower intestine,100,0.69,0.029,0.00131,0.689404253,0.029066163,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474537,0.001209193,0.000114728,299,299,299 -545,IAR_LU_segmented_2step,trans lower intestine,200,0.69,0.029,0.00131,0.689565491,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737576,0.000603841,5.72E-05,299,299,299 -546,IAR_LU_segmented_2step,Vein,10,1,0.1,0.003,0.921258294,0.098317423,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.02582356,0.004881736,0.00095424,299,299,299 -547,IAR_LU_segmented_2step,Vein,30,1,0.1,0.003,0.976019933,0.099482965,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008331013,0.00160386,0.000954268,299,299,299 -548,IAR_LU_segmented_2step,Vein,50,1,0.1,0.003,0.985994872,0.099681311,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943098,0.000986358,0.000954267,299,299,299 -549,IAR_LU_segmented_2step,Vein,100,1,0.1,0.003,0.9932689,0.099829974,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412858,0.000513921,0.000954286,299,299,299 -550,IAR_LU_segmented_2step,Vein,200,1,0.1,0.003,0.996782474,0.099908372,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191359,0.000267557,0.00095406,299,299,299 -551,IAR_LU_segmented_3step,Artery,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 -552,IAR_LU_segmented_3step,Artery,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 -553,IAR_LU_segmented_3step,Artery,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 -554,IAR_LU_segmented_3step,Artery,100,1,0.1,0.003,0.99326893,0.099829905,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513907,0.000954286,299,299,299 -555,IAR_LU_segmented_3step,Artery,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 -556,IAR_LU_segmented_3step,asc lower intestine,10,0.69,0.029,0.00131,0.690372912,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 -557,IAR_LU_segmented_3step,asc lower intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 -558,IAR_LU_segmented_3step,asc lower intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 -559,IAR_LU_segmented_3step,asc lower intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 -560,IAR_LU_segmented_3step,asc lower intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 -561,IAR_LU_segmented_3step,Blood RA,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 -562,IAR_LU_segmented_3step,Blood RA,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 -563,IAR_LU_segmented_3step,Blood RA,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 -564,IAR_LU_segmented_3step,Blood RA,100,1,0.1,0.003,0.99326893,0.099829905,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513907,0.000954286,299,299,299 -565,IAR_LU_segmented_3step,Blood RA,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 -566,IAR_LU_segmented_3step,Blood RV,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 -567,IAR_LU_segmented_3step,Blood RV,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 -568,IAR_LU_segmented_3step,Blood RV,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 -569,IAR_LU_segmented_3step,Blood RV,100,1,0.1,0.003,0.99326893,0.099829905,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513907,0.000954286,299,299,299 -570,IAR_LU_segmented_3step,Blood RV,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 -571,IAR_LU_segmented_3step,desc lower intestine,10,0.69,0.029,0.00131,0.690372913,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 -572,IAR_LU_segmented_3step,desc lower intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 -573,IAR_LU_segmented_3step,desc lower intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 -574,IAR_LU_segmented_3step,desc lower intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 -575,IAR_LU_segmented_3step,desc lower intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 -576,IAR_LU_segmented_3step,esophagus,10,0.32,0.03,0.00167,0.340945084,0.03890234,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.144635684,0.028632624,0.00069931,299,299,299 -577,IAR_LU_segmented_3step,esophagus,30,0.32,0.03,0.00167,0.321988091,0.031922018,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.050656581,0.011131946,0.000225181,299,299,299 -578,IAR_LU_segmented_3step,esophagus,50,0.32,0.03,0.00167,0.320433872,0.030648361,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400672,0.005936031,0.000134201,299,299,299 -579,IAR_LU_segmented_3step,esophagus,100,0.32,0.03,0.00167,0.319848899,0.030186336,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161618,0.002893608,6.69E-05,299,299,299 -580,IAR_LU_segmented_3step,esophagus,200,0.32,0.03,0.00167,0.319780249,0.030069701,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572226,0.001441311,3.34E-05,299,299,299 -581,IAR_LU_segmented_3step,esophagus cont,10,0.32,0.03,0.00167,0.340945084,0.03890234,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.144635684,0.028632624,0.00069931,299,299,299 -582,IAR_LU_segmented_3step,esophagus cont,30,0.32,0.03,0.00167,0.321988091,0.031922018,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.050656581,0.011131946,0.000225181,299,299,299 -583,IAR_LU_segmented_3step,esophagus cont,50,0.32,0.03,0.00167,0.320433872,0.030648361,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030400672,0.005936031,0.000134201,299,299,299 -584,IAR_LU_segmented_3step,esophagus cont,100,0.32,0.03,0.00167,0.319848899,0.030186336,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015161618,0.002893608,6.69E-05,299,299,299 -585,IAR_LU_segmented_3step,esophagus cont,200,0.32,0.03,0.00167,0.319780249,0.030069701,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007572226,0.001441311,3.34E-05,299,299,299 -586,IAR_LU_segmented_3step,Left kidney cortex,10,0.097,0.02,0.00212,0.171166453,0.032737361,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168408251,0.037021909,0.000693964,299,299,299 -587,IAR_LU_segmented_3step,Left kidney cortex,30,0.097,0.02,0.00212,0.112527008,0.031808933,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762942,0.029558883,0.000230469,299,299,299 -588,IAR_LU_segmented_3step,Left kidney cortex,50,0.097,0.02,0.00212,0.102943505,0.027358607,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.021995432,0.000137435,299,299,299 -589,IAR_LU_segmented_3step,Left kidney cortex,100,0.097,0.02,0.00212,0.097936672,0.022261904,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685537,0.009419407,6.85E-05,299,299,299 -590,IAR_LU_segmented_3step,Left kidney cortex,200,0.097,0.02,0.00212,0.096588868,0.020696592,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398489,0.003773581,3.42E-05,299,299,299 -591,IAR_LU_segmented_3step,left kidney medulla,10,0.158,0.019,0.00209,0.215538601,0.033058455,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176417628,0.034724288,0.000728386,299,299,299 -592,IAR_LU_segmented_3step,left kidney medulla,30,0.158,0.019,0.00209,0.165711066,0.026774028,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510085,0.022214282,0.000242647,299,299,299 -593,IAR_LU_segmented_3step,left kidney medulla,50,0.158,0.019,0.00209,0.159840423,0.022624377,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993441,0.012999935,0.000144591,299,299,299 -594,IAR_LU_segmented_3step,left kidney medulla,100,0.158,0.019,0.00209,0.157128074,0.019976534,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.02293121,0.004517691,7.21E-05,299,299,299 -595,IAR_LU_segmented_3step,left kidney medulla,200,0.158,0.019,0.00209,0.156502807,0.019446613,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554566,0.002153651,3.60E-05,299,299,299 -596,IAR_LU_segmented_3step,Liver,10,0.11,0.1,0.0015,0.146082882,0.05594788,0.001520848,0.45,0.45,0.45,0.45,0.45,0.45,0.124175238,0.042351032,0.000472993,299,299,299 -597,IAR_LU_segmented_3step,Liver,30,0.11,0.1,0.0015,0.113015747,0.076433799,0.001501547,0.45,0.45,0.45,0.45,0.45,0.45,0.040496262,0.031596148,0.000152138,299,299,299 -598,IAR_LU_segmented_3step,Liver,50,0.11,0.1,0.0015,0.109957685,0.08456634,0.001500177,0.45,0.45,0.45,0.45,0.45,0.45,0.021883719,0.022478141,9.10E-05,299,299,299 -599,IAR_LU_segmented_3step,Liver,100,0.11,0.1,0.0015,0.109449356,0.091662323,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.010208281,0.012494311,4.54E-05,299,299,299 -600,IAR_LU_segmented_3step,Liver,200,0.11,0.1,0.0015,0.109652152,0.095603697,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.005040253,0.006734138,2.27E-05,299,299,299 -601,IAR_LU_segmented_3step,Myocardium LV,10,0.15,0.08,0.0024,0.21872579,0.054750873,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.173307671,0.040713205,0.000834069,299,299,299 -602,IAR_LU_segmented_3step,Myocardium LV,30,0.15,0.08,0.0024,0.157093415,0.073541518,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239915,0.029067525,0.000296358,299,299,299 -603,IAR_LU_segmented_3step,Myocardium LV,50,0.15,0.08,0.0024,0.1520598,0.077447012,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816663,0.022258862,0.000176238,299,299,299 -604,IAR_LU_segmented_3step,Myocardium LV,100,0.15,0.08,0.0024,0.150244353,0.08022047,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999836,0.01412279,8.78E-05,299,299,299 -605,IAR_LU_segmented_3step,Myocardium LV,200,0.15,0.08,0.0024,0.149981616,0.080572777,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386363,4.39E-05,299,299,299 -606,IAR_LU_segmented_3step,myocardium ra,10,0.07,0.07,0.0015,0.120487722,0.047427414,0.001519752,0.45,0.45,0.45,0.45,0.45,0.45,0.12292676,0.043275772,0.000451902,299,299,299 -607,IAR_LU_segmented_3step,myocardium ra,30,0.07,0.07,0.0015,0.079495392,0.061701171,0.001501351,0.45,0.45,0.45,0.45,0.45,0.45,0.045644349,0.037517987,0.000145532,299,299,299 -608,IAR_LU_segmented_3step,myocardium ra,50,0.07,0.07,0.0015,0.073307506,0.066894664,0.001500123,0.45,0.45,0.45,0.45,0.45,0.45,0.025333414,0.031390361,8.71E-05,299,299,299 -609,IAR_LU_segmented_3step,myocardium ra,100,0.07,0.07,0.0015,0.070617853,0.070443036,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.011195219,0.021891031,4.35E-05,299,299,299 -610,IAR_LU_segmented_3step,myocardium ra,200,0.07,0.07,0.0015,0.070088202,0.071162406,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.005300766,0.013604875,2.17E-05,299,299,299 -611,IAR_LU_segmented_3step,myocardium RV,10,0.15,0.08,0.0024,0.21872579,0.054750873,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.173307671,0.040713205,0.000834069,299,299,299 -612,IAR_LU_segmented_3step,myocardium RV,30,0.15,0.08,0.0024,0.157093415,0.073541518,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.054239915,0.029067525,0.000296358,299,299,299 -613,IAR_LU_segmented_3step,myocardium RV,50,0.15,0.08,0.0024,0.1520598,0.077447012,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.028816663,0.022258862,0.000176238,299,299,299 -614,IAR_LU_segmented_3step,myocardium RV,100,0.15,0.08,0.0024,0.150244353,0.08022047,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012999836,0.01412279,8.78E-05,299,299,299 -615,IAR_LU_segmented_3step,myocardium RV,200,0.15,0.08,0.0024,0.149981616,0.080572777,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006365002,0.008386363,4.39E-05,299,299,299 -616,IAR_LU_segmented_3step,pancreas,10,0.15,0.01,0.0013,0.167876088,0.029082378,0.001347335,0.45,0.45,0.45,0.45,0.45,0.45,0.137991459,0.034190208,0.00043165,299,299,299 -617,IAR_LU_segmented_3step,pancreas,30,0.15,0.01,0.0013,0.141237489,0.017318823,0.001330826,0.45,0.45,0.45,0.45,0.45,0.45,0.059986793,0.01910762,0.000139043,299,299,299 -618,IAR_LU_segmented_3step,pancreas,50,0.15,0.01,0.0013,0.137697382,0.013486112,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.037618711,0.009904077,8.32E-05,299,299,299 -619,IAR_LU_segmented_3step,pancreas,100,0.15,0.01,0.0013,0.136229324,0.011547662,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.019514431,0.002417876,4.15E-05,299,299,299 -620,IAR_LU_segmented_3step,pancreas,200,0.15,0.01,0.0013,0.136024834,0.011223605,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.00985292,0.00107217,2.08E-05,299,299,299 -621,IAR_LU_segmented_3step,pericardium,10,0.07,0.01,0.003,0.226261706,0.023779549,0.002737011,0.45,0.45,0.45,0.45,0.45,0.45,0.23202724,0.03367319,0.000885042,299,299,299 -622,IAR_LU_segmented_3step,pericardium,30,0.07,0.01,0.003,0.104611778,0.01968608,0.003046129,0.45,0.45,0.45,0.45,0.45,0.45,0.114299018,0.027839749,0.000391056,299,299,299 -623,IAR_LU_segmented_3step,pericardium,50,0.07,0.01,0.003,0.08160667,0.019493472,0.00304009,0.45,0.45,0.45,0.45,0.45,0.45,0.079548374,0.025099283,0.000238153,299,299,299 -624,IAR_LU_segmented_3step,pericardium,100,0.07,0.01,0.003,0.064202652,0.019490239,0.003033248,0.45,0.45,0.45,0.45,0.45,0.45,0.044873824,0.021910645,0.000118501,299,299,299 -625,IAR_LU_segmented_3step,pericardium,200,0.07,0.01,0.003,0.058011321,0.014344667,0.00303118,0.45,0.45,0.45,0.45,0.45,0.45,0.023954032,0.009807691,5.92E-05,299,299,299 -626,IAR_LU_segmented_3step,right kidney medulla,10,0.158,0.019,0.00209,0.215538601,0.033058455,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.176417628,0.034724288,0.000728386,299,299,299 -627,IAR_LU_segmented_3step,right kidney medulla,30,0.158,0.019,0.00209,0.165711066,0.026774028,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.072510085,0.022214282,0.000242647,299,299,299 -628,IAR_LU_segmented_3step,right kidney medulla,50,0.158,0.019,0.00209,0.159840423,0.022624377,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.044993441,0.012999935,0.000144591,299,299,299 -629,IAR_LU_segmented_3step,right kidney medulla,100,0.158,0.019,0.00209,0.157128074,0.019976534,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.02293121,0.004517691,7.21E-05,299,299,299 -630,IAR_LU_segmented_3step,right kidney medulla,200,0.158,0.019,0.00209,0.156502807,0.019446613,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011554566,0.002153651,3.60E-05,299,299,299 -631,IAR_LU_segmented_3step,Right kydney cortex,10,0.097,0.02,0.00212,0.171166453,0.032737361,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.168408251,0.037021909,0.000693964,299,299,299 -632,IAR_LU_segmented_3step,Right kydney cortex,30,0.097,0.02,0.00212,0.112527008,0.031808933,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.071762942,0.029558883,0.000230469,299,299,299 -633,IAR_LU_segmented_3step,Right kydney cortex,50,0.097,0.02,0.00212,0.102943505,0.027358607,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.044572161,0.021995432,0.000137435,299,299,299 -634,IAR_LU_segmented_3step,Right kydney cortex,100,0.097,0.02,0.00212,0.097936672,0.022261904,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.022685537,0.009419407,6.85E-05,299,299,299 -635,IAR_LU_segmented_3step,Right kydney cortex,200,0.097,0.02,0.00212,0.096588868,0.020696592,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011398489,0.003773581,3.42E-05,299,299,299 -636,IAR_LU_segmented_3step,small intestine,10,0.69,0.029,0.00131,0.690372912,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 -637,IAR_LU_segmented_3step,small intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 -638,IAR_LU_segmented_3step,small intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 -639,IAR_LU_segmented_3step,small intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 -640,IAR_LU_segmented_3step,small intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 -641,IAR_LU_segmented_3step,spleen,10,0.2,0.03,0.0013,0.225215079,0.040847594,0.001318692,0.45,0.45,0.45,0.45,0.45,0.45,0.12737455,0.033832118,0.000459162,299,299,299 -642,IAR_LU_segmented_3step,spleen,30,0.2,0.03,0.0013,0.203576978,0.033953942,0.001301089,0.45,0.45,0.45,0.45,0.45,0.45,0.044331237,0.017617914,0.000147367,299,299,299 -643,IAR_LU_segmented_3step,spleen,50,0.2,0.03,0.0013,0.201083539,0.031431935,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.026494577,0.00973438,8.81E-05,299,299,299 -644,IAR_LU_segmented_3step,spleen,100,0.2,0.03,0.0013,0.200071169,0.030341801,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.013175452,0.004353034,4.40E-05,299,299,299 -645,IAR_LU_segmented_3step,spleen,200,0.2,0.03,0.0013,0.19988579,0.030107002,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.006570875,0.002151391,2.20E-05,299,299,299 -646,IAR_LU_segmented_3step,st wall,10,0.3,0.012,0.0015,0.298324939,0.023934408,0.001577739,0.45,0.45,0.45,0.45,0.45,0.45,0.166709747,0.026470944,0.000614594,299,299,299 -647,IAR_LU_segmented_3step,st wall,30,0.3,0.012,0.0015,0.283533448,0.014626791,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.06677077,0.007845356,0.000195512,299,299,299 -648,IAR_LU_segmented_3step,st wall,50,0.3,0.012,0.0015,0.282913611,0.01335651,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.041258559,0.002966233,0.000116681,299,299,299 -649,IAR_LU_segmented_3step,st wall,100,0.3,0.012,0.0015,0.282957468,0.012941483,0.001548674,0.45,0.45,0.45,0.45,0.45,0.45,0.020929585,0.001312751,5.82E-05,299,299,299 -650,IAR_LU_segmented_3step,st wall,200,0.3,0.012,0.0015,0.283111797,0.012839643,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.010504023,0.000633726,2.91E-05,299,299,299 -651,IAR_LU_segmented_3step,trans lower intestine,10,0.69,0.029,0.00131,0.690372913,0.032060999,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107,0.014936264,0.001031075,299,299,299 -652,IAR_LU_segmented_3step,trans lower intestine,30,0.69,0.029,0.00131,0.688190453,0.029422246,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.044873438,0.004119357,0.000393815,299,299,299 -653,IAR_LU_segmented_3step,trans lower intestine,50,0.69,0.029,0.00131,0.688983157,0.029173681,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.026940652,0.002431859,0.000231514,299,299,299 -654,IAR_LU_segmented_3step,trans lower intestine,100,0.69,0.029,0.00131,0.689404263,0.02906616,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013474532,0.001209191,0.000114728,299,299,299 -655,IAR_LU_segmented_3step,trans lower intestine,200,0.69,0.029,0.00131,0.689565493,0.029036433,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006737575,0.000603841,5.72E-05,299,299,299 -656,IAR_LU_segmented_3step,Vein,10,1,0.1,0.003,0.921258296,0.098317394,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.025823587,0.004881761,0.00095424,299,299,299 -657,IAR_LU_segmented_3step,Vein,30,1,0.1,0.003,0.976019922,0.099482939,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.008330931,0.001603853,0.000954268,299,299,299 -658,IAR_LU_segmented_3step,Vein,50,1,0.1,0.003,0.985994865,0.099681336,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.004943119,0.000986369,0.000954267,299,299,299 -659,IAR_LU_segmented_3step,Vein,100,1,0.1,0.003,0.99326893,0.099829906,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.002412828,0.000513906,0.000954286,299,299,299 -660,IAR_LU_segmented_3step,Vein,200,1,0.1,0.003,0.996782671,0.099908162,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.001191253,0.000267526,0.00095406,299,299,299 -661,IAR_LU_subtracted,Artery,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 -662,IAR_LU_subtracted,Artery,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 -663,IAR_LU_subtracted,Artery,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 -664,IAR_LU_subtracted,Artery,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 -665,IAR_LU_subtracted,Artery,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 -666,IAR_LU_subtracted,asc lower intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 -667,IAR_LU_subtracted,asc lower intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 -668,IAR_LU_subtracted,asc lower intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 -669,IAR_LU_subtracted,asc lower intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 -670,IAR_LU_subtracted,asc lower intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 -671,IAR_LU_subtracted,Blood RA,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 -672,IAR_LU_subtracted,Blood RA,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 -673,IAR_LU_subtracted,Blood RA,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 -674,IAR_LU_subtracted,Blood RA,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 -675,IAR_LU_subtracted,Blood RA,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 -676,IAR_LU_subtracted,Blood RV,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 -677,IAR_LU_subtracted,Blood RV,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 -678,IAR_LU_subtracted,Blood RV,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 -679,IAR_LU_subtracted,Blood RV,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 -680,IAR_LU_subtracted,Blood RV,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 -681,IAR_LU_subtracted,desc lower intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 -682,IAR_LU_subtracted,desc lower intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 -683,IAR_LU_subtracted,desc lower intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 -684,IAR_LU_subtracted,desc lower intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 -685,IAR_LU_subtracted,desc lower intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 -686,IAR_LU_subtracted,esophagus,10,0.32,0.03,0.00167,0.298330817,0.047824675,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.186559712,0.035836765,0.00069931,299,299,299 -687,IAR_LU_subtracted,esophagus,30,0.32,0.03,0.00167,0.313367489,0.035308693,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.069731074,0.017500192,0.000225181,299,299,299 -688,IAR_LU_subtracted,esophagus,50,0.32,0.03,0.00167,0.317127605,0.032017144,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.040602769,0.009278129,0.000134201,299,299,299 -689,IAR_LU_subtracted,esophagus,100,0.32,0.03,0.00167,0.318810591,0.030545999,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.020136396,0.00396262,6.69E-05,299,299,299 -690,IAR_LU_subtracted,esophagus,200,0.32,0.03,0.00167,0.319373079,0.030189956,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.010044624,0.001914659,3.34E-05,299,299,299 -691,IAR_LU_subtracted,esophagus cont,10,0.32,0.03,0.00167,0.298330817,0.047824675,0.001695376,0.45,0.45,0.45,0.45,0.45,0.45,0.186559712,0.035836765,0.00069931,299,299,299 -692,IAR_LU_subtracted,esophagus cont,30,0.32,0.03,0.00167,0.313367489,0.035308693,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.069731074,0.017500192,0.000225181,299,299,299 -693,IAR_LU_subtracted,esophagus cont,50,0.32,0.03,0.00167,0.317127605,0.032017144,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.040602769,0.009278129,0.000134201,299,299,299 -694,IAR_LU_subtracted,esophagus cont,100,0.32,0.03,0.00167,0.318810591,0.030545999,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.020136396,0.00396262,6.69E-05,299,299,299 -695,IAR_LU_subtracted,esophagus cont,200,0.32,0.03,0.00167,0.319373079,0.030189956,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.010044624,0.001914659,3.34E-05,299,299,299 -696,IAR_LU_subtracted,Left kidney cortex,10,0.097,0.02,0.00212,0.142139794,0.051623985,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.158085677,0.043994516,0.000693964,299,299,299 -697,IAR_LU_subtracted,Left kidney cortex,30,0.097,0.02,0.00212,0.095933899,0.042067439,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.073990003,0.037530338,0.000230469,299,299,299 -698,IAR_LU_subtracted,Left kidney cortex,50,0.097,0.02,0.00212,0.093431576,0.034097238,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.050016269,0.029116022,0.000137435,299,299,299 -699,IAR_LU_subtracted,Left kidney cortex,100,0.097,0.02,0.00212,0.094557643,0.024935294,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.026069173,0.014844147,6.85E-05,299,299,299 -700,IAR_LU_subtracted,Left kidney cortex,200,0.097,0.02,0.00212,0.095297515,0.02142065,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.012874619,0.004971599,3.42E-05,299,299,299 -701,IAR_LU_subtracted,left kidney medulla,10,0.158,0.019,0.00209,0.179099288,0.048219596,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.173901183,0.043043482,0.000728386,299,299,299 -702,IAR_LU_subtracted,left kidney medulla,30,0.158,0.019,0.00209,0.149852727,0.033647837,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.081471886,0.029463645,0.000242647,299,299,299 -703,IAR_LU_subtracted,left kidney medulla,50,0.158,0.019,0.00209,0.152083542,0.026075982,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.051439625,0.018950242,0.000144591,299,299,299 -704,IAR_LU_subtracted,left kidney medulla,100,0.158,0.019,0.00209,0.154245618,0.020970784,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.025546906,0.00644714,7.21E-05,299,299,299 -705,IAR_LU_subtracted,left kidney medulla,200,0.158,0.019,0.00209,0.154953784,0.019816867,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.012740204,0.002493405,3.60E-05,299,299,299 -706,IAR_LU_subtracted,Liver,10,0.11,0.1,0.0015,0.121102796,0.063463702,0.001520848,0.45,0.45,0.45,0.45,0.45,0.45,0.130105575,0.04250074,0.000472993,299,299,299 -707,IAR_LU_subtracted,Liver,30,0.11,0.1,0.0015,0.097755861,0.072478185,0.001501547,0.45,0.45,0.45,0.45,0.45,0.45,0.061350249,0.034666307,0.000152138,299,299,299 -708,IAR_LU_subtracted,Liver,50,0.11,0.1,0.0015,0.100463203,0.078794527,0.001500177,0.45,0.45,0.45,0.45,0.45,0.45,0.040998051,0.028451057,9.10E-05,299,299,299 -709,IAR_LU_subtracted,Liver,100,0.11,0.1,0.0015,0.105490313,0.086878553,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.020876704,0.01893254,4.54E-05,299,299,299 -710,IAR_LU_subtracted,Liver,200,0.11,0.1,0.0015,0.107911735,0.092666541,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.010493764,0.010982979,2.27E-05,299,299,299 -711,IAR_LU_subtracted,Myocardium LV,10,0.15,0.08,0.0024,0.181176562,0.060848093,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.184591897,0.042377738,0.000834069,299,299,299 -712,IAR_LU_subtracted,Myocardium LV,30,0.15,0.08,0.0024,0.135455819,0.069430129,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.090071402,0.034469049,0.000296358,299,299,299 -713,IAR_LU_subtracted,Myocardium LV,50,0.15,0.08,0.0024,0.138545124,0.073367948,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.061290584,0.029393475,0.000176238,299,299,299 -714,IAR_LU_subtracted,Myocardium LV,100,0.15,0.08,0.0024,0.145564204,0.078156055,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.03078952,0.021822099,8.78E-05,299,299,299 -715,IAR_LU_subtracted,Myocardium LV,200,0.15,0.08,0.0024,0.148714773,0.080576205,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.014524016,0.014774345,4.39E-05,299,299,299 -716,IAR_LU_subtracted,myocardium ra,10,0.07,0.07,0.0015,0.101868108,0.060653412,0.001519752,0.45,0.45,0.45,0.45,0.45,0.45,0.1208983,0.043484765,0.000451902,299,299,299 -717,IAR_LU_subtracted,myocardium ra,30,0.07,0.07,0.0015,0.066909282,0.062909239,0.001501351,0.45,0.45,0.45,0.45,0.45,0.45,0.054675336,0.039018948,0.000145532,299,299,299 -718,IAR_LU_subtracted,myocardium ra,50,0.07,0.07,0.0015,0.064904769,0.065712481,0.001500123,0.45,0.45,0.45,0.45,0.45,0.45,0.037354782,0.03450828,8.71E-05,299,299,299 -719,IAR_LU_subtracted,myocardium ra,100,0.07,0.07,0.0015,0.067361414,0.069733547,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.019699825,0.027166531,4.35E-05,299,299,299 -720,IAR_LU_subtracted,myocardium ra,200,0.07,0.07,0.0015,0.069231228,0.071613303,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.009289732,0.01917227,2.17E-05,299,299,299 -721,IAR_LU_subtracted,myocardium RV,10,0.15,0.08,0.0024,0.181176562,0.060848093,0.002363687,0.45,0.45,0.45,0.45,0.45,0.45,0.184591897,0.042377738,0.000834069,299,299,299 -722,IAR_LU_subtracted,myocardium RV,30,0.15,0.08,0.0024,0.135455819,0.069430129,0.002413036,0.45,0.45,0.45,0.45,0.45,0.45,0.090071402,0.034469049,0.000296358,299,299,299 -723,IAR_LU_subtracted,myocardium RV,50,0.15,0.08,0.0024,0.138545124,0.073367948,0.002404941,0.45,0.45,0.45,0.45,0.45,0.45,0.061290584,0.029393475,0.000176238,299,299,299 -724,IAR_LU_subtracted,myocardium RV,100,0.15,0.08,0.0024,0.145564204,0.078156055,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.03078952,0.021822099,8.78E-05,299,299,299 -725,IAR_LU_subtracted,myocardium RV,200,0.15,0.08,0.0024,0.148714773,0.080576205,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.014524016,0.014774345,4.39E-05,299,299,299 -726,IAR_LU_subtracted,pancreas,10,0.15,0.01,0.0013,0.145973573,0.041832236,0.001347335,0.45,0.45,0.45,0.45,0.45,0.45,0.133409112,0.042751573,0.00043165,299,299,299 -727,IAR_LU_subtracted,pancreas,30,0.15,0.01,0.0013,0.128614984,0.019678738,0.001330826,0.45,0.45,0.45,0.45,0.45,0.45,0.059108206,0.023105715,0.000139043,299,299,299 -728,IAR_LU_subtracted,pancreas,50,0.15,0.01,0.0013,0.129890011,0.014418841,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.035839158,0.012504685,8.32E-05,299,299,299 -729,IAR_LU_subtracted,pancreas,100,0.15,0.01,0.0013,0.130754692,0.011901673,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.017978544,0.002505897,4.15E-05,299,299,299 -730,IAR_LU_subtracted,pancreas,200,0.15,0.01,0.0013,0.131107658,0.01157572,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.008999003,0.001099421,2.08E-05,299,299,299 -731,IAR_LU_subtracted,pericardium,10,0.07,0.01,0.003,0.182005007,0.044939951,0.002737011,0.45,0.45,0.45,0.45,0.45,0.45,0.199393895,0.044608143,0.000885042,299,299,299 -732,IAR_LU_subtracted,pericardium,30,0.07,0.01,0.003,0.076726439,0.048339566,0.003046129,0.45,0.45,0.45,0.45,0.45,0.45,0.088444665,0.044397223,0.000391056,299,299,299 -733,IAR_LU_subtracted,pericardium,50,0.07,0.01,0.003,0.060765317,0.042217646,0.00304009,0.45,0.45,0.45,0.45,0.45,0.45,0.061339608,0.042107261,0.000238153,299,299,299 -734,IAR_LU_subtracted,pericardium,100,0.07,0.01,0.003,0.052357578,0.028930054,0.003033248,0.45,0.45,0.45,0.45,0.45,0.45,0.037151651,0.032474266,0.000118501,299,299,299 -735,IAR_LU_subtracted,pericardium,200,0.07,0.01,0.003,0.05146831,0.016873858,0.00303118,0.45,0.45,0.45,0.45,0.45,0.45,0.020646564,0.015247396,5.92E-05,299,299,299 -736,IAR_LU_subtracted,right kidney medulla,10,0.158,0.019,0.00209,0.179099288,0.048219596,0.00210934,0.45,0.45,0.45,0.45,0.45,0.45,0.173901183,0.043043482,0.000728386,299,299,299 -737,IAR_LU_subtracted,right kidney medulla,30,0.158,0.019,0.00209,0.149852727,0.033647837,0.002103271,0.45,0.45,0.45,0.45,0.45,0.45,0.081471886,0.029463645,0.000242647,299,299,299 -738,IAR_LU_subtracted,right kidney medulla,50,0.158,0.019,0.00209,0.152083542,0.026075982,0.002097898,0.45,0.45,0.45,0.45,0.45,0.45,0.051439625,0.018950242,0.000144591,299,299,299 -739,IAR_LU_subtracted,right kidney medulla,100,0.158,0.019,0.00209,0.154245618,0.020970784,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.025546906,0.00644714,7.21E-05,299,299,299 -740,IAR_LU_subtracted,right kidney medulla,200,0.158,0.019,0.00209,0.154953784,0.019816867,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.012740204,0.002493405,3.60E-05,299,299,299 -741,IAR_LU_subtracted,Right kydney cortex,10,0.097,0.02,0.00212,0.142139794,0.051623985,0.002140047,0.45,0.45,0.45,0.45,0.45,0.45,0.158085677,0.043994516,0.000693964,299,299,299 -742,IAR_LU_subtracted,Right kydney cortex,30,0.097,0.02,0.00212,0.095933899,0.042067439,0.002129741,0.45,0.45,0.45,0.45,0.45,0.45,0.073990003,0.037530338,0.000230469,299,299,299 -743,IAR_LU_subtracted,Right kydney cortex,50,0.097,0.02,0.00212,0.093431576,0.034097238,0.002124865,0.45,0.45,0.45,0.45,0.45,0.45,0.050016269,0.029116022,0.000137435,299,299,299 -744,IAR_LU_subtracted,Right kydney cortex,100,0.097,0.02,0.00212,0.094557643,0.024935294,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.026069173,0.014844147,6.85E-05,299,299,299 -745,IAR_LU_subtracted,Right kydney cortex,200,0.097,0.02,0.00212,0.095297515,0.02142065,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.012874619,0.004971599,3.42E-05,299,299,299 -746,IAR_LU_subtracted,small intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 -747,IAR_LU_subtracted,small intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 -748,IAR_LU_subtracted,small intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 -749,IAR_LU_subtracted,small intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 -750,IAR_LU_subtracted,small intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 -751,IAR_LU_subtracted,spleen,10,0.2,0.03,0.0013,0.192961858,0.049259747,0.001318692,0.45,0.45,0.45,0.45,0.45,0.45,0.146720065,0.039014304,0.000459162,299,299,299 -752,IAR_LU_subtracted,spleen,30,0.2,0.03,0.0013,0.195619974,0.037866023,0.001301089,0.45,0.45,0.45,0.45,0.45,0.45,0.058248082,0.023039661,0.000147367,299,299,299 -753,IAR_LU_subtracted,spleen,50,0.2,0.03,0.0013,0.198125993,0.033434677,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.033860027,0.014119694,8.81E-05,299,299,299 -754,IAR_LU_subtracted,spleen,100,0.2,0.03,0.0013,0.199199769,0.030874236,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.016765803,0.005756443,4.40E-05,299,299,299 -755,IAR_LU_subtracted,spleen,200,0.2,0.03,0.0013,0.199585282,0.030268153,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.008358647,0.002728748,2.20E-05,299,299,299 -756,IAR_LU_subtracted,st wall,10,0.3,0.012,0.0015,0.262694586,0.031918565,0.001577739,0.45,0.45,0.45,0.45,0.45,0.45,0.172890946,0.034907403,0.000614594,299,299,299 -757,IAR_LU_subtracted,st wall,30,0.3,0.012,0.0015,0.271112585,0.01575528,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.067007666,0.01090541,0.000195512,299,299,299 -758,IAR_LU_subtracted,st wall,50,0.3,0.012,0.0015,0.2739868,0.013806573,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.039874695,0.00322903,0.000116681,299,299,299 -759,IAR_LU_subtracted,st wall,100,0.3,0.012,0.0015,0.275412083,0.0133115,0.001548674,0.45,0.45,0.45,0.45,0.45,0.45,0.019901134,0.001323381,5.82E-05,299,299,299 -760,IAR_LU_subtracted,st wall,200,0.3,0.012,0.0015,0.275903273,0.013199305,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.009946941,0.000634014,2.91E-05,299,299,299 -761,IAR_LU_subtracted,trans lower intestine,10,0.69,0.029,0.00131,0.649071572,0.037464324,0.001283971,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915,0.022503811,0.001031075,299,299,299 -762,IAR_LU_subtracted,trans lower intestine,30,0.69,0.029,0.00131,0.681939176,0.030294535,0.001327009,0.45,0.45,0.45,0.45,0.45,0.45,0.060389114,0.006156145,0.000393815,299,299,299 -763,IAR_LU_subtracted,trans lower intestine,50,0.69,0.029,0.00131,0.686488325,0.029480529,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.035026529,0.003177172,0.000231514,299,299,299 -764,IAR_LU_subtracted,trans lower intestine,100,0.69,0.029,0.00131,0.688499643,0.029166381,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.017297875,0.001512142,0.000114728,299,299,299 -765,IAR_LU_subtracted,trans lower intestine,200,0.69,0.029,0.00131,0.689091142,0.029083826,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.008624711,0.000746769,5.72E-05,299,299,299 -766,IAR_LU_subtracted,Vein,10,1,0.1,0.003,0.868045922,0.098598529,0.000602378,0.45,0.45,0.45,0.45,0.45,0.45,0.112435322,0.004400483,0.00095424,299,299,299 -767,IAR_LU_subtracted,Vein,30,1,0.1,0.003,0.957942478,0.099618442,0.000602393,0.45,0.45,0.45,0.45,0.45,0.45,0.033447335,0.001334386,0.000954268,299,299,299 -768,IAR_LU_subtracted,Vein,50,1,0.1,0.003,0.974974773,0.099774996,0.000602406,0.45,0.45,0.45,0.45,0.45,0.45,0.019650692,0.000799331,0.000954267,299,299,299 -769,IAR_LU_subtracted,Vein,100,1,0.1,0.003,0.987563371,0.099890941,0.000602443,0.45,0.45,0.45,0.45,0.45,0.45,0.009675504,0.000393844,0.000954286,299,299,299 -770,IAR_LU_subtracted,Vein,200,1,0.1,0.003,0.993800432,0.099947558,0.000602417,0.45,0.45,0.45,0.45,0.45,0.45,0.004801315,0.000192683,0.00095406,299,299,299 -771,OGC_AmsterdamUMC_Bayesian_biexp,Artery,10,1,0.1,0.003,0.914296492,0.124951039,0.000341386,0.45,0.45,0.45,0.45,0.45,0.45,0.033870879,0.026491621,0.000759818,299,299,299 -772,OGC_AmsterdamUMC_Bayesian_biexp,Artery,30,1,0.1,0.003,0.973099807,0.107393311,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804963,0.007482952,0.000430418,299,299,299 -773,OGC_AmsterdamUMC_Bayesian_biexp,Artery,50,1,0.1,0.003,0.984111286,0.104286409,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676674,0.004344101,0.00041008,299,299,299 -774,OGC_AmsterdamUMC_Bayesian_biexp,Artery,100,1,0.1,0.003,0.992309613,0.10204803,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303783,0.002125803,0.000377336,299,299,299 -775,OGC_AmsterdamUMC_Bayesian_biexp,Artery,200,1,0.1,0.003,0.996293987,0.100989063,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146383,0.001053061,0.00035602,299,299,299 -776,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.694246809,0.033212428,0.00115663,0.45,0.45,0.45,0.45,0.45,0.45,0.110159746,0.019304893,0.000818021,299,299,299 -777,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.690033148,0.029354524,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083089,0.003629514,0.000284879,299,299,299 -778,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.689921467,0.029138652,0.001303149,0.45,0.45,0.45,0.45,0.45,0.45,0.021377222,0.002138343,0.000166105,299,299,299 -779,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.689705415,0.029147764,0.001308053,0.45,0.45,0.45,0.45,0.45,0.45,0.010824981,0.001291221,8.28E-05,299,299,299 -780,OGC_AmsterdamUMC_Bayesian_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.68967653,0.029076305,0.001308018,0.45,0.45,0.45,0.45,0.45,0.45,0.005833233,0.000767401,4.22E-05,299,299,299 -781,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,10,1,0.1,0.003,0.914296492,0.124951039,0.000341386,0.45,0.45,0.45,0.45,0.45,0.45,0.033870879,0.026491621,0.000759818,299,299,299 -782,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,30,1,0.1,0.003,0.973099807,0.107393311,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804963,0.007482952,0.000430418,299,299,299 -783,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,50,1,0.1,0.003,0.984111286,0.104286409,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676674,0.004344101,0.00041008,299,299,299 -784,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,100,1,0.1,0.003,0.992309613,0.10204803,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303783,0.002125803,0.000377336,299,299,299 -785,OGC_AmsterdamUMC_Bayesian_biexp,Blood RA,200,1,0.1,0.003,0.996293987,0.100989063,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146383,0.001053061,0.00035602,299,299,299 -786,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,10,1,0.1,0.003,0.914297401,0.124952392,0.000341385,0.45,0.45,0.45,0.45,0.45,0.45,0.03387042,0.026491931,0.000759817,299,299,299 -787,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,30,1,0.1,0.003,0.973099598,0.107393352,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804734,0.007483034,0.000430418,299,299,299 -788,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,50,1,0.1,0.003,0.98411098,0.104286733,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676655,0.004344225,0.00041008,299,299,299 -789,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,100,1,0.1,0.003,0.992309673,0.102048012,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303763,0.002125853,0.000377336,299,299,299 -790,OGC_AmsterdamUMC_Bayesian_biexp,Blood RV,200,1,0.1,0.003,0.996293917,0.100989102,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146318,0.001053057,0.000356019,299,299,299 -791,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.694246845,0.033212543,0.001156631,0.45,0.45,0.45,0.45,0.45,0.45,0.110160151,0.019304821,0.000818022,299,299,299 -792,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.690033103,0.029354525,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083064,0.003629512,0.000284879,299,299,299 -793,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.689855674,0.029142881,0.001303606,0.45,0.45,0.45,0.45,0.45,0.45,0.021315409,0.002132588,0.000165776,299,299,299 -794,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.689705423,0.029147764,0.001308053,0.45,0.45,0.45,0.45,0.45,0.45,0.010824973,0.001291221,8.28E-05,299,299,299 -795,OGC_AmsterdamUMC_Bayesian_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.689676538,0.029076306,0.001308018,0.45,0.45,0.45,0.45,0.45,0.45,0.005833197,0.000767398,4.22E-05,299,299,299 -796,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,10,0.32,0.03,0.00167,0.360637899,0.150015035,0.00154163,0.45,0.45,0.45,0.45,0.45,0.45,0.145804401,0.408781901,0.0005739,299,299,299 -797,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,30,0.32,0.03,0.00167,0.324529873,0.031751837,0.001652125,0.45,0.45,0.45,0.45,0.45,0.45,0.041452879,0.010304595,0.000164117,299,299,299 -798,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,50,0.32,0.03,0.00167,0.321549234,0.030497146,0.001661833,0.45,0.45,0.45,0.45,0.45,0.45,0.024132711,0.005222811,9.57E-05,299,299,299 -799,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,100,0.32,0.03,0.00167,0.320358986,0.030103363,0.001666862,0.45,0.45,0.45,0.45,0.45,0.45,0.011840207,0.002475061,4.71E-05,299,299,299 -800,OGC_AmsterdamUMC_Bayesian_biexp,esophagus,200,0.32,0.03,0.00167,0.32007735,0.030020634,0.001668668,0.45,0.45,0.45,0.45,0.45,0.45,0.005887225,0.001220813,2.34E-05,299,299,299 -801,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,10,0.32,0.03,0.00167,0.360637899,0.150015035,0.00154163,0.45,0.45,0.45,0.45,0.45,0.45,0.145804401,0.408781901,0.0005739,299,299,299 -802,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,30,0.32,0.03,0.00167,0.324529873,0.031751837,0.001652125,0.45,0.45,0.45,0.45,0.45,0.45,0.041452879,0.010304595,0.000164117,299,299,299 -803,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,50,0.32,0.03,0.00167,0.321549234,0.030497146,0.001661833,0.45,0.45,0.45,0.45,0.45,0.45,0.024132711,0.005222811,9.57E-05,299,299,299 -804,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,100,0.32,0.03,0.00167,0.320358986,0.030103363,0.001666862,0.45,0.45,0.45,0.45,0.45,0.45,0.011840207,0.002475061,4.71E-05,299,299,299 -805,OGC_AmsterdamUMC_Bayesian_biexp,esophagus cont,200,0.32,0.03,0.00167,0.32007735,0.030020634,0.001668668,0.45,0.45,0.45,0.45,0.45,0.45,0.005887225,0.001220813,2.34E-05,299,299,299 -806,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.188596573,0.38583104,0.001898976,0.45,0.45,0.45,0.45,0.45,0.45,0.198632494,0.722936114,0.000578514,299,299,299 -807,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.141555513,0.177123403,0.00204074,0.45,0.45,0.45,0.45,0.45,0.45,0.11154362,0.465680626,0.000257701,299,299,299 -808,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.118643922,0.042124429,0.002079695,0.45,0.45,0.45,0.45,0.45,0.45,0.067807516,0.140865944,0.00015212,299,299,299 -809,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.100892171,0.022835281,0.002111271,0.45,0.45,0.45,0.45,0.45,0.45,0.023312451,0.019731545,6.31E-05,299,299,299 -810,OGC_AmsterdamUMC_Bayesian_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.09794944,0.0203224,0.002117178,0.45,0.45,0.45,0.45,0.45,0.45,0.010526325,0.003348179,2.96E-05,299,299,299 -811,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.253952864,0.304950429,0.00184048,0.45,0.45,0.45,0.45,0.45,0.45,0.214213198,0.626011038,0.000641542,299,299,299 -812,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.19017113,0.05116495,0.002022036,0.45,0.45,0.45,0.45,0.45,0.45,0.104595778,0.179584364,0.000273137,299,299,299 -813,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.168047576,0.032967291,0.002067528,0.45,0.45,0.45,0.45,0.45,0.45,0.051270964,0.126949727,0.00014298,299,299,299 -814,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.160311838,0.019505166,0.002083223,0.45,0.45,0.45,0.45,0.45,0.45,0.022099097,0.004024283,6.45E-05,299,299,299 -815,OGC_AmsterdamUMC_Bayesian_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.158557258,0.019120645,0.002087782,0.45,0.45,0.45,0.45,0.45,0.45,0.010717869,0.001954162,3.17E-05,299,299,299 -816,OGC_AmsterdamUMC_Bayesian_biexp,Liver,10,0.11,0.1,0.0015,0.170376565,0.469616209,0.001363028,0.45,0.45,0.45,0.45,0.45,0.45,0.138211369,0.73197684,0.000361914,299,299,299 -817,OGC_AmsterdamUMC_Bayesian_biexp,Liver,30,0.11,0.1,0.0015,0.118109407,0.227068026,0.00148604,0.45,0.45,0.45,0.45,0.45,0.45,0.034259388,0.390847594,9.96E-05,299,299,299 -818,OGC_AmsterdamUMC_Bayesian_biexp,Liver,50,0.11,0.1,0.0015,0.112169947,0.131862486,0.001495879,0.45,0.45,0.45,0.45,0.45,0.45,0.015397656,0.168625986,5.12E-05,299,299,299 -819,OGC_AmsterdamUMC_Bayesian_biexp,Liver,100,0.11,0.1,0.0015,0.110516961,0.104566165,0.001498173,0.45,0.45,0.45,0.45,0.45,0.45,0.007525505,0.028196631,2.47E-05,299,299,299 -820,OGC_AmsterdamUMC_Bayesian_biexp,Liver,200,0.11,0.1,0.0015,0.110097109,0.101175496,0.001499224,0.45,0.45,0.45,0.45,0.45,0.45,0.003766265,0.011617012,1.22E-05,299,299,299 -821,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.246528058,0.348133574,0.002092922,0.45,0.45,0.45,0.45,0.45,0.45,0.181136487,0.627154956,0.000656664,299,299,299 -822,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.158668839,0.150740461,0.002380129,0.45,0.45,0.45,0.45,0.45,0.45,0.044335382,0.290507088,0.000184759,299,299,299 -823,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.151909831,0.099101478,0.00239319,0.45,0.45,0.45,0.45,0.45,0.45,0.017898097,0.159015209,9.10E-05,299,299,299 -824,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.15045406,0.081837382,0.00239709,0.45,0.45,0.45,0.45,0.45,0.45,0.008545496,0.014613763,4.40E-05,299,299,299 -825,OGC_AmsterdamUMC_Bayesian_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150083029,0.080521341,0.002398773,0.45,0.45,0.45,0.45,0.45,0.45,0.004248303,0.007052208,2.19E-05,299,299,299 -826,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,10,0.07,0.07,0.0015,0.132992854,0.461997483,0.001368316,0.45,0.45,0.45,0.45,0.45,0.45,0.140522744,0.734010314,0.000346092,299,299,299 -827,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,30,0.07,0.07,0.0015,0.088451794,0.289658965,0.001467626,0.45,0.45,0.45,0.45,0.45,0.45,0.050844126,0.529373222,0.000119387,299,299,299 -828,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,50,0.07,0.07,0.0015,0.076126593,0.156862196,0.001489877,0.45,0.45,0.45,0.45,0.45,0.45,0.024226688,0.309458479,6.35E-05,299,299,299 -829,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070963889,0.078449632,0.001497432,0.45,0.45,0.45,0.45,0.45,0.45,0.008117474,0.04692124,2.53E-05,299,299,299 -830,OGC_AmsterdamUMC_Bayesian_biexp,myocardium ra,200,0.07,0.07,0.0015,0.070185419,0.071558335,0.001499053,0.45,0.45,0.45,0.45,0.45,0.45,0.00403494,0.01296711,1.23E-05,299,299,299 -831,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,10,0.15,0.08,0.0024,0.246528058,0.348133574,0.002092922,0.45,0.45,0.45,0.45,0.45,0.45,0.181136487,0.627154956,0.000656664,299,299,299 -832,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,30,0.15,0.08,0.0024,0.158668839,0.150740461,0.002380129,0.45,0.45,0.45,0.45,0.45,0.45,0.044335382,0.290507088,0.000184759,299,299,299 -833,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,50,0.15,0.08,0.0024,0.151909831,0.099101478,0.00239319,0.45,0.45,0.45,0.45,0.45,0.45,0.017898097,0.159015209,9.10E-05,299,299,299 -834,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,100,0.15,0.08,0.0024,0.15045406,0.081837382,0.00239709,0.45,0.45,0.45,0.45,0.45,0.45,0.008545496,0.014613763,4.40E-05,299,299,299 -835,OGC_AmsterdamUMC_Bayesian_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150083029,0.080521341,0.002398773,0.45,0.45,0.45,0.45,0.45,0.45,0.004248303,0.007052208,2.19E-05,299,299,299 -836,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,10,0.15,0.01,0.0013,0.177581724,0.43065719,0.00125655,0.45,0.45,0.45,0.45,0.45,0.45,0.165637117,0.745081524,0.000402664,299,299,299 -837,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,30,0.15,0.01,0.0013,0.1765654,0.060525435,0.001260986,0.45,0.45,0.45,0.45,0.45,0.45,0.094130606,0.261126586,0.000185523,299,299,299 -838,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,50,0.15,0.01,0.0013,0.169797776,0.017228122,0.001269147,0.45,0.45,0.45,0.45,0.45,0.45,0.069191166,0.053040216,0.00012962,299,299,299 -839,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,100,0.15,0.01,0.0013,0.156843916,0.010274465,0.001288256,0.45,0.45,0.45,0.45,0.45,0.45,0.033098327,0.002805935,6.20E-05,299,299,299 -840,OGC_AmsterdamUMC_Bayesian_biexp,pancreas,200,0.15,0.01,0.0013,0.151525029,0.010057823,0.001296965,0.45,0.45,0.45,0.45,0.45,0.45,0.015004214,0.001277288,2.91E-05,299,299,299 -841,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,10,0.07,0.01,0.003,0.211255538,0.249229776,0.002501254,0.45,0.45,0.45,0.45,0.45,0.45,0.261211569,0.559657731,0.000882896,299,299,299 -842,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,30,0.07,0.01,0.003,0.129163583,0.267009677,0.002882556,0.45,0.45,0.45,0.45,0.45,0.45,0.179356053,0.595048801,0.000417502,299,299,299 -843,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,50,0.07,0.01,0.003,0.117317522,0.229011082,0.002931461,0.45,0.45,0.45,0.45,0.45,0.45,0.148570784,0.554095365,0.000298907,299,299,299 -844,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,100,0.07,0.01,0.003,0.116118731,0.09998442,0.002945039,0.45,0.45,0.45,0.45,0.45,0.45,0.115927314,0.331589358,0.000200448,299,299,299 -845,OGC_AmsterdamUMC_Bayesian_biexp,pericardium,200,0.07,0.01,0.003,0.09852404,0.015344494,0.002964763,0.45,0.45,0.45,0.45,0.45,0.45,0.077127196,0.023425454,0.000123398,299,299,299 -846,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.253952864,0.304950429,0.00184048,0.45,0.45,0.45,0.45,0.45,0.45,0.214213198,0.626011038,0.000641542,299,299,299 -847,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.19017113,0.05116495,0.002022036,0.45,0.45,0.45,0.45,0.45,0.45,0.104595778,0.179584364,0.000273137,299,299,299 -848,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.168047576,0.032967291,0.002067528,0.45,0.45,0.45,0.45,0.45,0.45,0.051270964,0.126949727,0.00014298,299,299,299 -849,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.160311838,0.019505166,0.002083223,0.45,0.45,0.45,0.45,0.45,0.45,0.022099097,0.004024283,6.45E-05,299,299,299 -850,OGC_AmsterdamUMC_Bayesian_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.158557258,0.019120645,0.002087782,0.45,0.45,0.45,0.45,0.45,0.45,0.010717869,0.001954162,3.17E-05,299,299,299 -851,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.188596573,0.38583104,0.001898976,0.45,0.45,0.45,0.45,0.45,0.45,0.198632494,0.722936114,0.000578514,299,299,299 -852,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.141555513,0.177123403,0.00204074,0.45,0.45,0.45,0.45,0.45,0.45,0.11154362,0.465680626,0.000257701,299,299,299 -853,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.118643922,0.042124429,0.002079695,0.45,0.45,0.45,0.45,0.45,0.45,0.067807516,0.140865944,0.00015212,299,299,299 -854,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.100892171,0.022835281,0.002111271,0.45,0.45,0.45,0.45,0.45,0.45,0.023312451,0.019731545,6.31E-05,299,299,299 -855,OGC_AmsterdamUMC_Bayesian_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.09794944,0.0203224,0.002117178,0.45,0.45,0.45,0.45,0.45,0.45,0.010526325,0.003348179,2.96E-05,299,299,299 -856,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,10,0.69,0.029,0.00131,0.694246361,0.033212555,0.00115663,0.45,0.45,0.45,0.45,0.45,0.45,0.110159259,0.019304814,0.000818021,299,299,299 -857,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,30,0.69,0.029,0.00131,0.690033088,0.029354533,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083089,0.003629524,0.000284879,299,299,299 -858,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,50,0.69,0.029,0.00131,0.689921486,0.029138649,0.001303149,0.45,0.45,0.45,0.45,0.45,0.45,0.021377248,0.002138348,0.000166105,299,299,299 -859,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,100,0.69,0.029,0.00131,0.689787379,0.029133683,0.001306796,0.45,0.45,0.45,0.45,0.45,0.45,0.01088051,0.001283354,8.28E-05,299,299,299 -860,OGC_AmsterdamUMC_Bayesian_biexp,small intestine,200,0.69,0.029,0.00131,0.689676541,0.029076305,0.001308018,0.45,0.45,0.45,0.45,0.45,0.45,0.005833229,0.000767401,4.22E-05,299,299,299 -861,OGC_AmsterdamUMC_Bayesian_biexp,spleen,10,0.2,0.03,0.0013,0.25237841,0.233718646,0.001190598,0.45,0.45,0.45,0.45,0.45,0.45,0.143855248,0.502476063,0.000408973,299,299,299 -862,OGC_AmsterdamUMC_Bayesian_biexp,spleen,30,0.2,0.03,0.0013,0.206891202,0.03916511,0.001282641,0.45,0.45,0.45,0.45,0.45,0.45,0.039071411,0.057779458,0.000116385,299,299,299 -863,OGC_AmsterdamUMC_Bayesian_biexp,spleen,50,0.2,0.03,0.0013,0.202242373,0.031288038,0.001292582,0.45,0.45,0.45,0.45,0.45,0.45,0.022174323,0.008803339,6.60E-05,299,299,299 -864,OGC_AmsterdamUMC_Bayesian_biexp,spleen,100,0.2,0.03,0.0013,0.200493109,0.030248442,0.001297372,0.45,0.45,0.45,0.45,0.45,0.45,0.010743294,0.003831753,3.21E-05,299,299,299 -865,OGC_AmsterdamUMC_Bayesian_biexp,spleen,200,0.2,0.03,0.0013,0.200092044,0.03005272,0.001298969,0.45,0.45,0.45,0.45,0.45,0.45,0.005324478,0.001867046,1.59E-05,299,299,299 -866,OGC_AmsterdamUMC_Bayesian_biexp,st wall,10,0.3,0.012,0.0015,0.342171654,0.169021112,0.00137659,0.45,0.45,0.45,0.45,0.45,0.45,0.209121239,0.464911518,0.00063423,299,299,299 -867,OGC_AmsterdamUMC_Bayesian_biexp,st wall,30,0.3,0.012,0.0015,0.322622542,0.016311956,0.001442108,0.45,0.45,0.45,0.45,0.45,0.45,0.099524929,0.035894597,0.000264951,299,299,299 -868,OGC_AmsterdamUMC_Bayesian_biexp,st wall,50,0.3,0.012,0.0015,0.30738024,0.012384014,0.001479636,0.45,0.45,0.45,0.45,0.45,0.45,0.054398623,0.003119086,0.000143579,299,299,299 -869,OGC_AmsterdamUMC_Bayesian_biexp,st wall,100,0.3,0.012,0.0015,0.301693691,0.012087111,0.001494297,0.45,0.45,0.45,0.45,0.45,0.45,0.026341522,0.001432269,6.97E-05,299,299,299 -870,OGC_AmsterdamUMC_Bayesian_biexp,st wall,200,0.3,0.012,0.0015,0.300260349,0.012028906,0.001498479,0.45,0.45,0.45,0.45,0.45,0.45,0.013190925,0.000701135,3.49E-05,299,299,299 -871,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.694259683,0.033212126,0.001156518,0.45,0.45,0.45,0.45,0.45,0.45,0.110176564,0.019305205,0.000818178,299,299,299 -872,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.690033168,0.029354522,0.001299059,0.45,0.45,0.45,0.45,0.45,0.45,0.036083059,0.003629514,0.000284878,299,299,299 -873,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.689921506,0.029138647,0.001303149,0.45,0.45,0.45,0.45,0.45,0.45,0.021377243,0.002138347,0.000166105,299,299,299 -874,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.689705435,0.029147764,0.001308053,0.45,0.45,0.45,0.45,0.45,0.45,0.010825011,0.001291222,8.28E-05,299,299,299 -875,OGC_AmsterdamUMC_Bayesian_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.689703365,0.02907292,0.001307928,0.45,0.45,0.45,0.45,0.45,0.45,0.005797314,0.000764637,4.20E-05,299,299,299 -876,OGC_AmsterdamUMC_Bayesian_biexp,Vein,10,1,0.1,0.003,0.914295867,0.124952449,0.000341386,0.45,0.45,0.45,0.45,0.45,0.45,0.033870556,0.026492136,0.000759818,299,299,299 -877,OGC_AmsterdamUMC_Bayesian_biexp,Vein,30,1,0.1,0.003,0.973099781,0.107393408,0.00023222,0.45,0.45,0.45,0.45,0.45,0.45,0.007804762,0.007482951,0.000430418,299,299,299 -878,OGC_AmsterdamUMC_Bayesian_biexp,Vein,50,1,0.1,0.003,0.984111119,0.1042867,0.000213374,0.45,0.45,0.45,0.45,0.45,0.45,0.004676853,0.004344244,0.00041008,299,299,299 -879,OGC_AmsterdamUMC_Bayesian_biexp,Vein,100,1,0.1,0.003,0.992309696,0.102047955,0.000179453,0.45,0.45,0.45,0.45,0.45,0.45,0.002303774,0.002125803,0.000377336,299,299,299 -880,OGC_AmsterdamUMC_Bayesian_biexp,Vein,200,1,0.1,0.003,0.996293962,0.100989053,0.000153682,0.45,0.45,0.45,0.45,0.45,0.45,0.001146354,0.001053029,0.00035602,299,299,299 -881,OGC_AmsterdamUMC_biexp,Artery,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 -882,OGC_AmsterdamUMC_biexp,Artery,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 -883,OGC_AmsterdamUMC_biexp,Artery,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 -884,OGC_AmsterdamUMC_biexp,Artery,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296025,0.001835208,0.000373115,299,299,299 -885,OGC_AmsterdamUMC_biexp,Artery,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 -886,OGC_AmsterdamUMC_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.694830689,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.09780078,0.017042154,0.000744262,299,299,299 -887,OGC_AmsterdamUMC_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.689570851,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833214,0.003283099,0.000279782,299,299,299 -888,OGC_AmsterdamUMC_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.689825694,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 -889,OGC_AmsterdamUMC_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663163,0.00093864,8.27E-05,299,299,299 -890,OGC_AmsterdamUMC_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 -891,OGC_AmsterdamUMC_biexp,Blood RA,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 -892,OGC_AmsterdamUMC_biexp,Blood RA,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 -893,OGC_AmsterdamUMC_biexp,Blood RA,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 -894,OGC_AmsterdamUMC_biexp,Blood RA,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296025,0.001835208,0.000373115,299,299,299 -895,OGC_AmsterdamUMC_biexp,Blood RA,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 -896,OGC_AmsterdamUMC_biexp,Blood RV,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 -897,OGC_AmsterdamUMC_biexp,Blood RV,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 -898,OGC_AmsterdamUMC_biexp,Blood RV,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 -899,OGC_AmsterdamUMC_biexp,Blood RV,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296024,0.001835208,0.000373115,299,299,299 -900,OGC_AmsterdamUMC_biexp,Blood RV,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 -901,OGC_AmsterdamUMC_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.694830688,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.097800779,0.017042154,0.000744262,299,299,299 -902,OGC_AmsterdamUMC_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.689570851,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833215,0.003283099,0.000279782,299,299,299 -903,OGC_AmsterdamUMC_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.689825694,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 -904,OGC_AmsterdamUMC_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663162,0.00093864,8.27E-05,299,299,299 -905,OGC_AmsterdamUMC_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 -906,OGC_AmsterdamUMC_biexp,esophagus,10,0.32,0.03,0.00167,0.35470548,0.047383348,0.00153198,0.45,0.45,0.45,0.45,0.45,0.45,0.13774994,0.047240904,0.000533878,299,299,299 -907,OGC_AmsterdamUMC_biexp,esophagus,30,0.32,0.03,0.00167,0.323201589,0.031580986,0.001655541,0.45,0.45,0.45,0.45,0.45,0.45,0.040307219,0.008935255,0.000158206,299,299,299 -908,OGC_AmsterdamUMC_biexp,esophagus,50,0.32,0.03,0.00167,0.321129498,0.03054864,0.001663459,0.45,0.45,0.45,0.45,0.45,0.45,0.023732344,0.004681682,9.37E-05,299,299,299 -909,OGC_AmsterdamUMC_biexp,esophagus,100,0.32,0.03,0.00167,0.320280006,0.030151275,0.001667477,0.45,0.45,0.45,0.45,0.45,0.45,0.011733692,0.002219048,4.65E-05,299,299,299 -910,OGC_AmsterdamUMC_biexp,esophagus,200,0.32,0.03,0.00167,0.320069643,0.03004794,0.001668922,0.45,0.45,0.45,0.45,0.45,0.45,0.005847124,0.001095466,2.32E-05,299,299,299 -911,OGC_AmsterdamUMC_biexp,esophagus cont,10,0.32,0.03,0.00167,0.35470548,0.047383348,0.00153198,0.45,0.45,0.45,0.45,0.45,0.45,0.13774994,0.047240904,0.000533878,299,299,299 -912,OGC_AmsterdamUMC_biexp,esophagus cont,30,0.32,0.03,0.00167,0.323201589,0.031580986,0.001655541,0.45,0.45,0.45,0.45,0.45,0.45,0.040307219,0.008935255,0.000158206,299,299,299 -913,OGC_AmsterdamUMC_biexp,esophagus cont,50,0.32,0.03,0.00167,0.321129498,0.03054864,0.001663459,0.45,0.45,0.45,0.45,0.45,0.45,0.023732344,0.004681682,9.37E-05,299,299,299 -914,OGC_AmsterdamUMC_biexp,esophagus cont,100,0.32,0.03,0.00167,0.320280006,0.030151275,0.001667477,0.45,0.45,0.45,0.45,0.45,0.45,0.011733692,0.002219048,4.65E-05,299,299,299 -915,OGC_AmsterdamUMC_biexp,esophagus cont,200,0.32,0.03,0.00167,0.320069643,0.03004794,0.001668922,0.45,0.45,0.45,0.45,0.45,0.45,0.005847124,0.001095466,2.32E-05,299,299,299 -916,OGC_AmsterdamUMC_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.214810538,0.048796357,0.001804213,0.45,0.45,0.45,0.45,0.45,0.45,0.209309135,0.066901565,0.000588336,299,299,299 -917,OGC_AmsterdamUMC_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.146123885,0.037375552,0.002020465,0.45,0.45,0.45,0.45,0.45,0.45,0.110848492,0.048776668,0.000246047,299,299,299 -918,OGC_AmsterdamUMC_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.114091179,0.030627298,0.002084752,0.45,0.45,0.45,0.45,0.45,0.45,0.064994914,0.036675824,0.000145885,299,299,299 -919,OGC_AmsterdamUMC_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.100082483,0.021701285,0.002112334,0.45,0.45,0.45,0.45,0.45,0.45,0.022263982,0.008294895,5.99E-05,299,299,299 -920,OGC_AmsterdamUMC_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.09772011,0.020370443,0.002117738,0.45,0.45,0.45,0.45,0.45,0.45,0.010389839,0.003095148,2.89E-05,299,299,299 -921,OGC_AmsterdamUMC_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.277052826,0.043433581,0.001749879,0.45,0.45,0.45,0.45,0.45,0.45,0.215413209,0.061013276,0.000654646,299,299,299 -922,OGC_AmsterdamUMC_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.185983093,0.03025828,0.002023892,0.45,0.45,0.45,0.45,0.45,0.45,0.103473938,0.037662525,0.000263127,299,299,299 -923,OGC_AmsterdamUMC_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.165498696,0.022498245,0.002070863,0.45,0.45,0.45,0.45,0.45,0.45,0.047793894,0.016610459,0.000133108,299,299,299 -924,OGC_AmsterdamUMC_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.159741158,0.019563545,0.002084548,0.45,0.45,0.45,0.45,0.45,0.45,0.021794517,0.003786605,6.32E-05,299,299,299 -925,OGC_AmsterdamUMC_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.158391248,0.019154665,0.002088293,0.45,0.45,0.45,0.45,0.45,0.45,0.010651431,0.001787004,3.12E-05,299,299,299 -926,OGC_AmsterdamUMC_biexp,Liver,10,0.11,0.1,0.0015,0.168781484,0.099894666,0.001349805,0.45,0.45,0.45,0.45,0.45,0.45,0.122995139,0.077226501,0.000337253,299,299,299 -927,OGC_AmsterdamUMC_biexp,Liver,30,0.11,0.1,0.0015,0.114188732,0.11533162,0.001486326,0.45,0.45,0.45,0.45,0.45,0.45,0.021695942,0.055757947,8.44E-05,299,299,299 -928,OGC_AmsterdamUMC_biexp,Liver,50,0.11,0.1,0.0015,0.111084793,0.110147712,0.001495173,0.45,0.45,0.45,0.45,0.45,0.45,0.011834133,0.039914821,4.88E-05,299,299,299 -929,OGC_AmsterdamUMC_biexp,Liver,100,0.11,0.1,0.0015,0.11023119,0.103476574,0.001498292,0.45,0.45,0.45,0.45,0.45,0.45,0.005888085,0.020515928,2.44E-05,299,299,299 -930,OGC_AmsterdamUMC_biexp,Liver,200,0.11,0.1,0.0015,0.110047078,0.101125031,0.001499297,0.45,0.45,0.45,0.45,0.45,0.45,0.002932092,0.009885468,1.21E-05,299,299,299 -931,OGC_AmsterdamUMC_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.231050935,0.091810912,0.002101565,0.45,0.45,0.45,0.45,0.45,0.45,0.163284575,0.074014343,0.000597824,299,299,299 -932,OGC_AmsterdamUMC_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.154139538,0.093879239,0.002382889,0.45,0.45,0.45,0.45,0.45,0.45,0.02904806,0.045534186,0.000152633,299,299,299 -933,OGC_AmsterdamUMC_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.151153559,0.086098667,0.002393483,0.45,0.45,0.45,0.45,0.45,0.45,0.015671393,0.027210411,8.81E-05,299,299,299 -934,OGC_AmsterdamUMC_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.1502835,0.081740251,0.002397459,0.45,0.45,0.45,0.45,0.45,0.45,0.007706103,0.012594008,4.37E-05,299,299,299 -935,OGC_AmsterdamUMC_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150069319,0.080547345,0.002398908,0.45,0.45,0.45,0.45,0.45,0.45,0.003823755,0.006087445,2.18E-05,299,299,299 -936,OGC_AmsterdamUMC_biexp,myocardium ra,10,0.07,0.07,0.0015,0.140842582,0.081515442,0.001336838,0.45,0.45,0.45,0.45,0.45,0.45,0.133651655,0.07876375,0.000337383,299,299,299 -937,OGC_AmsterdamUMC_biexp,myocardium ra,30,0.07,0.07,0.0015,0.082928404,0.092538561,0.001469706,0.45,0.45,0.45,0.45,0.45,0.45,0.040894147,0.066999733,0.000102347,299,299,299 -938,OGC_AmsterdamUMC_biexp,myocardium ra,50,0.07,0.07,0.0015,0.072923246,0.086543489,0.001491418,0.45,0.45,0.45,0.45,0.45,0.45,0.015543584,0.050860949,5.16E-05,299,299,299 -939,OGC_AmsterdamUMC_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070524438,0.07533186,0.00149772,0.45,0.45,0.45,0.45,0.45,0.45,0.006825149,0.02513924,2.46E-05,299,299,299 -940,OGC_AmsterdamUMC_biexp,myocardium ra,200,0.07,0.07,0.0015,0.070121247,0.071492924,0.001499161,0.45,0.45,0.45,0.45,0.45,0.45,0.003381905,0.011183233,1.23E-05,299,299,299 -941,OGC_AmsterdamUMC_biexp,myocardium RV,10,0.15,0.08,0.0024,0.231050935,0.091810912,0.002101565,0.45,0.45,0.45,0.45,0.45,0.45,0.163284575,0.074014343,0.000597824,299,299,299 -942,OGC_AmsterdamUMC_biexp,myocardium RV,30,0.15,0.08,0.0024,0.154139538,0.093879239,0.002382889,0.45,0.45,0.45,0.45,0.45,0.45,0.02904806,0.045534186,0.000152633,299,299,299 -943,OGC_AmsterdamUMC_biexp,myocardium RV,50,0.15,0.08,0.0024,0.151153559,0.086098667,0.002393483,0.45,0.45,0.45,0.45,0.45,0.45,0.015671393,0.027210411,8.81E-05,299,299,299 -944,OGC_AmsterdamUMC_biexp,myocardium RV,100,0.15,0.08,0.0024,0.1502835,0.081740251,0.002397459,0.45,0.45,0.45,0.45,0.45,0.45,0.007706103,0.012594008,4.37E-05,299,299,299 -945,OGC_AmsterdamUMC_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150069319,0.080547345,0.002398908,0.45,0.45,0.45,0.45,0.45,0.45,0.003823755,0.006087445,2.18E-05,299,299,299 -946,OGC_AmsterdamUMC_biexp,pancreas,10,0.15,0.01,0.0013,0.184853536,0.047437871,0.001209842,0.45,0.45,0.45,0.45,0.45,0.45,0.161104188,0.066970242,0.000392891,299,299,299 -947,OGC_AmsterdamUMC_biexp,pancreas,30,0.15,0.01,0.0013,0.175898715,0.021364898,0.001256118,0.45,0.45,0.45,0.45,0.45,0.45,0.095961761,0.037269901,0.000184638,299,299,299 -948,OGC_AmsterdamUMC_biexp,pancreas,50,0.15,0.01,0.0013,0.166798143,0.013933985,0.001272394,0.45,0.45,0.45,0.45,0.45,0.45,0.068168734,0.02042812,0.00012557,299,299,299 -949,OGC_AmsterdamUMC_biexp,pancreas,100,0.15,0.01,0.0013,0.155050448,0.010314872,0.001290979,0.45,0.45,0.45,0.45,0.45,0.45,0.031969358,0.002475223,5.98E-05,299,299,299 -950,OGC_AmsterdamUMC_biexp,pancreas,200,0.15,0.01,0.0013,0.151155511,0.010077165,0.001297589,0.45,0.45,0.45,0.45,0.45,0.45,0.01486592,0.001141319,2.85E-05,299,299,299 -951,OGC_AmsterdamUMC_biexp,pericardium,10,0.07,0.01,0.003,0.262616476,0.030862518,0.00230294,0.45,0.45,0.45,0.45,0.45,0.45,0.288611722,0.05572886,0.000959963,299,299,299 -952,OGC_AmsterdamUMC_biexp,pericardium,30,0.07,0.01,0.003,0.171752737,0.02581912,0.002799011,0.45,0.45,0.45,0.45,0.45,0.45,0.188837545,0.047356901,0.000422024,299,299,299 -953,OGC_AmsterdamUMC_biexp,pericardium,50,0.07,0.01,0.003,0.154585153,0.026970109,0.002863767,0.45,0.45,0.45,0.45,0.45,0.45,0.156425794,0.048964477,0.000304247,299,299,299 -954,OGC_AmsterdamUMC_biexp,pericardium,100,0.07,0.01,0.003,0.130337929,0.022102308,0.00291709,0.45,0.45,0.45,0.45,0.45,0.45,0.119422596,0.039037367,0.000200857,299,299,299 -955,OGC_AmsterdamUMC_biexp,pericardium,200,0.07,0.01,0.003,0.098112492,0.013633683,0.002962208,0.45,0.45,0.45,0.45,0.45,0.45,0.074974965,0.020367551,0.000119613,299,299,299 -956,OGC_AmsterdamUMC_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.277052826,0.043433581,0.001749879,0.45,0.45,0.45,0.45,0.45,0.45,0.215413209,0.061013276,0.000654646,299,299,299 -957,OGC_AmsterdamUMC_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.185983093,0.03025828,0.002023892,0.45,0.45,0.45,0.45,0.45,0.45,0.103473938,0.037662525,0.000263127,299,299,299 -958,OGC_AmsterdamUMC_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.165498696,0.022498245,0.002070863,0.45,0.45,0.45,0.45,0.45,0.45,0.047793894,0.016610459,0.000133108,299,299,299 -959,OGC_AmsterdamUMC_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.159741158,0.019563545,0.002084548,0.45,0.45,0.45,0.45,0.45,0.45,0.021794517,0.003786605,6.32E-05,299,299,299 -960,OGC_AmsterdamUMC_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.158391248,0.019154665,0.002088293,0.45,0.45,0.45,0.45,0.45,0.45,0.010651431,0.001787004,3.12E-05,299,299,299 -961,OGC_AmsterdamUMC_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.214810538,0.048796357,0.001804213,0.45,0.45,0.45,0.45,0.45,0.45,0.209309135,0.066901565,0.000588336,299,299,299 -962,OGC_AmsterdamUMC_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.146123885,0.037375552,0.002020465,0.45,0.45,0.45,0.45,0.45,0.45,0.110848492,0.048776668,0.000246047,299,299,299 -963,OGC_AmsterdamUMC_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.114091179,0.030627298,0.002084752,0.45,0.45,0.45,0.45,0.45,0.45,0.064994914,0.036675824,0.000145885,299,299,299 -964,OGC_AmsterdamUMC_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.100082483,0.021701285,0.002112334,0.45,0.45,0.45,0.45,0.45,0.45,0.022263982,0.008294895,5.99E-05,299,299,299 -965,OGC_AmsterdamUMC_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.09772011,0.020370443,0.002117738,0.45,0.45,0.45,0.45,0.45,0.45,0.010389839,0.003095148,2.89E-05,299,299,299 -966,OGC_AmsterdamUMC_biexp,small intestine,10,0.69,0.029,0.00131,0.694830688,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.097800779,0.017042154,0.000744262,299,299,299 -967,OGC_AmsterdamUMC_biexp,small intestine,30,0.69,0.029,0.00131,0.68957085,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833214,0.003283099,0.000279782,299,299,299 -968,OGC_AmsterdamUMC_biexp,small intestine,50,0.69,0.029,0.00131,0.689825694,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 -969,OGC_AmsterdamUMC_biexp,small intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663163,0.00093864,8.27E-05,299,299,299 -970,OGC_AmsterdamUMC_biexp,small intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 -971,OGC_AmsterdamUMC_biexp,spleen,10,0.2,0.03,0.0013,0.248565346,0.056879059,0.001171091,0.45,0.45,0.45,0.45,0.45,0.45,0.138108153,0.061428407,0.000385049,299,299,299 -972,OGC_AmsterdamUMC_biexp,spleen,30,0.2,0.03,0.0013,0.204799212,0.034403223,0.001285375,0.45,0.45,0.45,0.45,0.45,0.45,0.03738895,0.019693299,0.000109827,299,299,299 -973,OGC_AmsterdamUMC_biexp,spleen,50,0.2,0.03,0.0013,0.201678468,0.031242098,0.001293839,0.45,0.45,0.45,0.45,0.45,0.45,0.021454673,0.007752376,6.41E-05,299,299,299 -974,OGC_AmsterdamUMC_biexp,spleen,100,0.2,0.03,0.0013,0.200407474,0.030310793,0.001297851,0.45,0.45,0.45,0.45,0.45,0.45,0.010471959,0.003428525,3.16E-05,299,299,299 -975,OGC_AmsterdamUMC_biexp,spleen,200,0.2,0.03,0.0013,0.200098828,0.030092008,0.001299152,0.45,0.45,0.45,0.45,0.45,0.45,0.00519381,0.001669077,1.57E-05,299,299,299 -976,OGC_AmsterdamUMC_biexp,st wall,10,0.3,0.012,0.0015,0.361593394,0.032332875,0.001301322,0.45,0.45,0.45,0.45,0.45,0.45,0.208350215,0.051434222,0.000612312,299,299,299 -977,OGC_AmsterdamUMC_biexp,st wall,30,0.3,0.012,0.0015,0.316719659,0.013702255,0.001453591,0.45,0.45,0.45,0.45,0.45,0.45,0.097052946,0.008564855,0.000254687,299,299,299 -978,OGC_AmsterdamUMC_biexp,st wall,50,0.3,0.012,0.0015,0.305193534,0.01243237,0.001484366,0.45,0.45,0.45,0.45,0.45,0.45,0.05361376,0.002822989,0.000140362,299,299,299 -979,OGC_AmsterdamUMC_biexp,st wall,100,0.3,0.012,0.0015,0.301119332,0.012113594,0.001495716,0.45,0.45,0.45,0.45,0.45,0.45,0.026184332,0.001290746,6.86E-05,299,299,299 -980,OGC_AmsterdamUMC_biexp,st wall,200,0.3,0.012,0.0015,0.300225825,0.012033453,0.001498642,0.45,0.45,0.45,0.45,0.45,0.45,0.013026285,0.00063034,3.41E-05,299,299,299 -981,OGC_AmsterdamUMC_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.694830689,0.032624986,0.001146551,0.45,0.45,0.45,0.45,0.45,0.45,0.097800779,0.017042154,0.000744262,299,299,299 -982,OGC_AmsterdamUMC_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.689570851,0.029384683,0.001300996,0.45,0.45,0.45,0.45,0.45,0.45,0.035833214,0.003283099,0.000279782,299,299,299 -983,OGC_AmsterdamUMC_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.689825693,0.029150098,0.001304325,0.45,0.45,0.45,0.45,0.45,0.45,0.021388194,0.001902483,0.000166083,299,299,299 -984,OGC_AmsterdamUMC_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.689946565,0.029046779,0.001306996,0.45,0.45,0.45,0.45,0.45,0.45,0.010663162,0.00093864,8.27E-05,299,299,299 -985,OGC_AmsterdamUMC_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.689981335,0.029016532,0.001308457,0.45,0.45,0.45,0.45,0.45,0.45,0.005327046,0.000467722,4.13E-05,299,299,299 -986,OGC_AmsterdamUMC_biexp,Vein,10,1,0.1,0.003,0.916551204,0.122369012,0.000273067,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191,0.02343304,0.000525988,299,299,299 -987,OGC_AmsterdamUMC_biexp,Vein,30,1,0.1,0.003,0.973161261,0.106546698,0.000228131,0.45,0.45,0.45,0.45,0.45,0.45,0.007828592,0.006457829,0.000431214,299,299,299 -988,OGC_AmsterdamUMC_biexp,Vein,50,1,0.1,0.003,0.984189738,0.103791606,0.000208198,0.45,0.45,0.45,0.45,0.45,0.45,0.004683034,0.003752787,0.000406133,299,299,299 -989,OGC_AmsterdamUMC_biexp,Vein,100,1,0.1,0.003,0.992359928,0.101811171,0.000175728,0.45,0.45,0.45,0.45,0.45,0.45,0.002296024,0.001835208,0.000373115,299,299,299 -990,OGC_AmsterdamUMC_biexp,Vein,200,1,0.1,0.003,0.996323154,0.100873285,0.000149761,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622,0.000908483,0.000352386,299,299,299 -991,OGC_AmsterdamUMC_biexp_segmented,Artery,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.033859599,0.000876167,299,299,299 -992,OGC_AmsterdamUMC_biexp_segmented,Artery,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 -993,OGC_AmsterdamUMC_biexp_segmented,Artery,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 -994,OGC_AmsterdamUMC_biexp_segmented,Artery,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 -995,OGC_AmsterdamUMC_biexp_segmented,Artery,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 -996,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,10,0.69,0.029,0.00131,0.66103411,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 -997,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 -998,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 -999,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 -1000,OGC_AmsterdamUMC_biexp_segmented,asc lower intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 -1001,OGC_AmsterdamUMC_biexp_segmented,Blood RA,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.033859599,0.000876167,299,299,299 -1002,OGC_AmsterdamUMC_biexp_segmented,Blood RA,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 -1003,OGC_AmsterdamUMC_biexp_segmented,Blood RA,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 -1004,OGC_AmsterdamUMC_biexp_segmented,Blood RA,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 -1005,OGC_AmsterdamUMC_biexp_segmented,Blood RA,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 -1006,OGC_AmsterdamUMC_biexp_segmented,Blood RV,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.0338596,0.000876167,299,299,299 -1007,OGC_AmsterdamUMC_biexp_segmented,Blood RV,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 -1008,OGC_AmsterdamUMC_biexp_segmented,Blood RV,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 -1009,OGC_AmsterdamUMC_biexp_segmented,Blood RV,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 -1010,OGC_AmsterdamUMC_biexp_segmented,Blood RV,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 -1011,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,10,0.69,0.029,0.00131,0.66103411,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 -1012,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 -1013,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 -1014,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 -1015,OGC_AmsterdamUMC_biexp_segmented,desc lower intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 -1016,OGC_AmsterdamUMC_biexp_segmented,esophagus,10,0.32,0.03,0.00167,0.299578687,0.132769824,0.001689808,0.45,0.45,0.45,0.45,0.45,0.45,0.149762289,0.329849865,0.000548091,299,299,299 -1017,OGC_AmsterdamUMC_biexp_segmented,esophagus,30,0.32,0.03,0.00167,0.313170236,0.051620312,0.001681955,0.45,0.45,0.45,0.45,0.45,0.45,0.048629007,0.015010201,0.000178975,299,299,299 -1018,OGC_AmsterdamUMC_biexp_segmented,esophagus,50,0.32,0.03,0.00167,0.314888479,0.050082144,0.001679983,0.45,0.45,0.45,0.45,0.45,0.45,0.02898245,0.000997702,0.000106702,299,299,299 -1019,OGC_AmsterdamUMC_biexp_segmented,esophagus,100,0.32,0.03,0.00167,0.315755921,0.050000002,0.001679529,0.45,0.45,0.45,0.45,0.45,0.45,0.014440569,4.49E-09,5.32E-05,299,299,299 -1020,OGC_AmsterdamUMC_biexp_segmented,esophagus,200,0.32,0.03,0.00167,0.316057259,0.05,0.001679626,0.45,0.45,0.45,0.45,0.45,0.45,0.007211014,1.36E-09,2.65E-05,299,299,299 -1021,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,10,0.32,0.03,0.00167,0.299578687,0.132769824,0.001689808,0.45,0.45,0.45,0.45,0.45,0.45,0.149762289,0.329849865,0.000548091,299,299,299 -1022,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,30,0.32,0.03,0.00167,0.313170236,0.051620312,0.001681955,0.45,0.45,0.45,0.45,0.45,0.45,0.048629007,0.015010201,0.000178975,299,299,299 -1023,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,50,0.32,0.03,0.00167,0.314888479,0.050082144,0.001679983,0.45,0.45,0.45,0.45,0.45,0.45,0.02898245,0.000997702,0.000106702,299,299,299 -1024,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,100,0.32,0.03,0.00167,0.315755921,0.050000002,0.001679529,0.45,0.45,0.45,0.45,0.45,0.45,0.014440569,4.49E-09,5.32E-05,299,299,299 -1025,OGC_AmsterdamUMC_biexp_segmented,esophagus cont,200,0.32,0.03,0.00167,0.316057259,0.05,0.001679626,0.45,0.45,0.45,0.45,0.45,0.45,0.007211014,1.36E-09,2.65E-05,299,299,299 -1026,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,10,0.097,0.02,0.00212,0.077028926,0.290009002,0.002128833,0.45,0.45,0.45,0.45,0.45,0.45,0.166304018,0.603644499,0.000516168,299,299,299 -1027,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,30,0.097,0.02,0.00212,0.087000097,0.151929914,0.00213593,0.45,0.45,0.45,0.45,0.45,0.45,0.057497641,0.364025908,0.000176993,299,299,299 -1028,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,50,0.097,0.02,0.00212,0.088978004,0.061805559,0.002133876,0.45,0.45,0.45,0.45,0.45,0.45,0.034284374,0.081859742,0.000105633,299,299,299 -1029,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,100,0.097,0.02,0.00212,0.089983033,0.05135883,0.002133335,0.45,0.45,0.45,0.45,0.45,0.45,0.017084034,0.017394739,5.27E-05,299,299,299 -1030,OGC_AmsterdamUMC_biexp_segmented,Left kidney cortex,200,0.097,0.02,0.00212,0.090334462,0.050000004,0.002133382,0.45,0.45,0.45,0.45,0.45,0.45,0.008530891,1.85E-08,2.63E-05,299,299,299 -1031,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,10,0.158,0.019,0.00209,0.131137655,0.239292737,0.002112941,0.45,0.45,0.45,0.45,0.45,0.45,0.168355074,0.518065731,0.000552808,299,299,299 -1032,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,30,0.158,0.019,0.00209,0.142171495,0.069512513,0.002120047,0.45,0.45,0.45,0.45,0.45,0.45,0.057338981,0.134611156,0.000187357,299,299,299 -1033,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,50,0.158,0.019,0.00209,0.14423045,0.060273334,0.002117675,0.45,0.45,0.45,0.45,0.45,0.45,0.034167556,0.123416844,0.000111754,299,299,299 -1034,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,100,0.158,0.019,0.00209,0.145267407,0.050000004,0.002117022,0.45,0.45,0.45,0.45,0.45,0.45,0.0170205,2.79E-08,5.57E-05,299,299,299 -1035,OGC_AmsterdamUMC_biexp_segmented,left kidney medulla,200,0.158,0.019,0.00209,0.145626005,0.050000001,0.002117053,0.45,0.45,0.45,0.45,0.45,0.45,0.008498287,3.38E-09,2.78E-05,299,299,299 -1036,OGC_AmsterdamUMC_biexp_segmented,Liver,10,0.11,0.1,0.0015,0.09723218,0.355598434,0.001508591,0.45,0.45,0.45,0.45,0.45,0.45,0.134839809,0.63250244,0.000367328,299,299,299 -1037,OGC_AmsterdamUMC_biexp_segmented,Liver,30,0.11,0.1,0.0015,0.107694887,0.226173724,0.001500169,0.45,0.45,0.45,0.45,0.45,0.45,0.045147271,0.380098791,0.000121951,299,299,299 -1038,OGC_AmsterdamUMC_biexp_segmented,Liver,50,0.11,0.1,0.0015,0.108918955,0.137632134,0.001499576,0.45,0.45,0.45,0.45,0.45,0.45,0.026992577,0.173220332,7.29E-05,299,299,299 -1039,OGC_AmsterdamUMC_biexp_segmented,Liver,100,0.11,0.1,0.0015,0.109571577,0.107280004,0.001499593,0.45,0.45,0.45,0.45,0.45,0.45,0.013470079,0.036553592,3.64E-05,299,299,299 -1040,OGC_AmsterdamUMC_biexp_segmented,Liver,200,0.11,0.1,0.0015,0.109813662,0.102101719,0.001499748,0.45,0.45,0.45,0.45,0.45,0.45,0.006729984,0.015737208,1.82E-05,299,299,299 -1041,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,10,0.15,0.08,0.0024,0.138704739,0.29533039,0.002365852,0.45,0.45,0.45,0.45,0.45,0.45,0.183735146,0.57405074,0.000643158,299,299,299 -1042,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,30,0.15,0.08,0.0024,0.14560428,0.179147801,0.002403948,0.45,0.45,0.45,0.45,0.45,0.45,0.063461485,0.317296307,0.000220884,299,299,299 -1043,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,50,0.15,0.08,0.0024,0.148050214,0.111074471,0.002400847,0.45,0.45,0.45,0.45,0.45,0.45,0.037761489,0.164533235,0.00013167,299,299,299 -1044,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,100,0.15,0.08,0.0024,0.149292946,0.085364755,0.00239979,0.45,0.45,0.45,0.45,0.45,0.45,0.018795813,0.027258327,6.56E-05,299,299,299 -1045,OGC_AmsterdamUMC_biexp_segmented,Myocardium LV,200,0.15,0.08,0.0024,0.14971243,0.081447212,0.002399738,0.45,0.45,0.45,0.45,0.45,0.45,0.009381883,0.011367113,3.28E-05,299,299,299 -1046,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,10,0.07,0.07,0.0015,0.057893689,0.331287936,0.001507457,0.45,0.45,0.45,0.45,0.45,0.45,0.133663508,0.620007223,0.000349562,299,299,299 -1047,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,30,0.07,0.07,0.0015,0.067747563,0.252860532,0.001500075,0.45,0.45,0.45,0.45,0.45,0.45,0.045127732,0.462488933,0.000116654,299,299,299 -1048,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,50,0.07,0.07,0.0015,0.068936525,0.15322108,0.001499565,0.45,0.45,0.45,0.45,0.45,0.45,0.026987481,0.288290131,6.98E-05,299,299,299 -1049,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,100,0.07,0.07,0.0015,0.069574598,0.085183261,0.001499605,0.45,0.45,0.45,0.45,0.45,0.45,0.013469157,0.05742761,3.48E-05,299,299,299 -1050,OGC_AmsterdamUMC_biexp_segmented,myocardium ra,200,0.07,0.07,0.0015,0.069813077,0.073243749,0.00149976,0.45,0.45,0.45,0.45,0.45,0.45,0.006729801,0.017659573,1.74E-05,299,299,299 -1051,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,10,0.15,0.08,0.0024,0.138704739,0.29533039,0.002365852,0.45,0.45,0.45,0.45,0.45,0.45,0.183735146,0.57405074,0.000643158,299,299,299 -1052,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,30,0.15,0.08,0.0024,0.14560428,0.179147801,0.002403948,0.45,0.45,0.45,0.45,0.45,0.45,0.063461485,0.317296307,0.000220884,299,299,299 -1053,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,50,0.15,0.08,0.0024,0.148050214,0.111074471,0.002400847,0.45,0.45,0.45,0.45,0.45,0.45,0.037761489,0.164533235,0.00013167,299,299,299 -1054,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,100,0.15,0.08,0.0024,0.149292946,0.085364755,0.00239979,0.45,0.45,0.45,0.45,0.45,0.45,0.018795813,0.027258327,6.56E-05,299,299,299 -1055,OGC_AmsterdamUMC_biexp_segmented,myocardium RV,200,0.15,0.08,0.0024,0.14971243,0.081447212,0.002399738,0.45,0.45,0.45,0.45,0.45,0.45,0.009381883,0.011367113,3.28E-05,299,299,299 -1056,OGC_AmsterdamUMC_biexp_segmented,pancreas,10,0.15,0.01,0.0013,0.100244765,0.266741521,0.001375481,0.45,0.45,0.45,0.45,0.45,0.45,0.12991239,0.562164106,0.000344117,299,299,299 -1057,OGC_AmsterdamUMC_biexp_segmented,pancreas,30,0.15,0.01,0.0013,0.110360761,0.066171672,0.001366674,0.45,0.45,0.45,0.45,0.45,0.45,0.043311017,0.14078967,0.000113721,299,299,299 -1058,OGC_AmsterdamUMC_biexp_segmented,pancreas,50,0.15,0.01,0.0013,0.111480584,0.053970504,0.001366249,0.45,0.45,0.45,0.45,0.45,0.45,0.025904067,0.047942925,6.80E-05,299,299,299 -1059,OGC_AmsterdamUMC_biexp_segmented,pancreas,100,0.15,0.01,0.0013,0.112080764,0.050000007,0.001366329,0.45,0.45,0.45,0.45,0.45,0.45,0.012929485,1.70E-08,3.39E-05,299,299,299 -1060,OGC_AmsterdamUMC_biexp_segmented,pancreas,200,0.15,0.01,0.0013,0.112304748,0.050000001,0.001366495,0.45,0.45,0.45,0.45,0.45,0.45,0.006460402,6.33E-09,1.70E-05,299,299,299 -1061,OGC_AmsterdamUMC_biexp_segmented,pericardium,10,0.07,0.01,0.003,0.052038305,0.178714631,0.002908101,0.45,0.45,0.45,0.45,0.45,0.45,0.209231801,0.422831402,0.00073985,299,299,299 -1062,OGC_AmsterdamUMC_biexp_segmented,pericardium,30,0.07,0.01,0.003,0.034458203,0.193439082,0.003063298,0.45,0.45,0.45,0.45,0.45,0.45,0.080479568,0.466549616,0.00027972,299,299,299 -1063,OGC_AmsterdamUMC_biexp_segmented,pericardium,50,0.07,0.01,0.003,0.037086059,0.183326259,0.003062236,0.45,0.45,0.45,0.45,0.45,0.45,0.047965549,0.44236333,0.000167661,299,299,299 -1064,OGC_AmsterdamUMC_biexp_segmented,pericardium,100,0.07,0.01,0.003,0.038748507,0.106024068,0.003060709,0.45,0.45,0.45,0.45,0.45,0.45,0.023849433,0.267496956,8.35E-05,299,299,299 -1065,OGC_AmsterdamUMC_biexp_segmented,pericardium,200,0.07,0.01,0.003,0.039300842,0.050013545,0.003060532,0.45,0.45,0.45,0.45,0.45,0.45,0.011899777,0.000219339,4.17E-05,299,299,299 -1066,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,10,0.158,0.019,0.00209,0.131137655,0.239292737,0.002112941,0.45,0.45,0.45,0.45,0.45,0.45,0.168355074,0.518065731,0.000552808,299,299,299 -1067,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,30,0.158,0.019,0.00209,0.142171495,0.069512513,0.002120047,0.45,0.45,0.45,0.45,0.45,0.45,0.057338981,0.134611156,0.000187357,299,299,299 -1068,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,50,0.158,0.019,0.00209,0.14423045,0.060273334,0.002117675,0.45,0.45,0.45,0.45,0.45,0.45,0.034167556,0.123416844,0.000111754,299,299,299 -1069,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,100,0.158,0.019,0.00209,0.145267407,0.050000004,0.002117022,0.45,0.45,0.45,0.45,0.45,0.45,0.0170205,2.79E-08,5.57E-05,299,299,299 -1070,OGC_AmsterdamUMC_biexp_segmented,right kidney medulla,200,0.158,0.019,0.00209,0.145626005,0.050000001,0.002117053,0.45,0.45,0.45,0.45,0.45,0.45,0.008498287,3.38E-09,2.78E-05,299,299,299 -1071,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,10,0.097,0.02,0.00212,0.077028926,0.290009002,0.002128833,0.45,0.45,0.45,0.45,0.45,0.45,0.166304018,0.603644499,0.000516168,299,299,299 -1072,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,30,0.097,0.02,0.00212,0.087000097,0.151929914,0.00213593,0.45,0.45,0.45,0.45,0.45,0.45,0.057497641,0.364025908,0.000176993,299,299,299 -1073,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,50,0.097,0.02,0.00212,0.088978004,0.061805559,0.002133876,0.45,0.45,0.45,0.45,0.45,0.45,0.034284374,0.081859742,0.000105633,299,299,299 -1074,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,100,0.097,0.02,0.00212,0.089983033,0.05135883,0.002133335,0.45,0.45,0.45,0.45,0.45,0.45,0.017084034,0.017394739,5.27E-05,299,299,299 -1075,OGC_AmsterdamUMC_biexp_segmented,Right kydney cortex,200,0.097,0.02,0.00212,0.090334462,0.050000004,0.002133382,0.45,0.45,0.45,0.45,0.45,0.45,0.008530891,1.85E-08,2.63E-05,299,299,299 -1076,OGC_AmsterdamUMC_biexp_segmented,small intestine,10,0.69,0.029,0.00131,0.66103411,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 -1077,OGC_AmsterdamUMC_biexp_segmented,small intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 -1078,OGC_AmsterdamUMC_biexp_segmented,small intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 -1079,OGC_AmsterdamUMC_biexp_segmented,small intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 -1080,OGC_AmsterdamUMC_biexp_segmented,small intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 -1081,OGC_AmsterdamUMC_biexp_segmented,spleen,10,0.2,0.03,0.0013,0.185203923,0.209255851,0.001314366,0.45,0.45,0.45,0.45,0.45,0.45,0.128284621,0.437950501,0.000366856,299,299,299 -1082,OGC_AmsterdamUMC_biexp_segmented,spleen,30,0.2,0.03,0.0013,0.195921638,0.057079115,0.001304087,0.45,0.45,0.45,0.45,0.45,0.45,0.041988476,0.053168548,0.000119667,299,299,299 -1083,OGC_AmsterdamUMC_biexp_segmented,spleen,50,0.2,0.03,0.0013,0.197041413,0.050489372,0.00130363,0.45,0.45,0.45,0.45,0.45,0.45,0.025108237,0.003839602,7.15E-05,299,299,299 -1084,OGC_AmsterdamUMC_biexp_segmented,spleen,100,0.2,0.03,0.0013,0.197638649,0.05000001,0.001303715,0.45,0.45,0.45,0.45,0.45,0.45,0.012531224,1.91E-08,3.57E-05,299,299,299 -1085,OGC_AmsterdamUMC_biexp_segmented,spleen,200,0.2,0.03,0.0013,0.197860312,0.05000001,0.001303893,0.45,0.45,0.45,0.45,0.45,0.45,0.00626126,1.66E-08,1.78E-05,299,299,299 -1086,OGC_AmsterdamUMC_biexp_segmented,st wall,10,0.3,0.012,0.0015,0.224968564,0.152728411,0.001647922,0.45,0.45,0.45,0.45,0.45,0.45,0.147842247,0.375057604,0.000489535,299,299,299 -1087,OGC_AmsterdamUMC_biexp_segmented,st wall,30,0.3,0.012,0.0015,0.238787521,0.052350235,0.001633903,0.45,0.45,0.45,0.45,0.45,0.45,0.048525317,0.030964857,0.000160158,299,299,299 -1088,OGC_AmsterdamUMC_biexp_segmented,st wall,50,0.3,0.012,0.0015,0.240378264,0.05,0.001632374,0.45,0.45,0.45,0.45,0.45,0.45,0.028947438,2.28E-09,9.56E-05,299,299,299 -1089,OGC_AmsterdamUMC_biexp_segmented,st wall,100,0.3,0.012,0.0015,0.241188416,0.05,0.001632071,0.45,0.45,0.45,0.45,0.45,0.45,0.014429658,2.55E-11,4.76E-05,299,299,299 -1090,OGC_AmsterdamUMC_biexp_segmented,st wall,200,0.3,0.012,0.0015,0.241472822,0.05,0.001632185,0.45,0.45,0.45,0.45,0.45,0.45,0.007206673,2.69E-12,2.38E-05,299,299,299 -1091,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,10,0.69,0.029,0.00131,0.661034109,0.051953739,0.001310677,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359,0.007465918,0.000965453,299,299,299 -1092,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,30,0.69,0.029,0.00131,0.677766188,0.050010715,0.001362865,0.45,0.45,0.45,0.45,0.45,0.45,0.044264353,0.00018559,0.00032279,299,299,299 -1093,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,50,0.69,0.029,0.00131,0.680228687,0.05,0.001355648,0.45,0.45,0.45,0.45,0.45,0.45,0.026031792,1.40E-10,0.000190041,299,299,299 -1094,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,100,0.69,0.029,0.00131,0.681374427,0.05,0.00135335,0.45,0.45,0.45,0.45,0.45,0.45,0.012899184,1.01E-12,9.41E-05,299,299,299 -1095,OGC_AmsterdamUMC_biexp_segmented,trans lower intestine,200,0.69,0.029,0.00131,0.681731199,0.05,0.001353196,0.45,0.45,0.45,0.45,0.45,0.45,0.006431338,1.04E-13,4.69E-05,299,299,299 -1096,OGC_AmsterdamUMC_biexp_segmented,Vein,10,1,0.1,0.003,0.891876529,0.130371771,0.00053274,0.45,0.45,0.45,0.45,0.45,0.45,0.060332921,0.0338596,0.000876167,299,299,299 -1097,OGC_AmsterdamUMC_biexp_segmented,Vein,30,1,0.1,0.003,0.963958649,0.108709609,0.000532747,0.45,0.45,0.45,0.45,0.45,0.45,0.020111686,0.008140872,0.000876181,299,299,299 -1098,OGC_AmsterdamUMC_biexp_segmented,Vein,50,1,0.1,0.003,0.978169217,0.105139058,0.000549427,0.45,0.45,0.45,0.45,0.45,0.45,0.012552616,0.004689817,0.000912814,299,299,299 -1099,OGC_AmsterdamUMC_biexp_segmented,Vein,100,1,0.1,0.003,0.989084383,0.102522061,0.000549477,0.45,0.45,0.45,0.45,0.45,0.45,0.006276406,0.002262592,0.000912856,299,299,299 -1100,OGC_AmsterdamUMC_biexp_segmented,Vein,200,1,0.1,0.003,0.994541921,0.101255043,0.00054957,0.45,0.45,0.45,0.45,0.45,0.45,0.003138584,0.001112354,0.00091301,299,299,299 -1101,PV_MUMC_biexp,Artery,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 -1102,PV_MUMC_biexp,Artery,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 -1103,PV_MUMC_biexp,Artery,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 -1104,PV_MUMC_biexp,Artery,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 -1105,PV_MUMC_biexp,Artery,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 -1106,PV_MUMC_biexp,asc lower intestine,10,0.69,0.029,0.00131,0.691470348,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 -1107,PV_MUMC_biexp,asc lower intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 -1108,PV_MUMC_biexp,asc lower intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 -1109,PV_MUMC_biexp,asc lower intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 -1110,PV_MUMC_biexp,asc lower intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 -1111,PV_MUMC_biexp,Blood RA,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 -1112,PV_MUMC_biexp,Blood RA,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 -1113,PV_MUMC_biexp,Blood RA,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 -1114,PV_MUMC_biexp,Blood RA,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 -1115,PV_MUMC_biexp,Blood RA,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 -1116,PV_MUMC_biexp,Blood RV,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 -1117,PV_MUMC_biexp,Blood RV,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 -1118,PV_MUMC_biexp,Blood RV,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 -1119,PV_MUMC_biexp,Blood RV,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 -1120,PV_MUMC_biexp,Blood RV,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 -1121,PV_MUMC_biexp,desc lower intestine,10,0.69,0.029,0.00131,0.691470348,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 -1122,PV_MUMC_biexp,desc lower intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 -1123,PV_MUMC_biexp,desc lower intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 -1124,PV_MUMC_biexp,desc lower intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 -1125,PV_MUMC_biexp,desc lower intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 -1126,PV_MUMC_biexp,esophagus,10,0.32,0.03,0.00167,0.341951257,0.04430821,0.001651641,0.45,0.45,0.45,0.45,0.45,0.45,0.136646889,0.042223847,0.000613121,299,299,299 -1127,PV_MUMC_biexp,esophagus,30,0.32,0.03,0.00167,0.321738,0.031890112,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.051232465,0.010007152,0.000225182,299,299,299 -1128,PV_MUMC_biexp,esophagus,50,0.32,0.03,0.00167,0.320438404,0.030688162,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030827201,0.005360296,0.000134201,299,299,299 -1129,PV_MUMC_biexp,esophagus,100,0.32,0.03,0.00167,0.31990155,0.030218689,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015421719,0.002601733,6.69E-05,299,299,299 -1130,PV_MUMC_biexp,esophagus,200,0.32,0.03,0.00167,0.31981781,0.030087271,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007712744,0.001293459,3.34E-05,299,299,299 -1131,PV_MUMC_biexp,esophagus cont,10,0.32,0.03,0.00167,0.341951257,0.04430821,0.001651641,0.45,0.45,0.45,0.45,0.45,0.45,0.136646889,0.042223847,0.000613121,299,299,299 -1132,PV_MUMC_biexp,esophagus cont,30,0.32,0.03,0.00167,0.321738,0.031890112,0.001675894,0.45,0.45,0.45,0.45,0.45,0.45,0.051232465,0.010007152,0.000225182,299,299,299 -1133,PV_MUMC_biexp,esophagus cont,50,0.32,0.03,0.00167,0.320438404,0.030688162,0.001672058,0.45,0.45,0.45,0.45,0.45,0.45,0.030827201,0.005360296,0.000134201,299,299,299 -1134,PV_MUMC_biexp,esophagus cont,100,0.32,0.03,0.00167,0.31990155,0.030218689,0.001670699,0.45,0.45,0.45,0.45,0.45,0.45,0.015421719,0.002601733,6.69E-05,299,299,299 -1135,PV_MUMC_biexp,esophagus cont,200,0.32,0.03,0.00167,0.31981781,0.030087271,0.001670496,0.45,0.45,0.45,0.45,0.45,0.45,0.007712744,0.001293459,3.34E-05,299,299,299 -1136,PV_MUMC_biexp,Left kidney cortex,10,0.097,0.02,0.00212,0.220417076,0.057102977,0.001961426,0.45,0.45,0.45,0.45,0.45,0.45,0.227476268,0.072947836,0.000476707,299,299,299 -1137,PV_MUMC_biexp,Left kidney cortex,30,0.097,0.02,0.00212,0.111610837,0.039670631,0.0021113,0.45,0.45,0.45,0.45,0.45,0.45,0.06881525,0.049597156,0.000201429,299,299,299 -1138,PV_MUMC_biexp,Left kidney cortex,50,0.097,0.02,0.00212,0.102266477,0.029737913,0.002122102,0.45,0.45,0.45,0.45,0.45,0.45,0.043951371,0.032782356,0.000131843,299,299,299 -1139,PV_MUMC_biexp,Left kidney cortex,100,0.097,0.02,0.00212,0.097693503,0.022148615,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.02285192,0.008359825,6.85E-05,299,299,299 -1140,PV_MUMC_biexp,Left kidney cortex,200,0.097,0.02,0.00212,0.096538214,0.020688279,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011531978,0.003463219,3.42E-05,299,299,299 -1141,PV_MUMC_biexp,left kidney medulla,10,0.158,0.019,0.00209,0.241203863,0.050991184,0.001967789,0.45,0.45,0.45,0.45,0.45,0.45,0.193488009,0.065719199,0.000536034,299,299,299 -1142,PV_MUMC_biexp,left kidney medulla,30,0.158,0.019,0.00209,0.16481485,0.029125114,0.002096852,0.45,0.45,0.45,0.45,0.45,0.45,0.071248939,0.033229687,0.000229607,299,299,299 -1143,PV_MUMC_biexp,left kidney medulla,50,0.158,0.019,0.00209,0.159241671,0.022967725,0.002097486,0.45,0.45,0.45,0.45,0.45,0.45,0.045203648,0.016330243,0.000143397,299,299,299 -1144,PV_MUMC_biexp,left kidney medulla,100,0.158,0.019,0.00209,0.156984699,0.019956188,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.023147928,0.004158135,7.21E-05,299,299,299 -1145,PV_MUMC_biexp,left kidney medulla,200,0.158,0.019,0.00209,0.156461547,0.019438129,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011692189,0.001971222,3.60E-05,299,299,299 -1146,PV_MUMC_biexp,Liver,10,0.11,0.1,0.0015,0.156096042,0.103004335,0.001431963,0.45,0.45,0.45,0.45,0.45,0.45,0.110349252,0.077996163,0.000358196,299,299,299 -1147,PV_MUMC_biexp,Liver,30,0.11,0.1,0.0015,0.11610178,0.113822959,0.001497771,0.45,0.45,0.45,0.45,0.45,0.45,0.034776318,0.060098851,0.000144926,299,299,299 -1148,PV_MUMC_biexp,Liver,50,0.11,0.1,0.0015,0.111612535,0.109841008,0.001500025,0.45,0.45,0.45,0.45,0.45,0.45,0.019006812,0.044105658,9.05E-05,299,299,299 -1149,PV_MUMC_biexp,Liver,100,0.11,0.1,0.0015,0.110251044,0.103810737,0.001499809,0.45,0.45,0.45,0.45,0.45,0.45,0.009059778,0.023676826,4.54E-05,299,299,299 -1150,PV_MUMC_biexp,Liver,200,0.11,0.1,0.0015,0.110022353,0.101269696,0.001499835,0.45,0.45,0.45,0.45,0.45,0.45,0.004494374,0.011422466,2.27E-05,299,299,299 -1151,PV_MUMC_biexp,Myocardium LV,10,0.15,0.08,0.0024,0.231745393,0.09063846,0.002175402,0.45,0.45,0.45,0.45,0.45,0.45,0.153842017,0.0756179,0.000591423,299,299,299 -1152,PV_MUMC_biexp,Myocardium LV,30,0.15,0.08,0.0024,0.158168139,0.093306315,0.002399302,0.45,0.45,0.45,0.45,0.45,0.45,0.04891653,0.049880735,0.000271078,299,299,299 -1153,PV_MUMC_biexp,Myocardium LV,50,0.15,0.08,0.0024,0.152084744,0.086911983,0.002403749,0.45,0.45,0.45,0.45,0.45,0.45,0.027120147,0.032895103,0.000173097,299,299,299 -1154,PV_MUMC_biexp,Myocardium LV,100,0.15,0.08,0.0024,0.15029006,0.08228225,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012970653,0.016149829,8.78E-05,299,299,299 -1155,PV_MUMC_biexp,Myocardium LV,200,0.15,0.08,0.0024,0.150002427,0.080740591,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006416799,0.007696521,4.39E-05,299,299,299 -1156,PV_MUMC_biexp,myocardium ra,10,0.07,0.07,0.0015,0.128345687,0.082531651,0.001408339,0.45,0.45,0.45,0.45,0.45,0.45,0.114737913,0.079804013,0.000322848,299,299,299 -1157,PV_MUMC_biexp,myocardium ra,30,0.07,0.07,0.0015,0.080876941,0.093179189,0.001490893,0.45,0.45,0.45,0.45,0.45,0.45,0.040441249,0.068066226,0.000129512,299,299,299 -1158,PV_MUMC_biexp,myocardium ra,50,0.07,0.07,0.0015,0.073818655,0.087008793,0.001498578,0.45,0.45,0.45,0.45,0.45,0.45,0.023244544,0.05449788,8.40E-05,299,299,299 -1159,PV_MUMC_biexp,myocardium ra,100,0.07,0.07,0.0015,0.070707324,0.075975734,0.001499806,0.45,0.45,0.45,0.45,0.45,0.45,0.010558194,0.029297514,4.35E-05,299,299,299 -1160,PV_MUMC_biexp,myocardium ra,200,0.07,0.07,0.0015,0.07011574,0.071733228,0.001499839,0.45,0.45,0.45,0.45,0.45,0.45,0.005079172,0.013139692,2.17E-05,299,299,299 -1161,PV_MUMC_biexp,myocardium RV,10,0.15,0.08,0.0024,0.231745393,0.09063846,0.002175402,0.45,0.45,0.45,0.45,0.45,0.45,0.153842017,0.0756179,0.000591423,299,299,299 -1162,PV_MUMC_biexp,myocardium RV,30,0.15,0.08,0.0024,0.158168139,0.093306315,0.002399302,0.45,0.45,0.45,0.45,0.45,0.45,0.04891653,0.049880735,0.000271078,299,299,299 -1163,PV_MUMC_biexp,myocardium RV,50,0.15,0.08,0.0024,0.152084744,0.086911983,0.002403749,0.45,0.45,0.45,0.45,0.45,0.45,0.027120147,0.032895103,0.000173097,299,299,299 -1164,PV_MUMC_biexp,myocardium RV,100,0.15,0.08,0.0024,0.15029006,0.08228225,0.002401305,0.45,0.45,0.45,0.45,0.45,0.45,0.012970653,0.016149829,8.78E-05,299,299,299 -1165,PV_MUMC_biexp,myocardium RV,200,0.15,0.08,0.0024,0.150002427,0.080740591,0.002400362,0.45,0.45,0.45,0.45,0.45,0.45,0.006416799,0.007696521,4.39E-05,299,299,299 -1166,PV_MUMC_biexp,pancreas,10,0.15,0.01,0.0013,0.170823203,0.048439667,0.001283411,0.45,0.45,0.45,0.45,0.45,0.45,0.135276785,0.069364807,0.000342833,299,299,299 -1167,PV_MUMC_biexp,pancreas,30,0.15,0.01,0.0013,0.139357429,0.021179161,0.001329562,0.45,0.45,0.45,0.45,0.45,0.45,0.0600015,0.034371482,0.000136159,299,299,299 -1168,PV_MUMC_biexp,pancreas,50,0.15,0.01,0.0013,0.136832912,0.013345153,0.001329932,0.45,0.45,0.45,0.45,0.45,0.45,0.037870754,0.011835344,8.32E-05,299,299,299 -1169,PV_MUMC_biexp,pancreas,100,0.15,0.01,0.0013,0.13591079,0.011464131,0.001329786,0.45,0.45,0.45,0.45,0.45,0.45,0.019496681,0.002190372,4.15E-05,299,299,299 -1170,PV_MUMC_biexp,pancreas,200,0.15,0.01,0.0013,0.135796421,0.011158096,0.00132988,0.45,0.45,0.45,0.45,0.45,0.45,0.009827994,0.000979299,2.08E-05,299,299,299 -1171,PV_MUMC_biexp,pericardium,10,0.07,0.01,0.003,0.39101954,0.044643914,0.002451034,0.45,0.45,0.45,0.45,0.45,0.45,0.345288991,0.068555322,0.000589806,299,299,299 -1172,PV_MUMC_biexp,pericardium,30,0.07,0.01,0.003,0.279254963,0.027251618,0.002865231,0.45,0.45,0.45,0.45,0.45,0.45,0.32698487,0.049774275,0.000202392,299,299,299 -1173,PV_MUMC_biexp,pericardium,50,0.07,0.01,0.003,0.197907122,0.017177917,0.002925679,0.45,0.45,0.45,0.45,0.45,0.45,0.257892242,0.031471295,0.000122141,299,299,299 -1174,PV_MUMC_biexp,pericardium,100,0.07,0.01,0.003,0.101454392,0.010299903,0.002968398,0.45,0.45,0.45,0.45,0.45,0.45,0.098646064,0.004844048,5.81E-05,299,299,299 -1175,PV_MUMC_biexp,pericardium,200,0.07,0.01,0.003,0.076407756,0.009958909,0.002988942,0.45,0.45,0.45,0.45,0.45,0.45,0.016170934,0.002059308,2.46E-05,299,299,299 -1176,PV_MUMC_biexp,right kidney medulla,10,0.158,0.019,0.00209,0.241203863,0.050991184,0.001967789,0.45,0.45,0.45,0.45,0.45,0.45,0.193488009,0.065719199,0.000536034,299,299,299 -1177,PV_MUMC_biexp,right kidney medulla,30,0.158,0.019,0.00209,0.16481485,0.029125114,0.002096852,0.45,0.45,0.45,0.45,0.45,0.45,0.071248939,0.033229687,0.000229607,299,299,299 -1178,PV_MUMC_biexp,right kidney medulla,50,0.158,0.019,0.00209,0.159241671,0.022967725,0.002097486,0.45,0.45,0.45,0.45,0.45,0.45,0.045203648,0.016330243,0.000143397,299,299,299 -1179,PV_MUMC_biexp,right kidney medulla,100,0.158,0.019,0.00209,0.156984699,0.019956188,0.002095731,0.45,0.45,0.45,0.45,0.45,0.45,0.023147928,0.004158135,7.21E-05,299,299,299 -1180,PV_MUMC_biexp,right kidney medulla,200,0.158,0.019,0.00209,0.156461547,0.019438129,0.002095235,0.45,0.45,0.45,0.45,0.45,0.45,0.011692189,0.001971222,3.60E-05,299,299,299 -1181,PV_MUMC_biexp,Right kydney cortex,10,0.097,0.02,0.00212,0.220417076,0.057102977,0.001961426,0.45,0.45,0.45,0.45,0.45,0.45,0.227476268,0.072947836,0.000476707,299,299,299 -1182,PV_MUMC_biexp,Right kydney cortex,30,0.097,0.02,0.00212,0.111610837,0.039670631,0.0021113,0.45,0.45,0.45,0.45,0.45,0.45,0.06881525,0.049597156,0.000201429,299,299,299 -1183,PV_MUMC_biexp,Right kydney cortex,50,0.097,0.02,0.00212,0.102266477,0.029737913,0.002122102,0.45,0.45,0.45,0.45,0.45,0.45,0.043951371,0.032782356,0.000131843,299,299,299 -1184,PV_MUMC_biexp,Right kydney cortex,100,0.097,0.02,0.00212,0.097693503,0.022148615,0.002122888,0.45,0.45,0.45,0.45,0.45,0.45,0.02285192,0.008359825,6.85E-05,299,299,299 -1185,PV_MUMC_biexp,Right kydney cortex,200,0.097,0.02,0.00212,0.096538214,0.020688279,0.00212243,0.45,0.45,0.45,0.45,0.45,0.45,0.011531978,0.003463219,3.42E-05,299,299,299 -1186,PV_MUMC_biexp,small intestine,10,0.69,0.029,0.00131,0.691470348,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 -1187,PV_MUMC_biexp,small intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 -1188,PV_MUMC_biexp,small intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 -1189,PV_MUMC_biexp,small intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 -1190,PV_MUMC_biexp,small intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 -1191,PV_MUMC_biexp,spleen,10,0.2,0.03,0.0013,0.225876448,0.057569636,0.001279661,0.45,0.45,0.45,0.45,0.45,0.45,0.118602074,0.062520158,0.000393628,299,299,299 -1192,PV_MUMC_biexp,spleen,30,0.2,0.03,0.0013,0.203121072,0.034845691,0.001301025,0.45,0.45,0.45,0.45,0.45,0.45,0.044626892,0.021058709,0.000147165,299,299,299 -1193,PV_MUMC_biexp,spleen,50,0.2,0.03,0.0013,0.201082894,0.031400515,0.001300095,0.45,0.45,0.45,0.45,0.45,0.45,0.026765532,0.008435631,8.81E-05,299,299,299 -1194,PV_MUMC_biexp,spleen,100,0.2,0.03,0.0013,0.200152033,0.030387942,0.001299928,0.45,0.45,0.45,0.45,0.45,0.45,0.013344232,0.003895812,4.40E-05,299,299,299 -1195,PV_MUMC_biexp,spleen,200,0.2,0.03,0.0013,0.199941651,0.030135035,0.001300029,0.45,0.45,0.45,0.45,0.45,0.45,0.006666208,0.001923776,2.20E-05,299,299,299 -1196,PV_MUMC_biexp,st wall,10,0.3,0.012,0.0015,0.298023904,0.032177434,0.001534526,0.45,0.45,0.45,0.45,0.45,0.45,0.161634014,0.049274759,0.000533257,299,299,299 -1197,PV_MUMC_biexp,st wall,30,0.3,0.012,0.0015,0.282564166,0.014358991,0.001552148,0.45,0.45,0.45,0.45,0.45,0.45,0.067295404,0.006049759,0.000195512,299,299,299 -1198,PV_MUMC_biexp,st wall,50,0.3,0.012,0.0015,0.28248595,0.013291025,0.001549521,0.45,0.45,0.45,0.45,0.45,0.45,0.041467059,0.002693947,0.000116681,299,299,299 -1199,PV_MUMC_biexp,st wall,100,0.3,0.012,0.0015,0.282721607,0.012895399,0.001548673,0.45,0.45,0.45,0.45,0.45,0.45,0.02100713,0.001200568,5.82E-05,299,299,299 -1200,PV_MUMC_biexp,st wall,200,0.3,0.012,0.0015,0.282901507,0.012792631,0.001548604,0.45,0.45,0.45,0.45,0.45,0.45,0.010539704,0.000580338,2.91E-05,299,299,299 -1201,PV_MUMC_biexp,trans lower intestine,10,0.69,0.029,0.00131,0.691470349,0.032082783,0.00124872,0.45,0.45,0.45,0.45,0.45,0.45,0.105711328,0.016001873,0.000901832,299,299,299 -1202,PV_MUMC_biexp,trans lower intestine,30,0.69,0.029,0.00131,0.688093184,0.029456221,0.001327008,0.45,0.45,0.45,0.45,0.45,0.45,0.04526007,0.003716622,0.000393814,299,299,299 -1203,PV_MUMC_biexp,trans lower intestine,50,0.69,0.029,0.00131,0.688966038,0.029199602,0.001316741,0.45,0.45,0.45,0.45,0.45,0.45,0.027184198,0.002183487,0.000231514,299,299,299 -1204,PV_MUMC_biexp,trans lower intestine,100,0.69,0.029,0.00131,0.689413085,0.029080452,0.001313118,0.45,0.45,0.45,0.45,0.45,0.45,0.013598907,0.001083244,0.000114728,299,299,299 -1205,PV_MUMC_biexp,trans lower intestine,200,0.69,0.029,0.00131,0.689573181,0.029043094,0.001312596,0.45,0.45,0.45,0.45,0.45,0.45,0.006800477,0.000540559,5.72E-05,299,299,299 -1206,PV_MUMC_biexp,Vein,10,1,0.1,0.003,0.911157661,0.12364366,0.000607355,0.45,0.45,0.45,0.45,0.45,0.45,0.02637043,0.023480819,0.000781513,299,299,299 -1207,PV_MUMC_biexp,Vein,30,1,0.1,0.003,0.971237368,0.106940871,0.000607373,0.45,0.45,0.45,0.45,0.45,0.45,0.009087545,0.0064821,0.000781529,299,299,299 -1208,PV_MUMC_biexp,Vein,50,1,0.1,0.003,0.98298425,0.104032609,0.000607381,0.45,0.45,0.45,0.45,0.45,0.45,0.005460019,0.003767321,0.000781522,299,299,299 -1209,PV_MUMC_biexp,Vein,100,1,0.1,0.003,0.991733933,0.101934073,0.000607404,0.45,0.45,0.45,0.45,0.45,0.45,0.002689256,0.001846078,0.000781542,299,299,299 -1210,PV_MUMC_biexp,Vein,200,1,0.1,0.003,0.996022657,0.100931455,0.000607228,0.45,0.45,0.45,0.45,0.45,0.45,0.001336103,0.000915147,0.000780814,299,299,299 -1211,PvH_KB_NKI_IVIMfit,Artery,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 -1212,PvH_KB_NKI_IVIMfit,Artery,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 -1213,PvH_KB_NKI_IVIMfit,Artery,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 -1214,PvH_KB_NKI_IVIMfit,Artery,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 -1215,PvH_KB_NKI_IVIMfit,Artery,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 -1216,PvH_KB_NKI_IVIMfit,asc lower intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 -1217,PvH_KB_NKI_IVIMfit,asc lower intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 -1218,PvH_KB_NKI_IVIMfit,asc lower intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 -1219,PvH_KB_NKI_IVIMfit,asc lower intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 -1220,PvH_KB_NKI_IVIMfit,asc lower intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 -1221,PvH_KB_NKI_IVIMfit,Blood RA,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 -1222,PvH_KB_NKI_IVIMfit,Blood RA,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 -1223,PvH_KB_NKI_IVIMfit,Blood RA,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 -1224,PvH_KB_NKI_IVIMfit,Blood RA,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 -1225,PvH_KB_NKI_IVIMfit,Blood RA,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 -1226,PvH_KB_NKI_IVIMfit,Blood RV,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 -1227,PvH_KB_NKI_IVIMfit,Blood RV,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 -1228,PvH_KB_NKI_IVIMfit,Blood RV,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 -1229,PvH_KB_NKI_IVIMfit,Blood RV,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 -1230,PvH_KB_NKI_IVIMfit,Blood RV,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 -1231,PvH_KB_NKI_IVIMfit,desc lower intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 -1232,PvH_KB_NKI_IVIMfit,desc lower intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 -1233,PvH_KB_NKI_IVIMfit,desc lower intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 -1234,PvH_KB_NKI_IVIMfit,desc lower intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 -1235,PvH_KB_NKI_IVIMfit,desc lower intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 -1236,PvH_KB_NKI_IVIMfit,esophagus,10,0.32,0.03,0.00167,0.298410593,0.044291725,0.001874082,0.45,0.45,0.45,0.45,0.45,0.45,0.184008516,0.548526725,0.000802631,299,299,299 -1237,PvH_KB_NKI_IVIMfit,esophagus,30,0.32,0.03,0.00167,0.313531066,0.043041374,0.00168684,0.45,0.45,0.45,0.45,0.45,0.45,0.071006424,0.170195579,0.000230631,299,299,299 -1238,PvH_KB_NKI_IVIMfit,esophagus,50,0.32,0.03,0.00167,0.317578816,0.03665091,0.001673114,0.45,0.45,0.45,0.45,0.45,0.45,0.040445672,0.08993701,0.000132104,299,299,299 -1239,PvH_KB_NKI_IVIMfit,esophagus,100,0.32,0.03,0.00167,0.318448942,0.033038996,0.0016708,0.45,0.45,0.45,0.45,0.45,0.45,0.019993889,0.0441126,6.52E-05,299,299,299 -1240,PvH_KB_NKI_IVIMfit,esophagus,200,0.32,0.03,0.00167,0.318325958,0.031529375,0.001671832,0.45,0.45,0.45,0.45,0.45,0.45,0.009996873,0.022000428,3.26E-05,299,299,299 -1241,PvH_KB_NKI_IVIMfit,esophagus cont,10,0.32,0.03,0.00167,0.298410593,0.044291725,0.001874082,0.45,0.45,0.45,0.45,0.45,0.45,0.184008516,0.548526725,0.000802631,299,299,299 -1242,PvH_KB_NKI_IVIMfit,esophagus cont,30,0.32,0.03,0.00167,0.313531066,0.043041374,0.00168684,0.45,0.45,0.45,0.45,0.45,0.45,0.071006424,0.170195579,0.000230631,299,299,299 -1243,PvH_KB_NKI_IVIMfit,esophagus cont,50,0.32,0.03,0.00167,0.317578816,0.03665091,0.001673114,0.45,0.45,0.45,0.45,0.45,0.45,0.040445672,0.08993701,0.000132104,299,299,299 -1244,PvH_KB_NKI_IVIMfit,esophagus cont,100,0.32,0.03,0.00167,0.318448942,0.033038996,0.0016708,0.45,0.45,0.45,0.45,0.45,0.45,0.019993889,0.0441126,6.52E-05,299,299,299 -1245,PvH_KB_NKI_IVIMfit,esophagus cont,200,0.32,0.03,0.00167,0.318325958,0.031529375,0.001671832,0.45,0.45,0.45,0.45,0.45,0.45,0.009996873,0.022000428,3.26E-05,299,299,299 -1246,PvH_KB_NKI_IVIMfit,Left kidney cortex,10,0.097,0.02,0.00212,0.137208357,0.032855697,0.002343267,0.45,0.45,0.45,0.45,0.45,0.45,0.150823475,0.709808611,0.000864241,299,299,299 -1247,PvH_KB_NKI_IVIMfit,Left kidney cortex,30,0.097,0.02,0.00212,0.099241232,0.054167341,0.002147009,0.45,0.45,0.45,0.45,0.45,0.45,0.07551362,0.714891074,0.000274974,299,299,299 -1248,PvH_KB_NKI_IVIMfit,Left kidney cortex,50,0.097,0.02,0.00212,0.094997658,0.035279963,0.002125038,0.45,0.45,0.45,0.45,0.45,0.45,0.052733809,0.514843546,0.000151034,299,299,299 -1249,PvH_KB_NKI_IVIMfit,Left kidney cortex,100,0.097,0.02,0.00212,0.094573845,0.037758476,0.002120984,0.45,0.45,0.45,0.45,0.45,0.45,0.028268675,0.195276335,7.40E-05,299,299,299 -1250,PvH_KB_NKI_IVIMfit,Left kidney cortex,200,0.097,0.02,0.00212,0.094409859,0.025700825,0.002122061,0.45,0.45,0.45,0.45,0.45,0.45,0.014102588,0.075645136,3.69E-05,299,299,299 -1251,PvH_KB_NKI_IVIMfit,left kidney medulla,10,0.158,0.019,0.00209,0.172769411,-0.01290259,0.002318506,0.45,0.45,0.45,0.45,0.45,0.45,0.167588199,0.881872268,0.000848805,299,299,299 -1252,PvH_KB_NKI_IVIMfit,left kidney medulla,30,0.158,0.019,0.00209,0.149260397,0.083812206,0.002126538,0.45,0.45,0.45,0.45,0.45,0.45,0.084605016,0.756780753,0.000292908,299,299,299 -1253,PvH_KB_NKI_IVIMfit,left kidney medulla,50,0.158,0.019,0.00209,0.150537694,0.032042923,0.002101179,0.45,0.45,0.45,0.45,0.45,0.45,0.055840703,0.238929111,0.000157959,299,299,299 -1254,PvH_KB_NKI_IVIMfit,left kidney medulla,100,0.158,0.019,0.00209,0.152330433,0.026337743,0.002096343,0.45,0.45,0.45,0.45,0.45,0.45,0.027559738,0.09532627,7.72E-05,299,299,299 -1255,PvH_KB_NKI_IVIMfit,left kidney medulla,200,0.158,0.019,0.00209,0.152214804,0.022601339,0.002097316,0.45,0.45,0.45,0.45,0.45,0.45,0.013742974,0.046033449,3.85E-05,299,299,299 -1256,PvH_KB_NKI_IVIMfit,Liver,10,0.11,0.1,0.0015,0.130553125,0.050969363,0.001606518,0.45,0.45,0.45,0.45,0.45,0.45,0.129706716,0.792719309,0.000572921,299,299,299 -1257,PvH_KB_NKI_IVIMfit,Liver,30,0.11,0.1,0.0015,0.110278146,0.149442129,0.00150011,0.45,0.45,0.45,0.45,0.45,0.45,0.06013929,0.625749783,0.000145272,299,299,299 -1258,PvH_KB_NKI_IVIMfit,Liver,50,0.11,0.1,0.0015,0.110399659,0.156527047,0.001496845,0.45,0.45,0.45,0.45,0.45,0.45,0.037603687,0.425066413,8.60E-05,299,299,299 -1259,PvH_KB_NKI_IVIMfit,Liver,100,0.11,0.1,0.0015,0.110613243,0.113081531,0.00149726,0.45,0.45,0.45,0.45,0.45,0.45,0.018781974,0.139029983,4.29E-05,299,299,299 -1260,PvH_KB_NKI_IVIMfit,Liver,200,0.11,0.1,0.0015,0.11040908,0.104936965,0.001498342,0.45,0.45,0.45,0.45,0.45,0.45,0.00940445,0.067200194,2.14E-05,299,299,299 -1261,PvH_KB_NKI_IVIMfit,Myocardium LV,10,0.15,0.08,0.0024,0.192025856,-0.011638561,0.002599074,0.45,0.45,0.45,0.45,0.45,0.45,0.179951897,0.65328556,0.000985415,299,299,299 -1262,PvH_KB_NKI_IVIMfit,Myocardium LV,30,0.15,0.08,0.0024,0.147972386,0.086116543,0.002467494,0.45,0.45,0.45,0.45,0.45,0.45,0.097551746,0.440738078,0.000442366,299,299,299 -1263,PvH_KB_NKI_IVIMfit,Myocardium LV,50,0.15,0.08,0.0024,0.148447585,0.117368159,0.002409027,0.45,0.45,0.45,0.45,0.45,0.45,0.067714997,0.347462872,0.000216739,299,299,299 -1264,PvH_KB_NKI_IVIMfit,Myocardium LV,100,0.15,0.08,0.0024,0.150826922,0.092566909,0.002395962,0.45,0.45,0.45,0.45,0.45,0.45,0.035020959,0.111206593,0.000102588,299,299,299 -1265,PvH_KB_NKI_IVIMfit,Myocardium LV,200,0.15,0.08,0.0024,0.151062768,0.083618121,0.002396048,0.45,0.45,0.45,0.45,0.45,0.45,0.01734079,0.049241715,5.09E-05,299,299,299 -1266,PvH_KB_NKI_IVIMfit,myocardium ra,10,0.07,0.07,0.0015,0.104891588,0.006079758,0.001600653,0.45,0.45,0.45,0.45,0.45,0.45,0.118242883,0.784263692,0.000552215,299,299,299 -1267,PvH_KB_NKI_IVIMfit,myocardium ra,30,0.07,0.07,0.0015,0.073908386,0.064576828,0.001499537,0.45,0.45,0.45,0.45,0.45,0.45,0.055273208,0.772165079,0.000138752,299,299,299 -1268,PvH_KB_NKI_IVIMfit,myocardium ra,50,0.07,0.07,0.0015,0.070866314,0.123754667,0.001496789,0.45,0.45,0.45,0.45,0.45,0.45,0.037081078,0.731555138,8.23E-05,299,299,299 -1269,PvH_KB_NKI_IVIMfit,myocardium ra,100,0.07,0.07,0.0015,0.070624947,0.095285825,0.001497332,0.45,0.45,0.45,0.45,0.45,0.45,0.018966401,0.232113078,4.10E-05,299,299,299 -1270,PvH_KB_NKI_IVIMfit,myocardium ra,200,0.07,0.07,0.0015,0.07041179,0.07828601,0.001498403,0.45,0.45,0.45,0.45,0.45,0.45,0.009497054,0.104550226,2.05E-05,299,299,299 -1271,PvH_KB_NKI_IVIMfit,myocardium RV,10,0.15,0.08,0.0024,0.192025856,-0.011638561,0.002599074,0.45,0.45,0.45,0.45,0.45,0.45,0.179951897,0.65328556,0.000985415,299,299,299 -1272,PvH_KB_NKI_IVIMfit,myocardium RV,30,0.15,0.08,0.0024,0.147972386,0.086116543,0.002467494,0.45,0.45,0.45,0.45,0.45,0.45,0.097551746,0.440738078,0.000442366,299,299,299 -1273,PvH_KB_NKI_IVIMfit,myocardium RV,50,0.15,0.08,0.0024,0.148447585,0.117368159,0.002409027,0.45,0.45,0.45,0.45,0.45,0.45,0.067714997,0.347462872,0.000216739,299,299,299 -1274,PvH_KB_NKI_IVIMfit,myocardium RV,100,0.15,0.08,0.0024,0.150826922,0.092566909,0.002395962,0.45,0.45,0.45,0.45,0.45,0.45,0.035020959,0.111206593,0.000102588,299,299,299 -1275,PvH_KB_NKI_IVIMfit,myocardium RV,200,0.15,0.08,0.0024,0.151062768,0.083618121,0.002396048,0.45,0.45,0.45,0.45,0.45,0.45,0.01734079,0.049241715,5.09E-05,299,299,299 -1276,PvH_KB_NKI_IVIMfit,pancreas,10,0.15,0.01,0.0013,0.136937979,0.007406518,0.001421521,0.45,0.45,0.45,0.45,0.45,0.45,0.127266105,0.732213636,0.000486504,299,299,299 -1277,PvH_KB_NKI_IVIMfit,pancreas,30,0.15,0.01,0.0013,0.121887931,0.076313764,0.001339599,0.45,0.45,0.45,0.45,0.45,0.45,0.056836447,0.636807479,0.00012678,299,299,299 -1278,PvH_KB_NKI_IVIMfit,pancreas,50,0.15,0.01,0.0013,0.122753935,0.03417762,0.001337778,0.45,0.45,0.45,0.45,0.45,0.45,0.034266714,0.256098852,7.54E-05,299,299,299 -1279,PvH_KB_NKI_IVIMfit,pancreas,100,0.15,0.01,0.0013,0.122866903,0.019881771,0.00133845,0.45,0.45,0.45,0.45,0.45,0.45,0.017142072,0.115209944,3.77E-05,299,299,299 -1280,PvH_KB_NKI_IVIMfit,pancreas,200,0.15,0.01,0.0013,0.122698909,0.015358605,0.001339417,0.45,0.45,0.45,0.45,0.45,0.45,0.008584771,0.056647044,1.88E-05,299,299,299 -1281,PvH_KB_NKI_IVIMfit,pericardium,10,0.07,0.01,0.003,0.200345433,0.0186626,0.00287292,0.45,0.45,0.45,0.45,0.45,0.45,0.191226966,0.511499383,0.000944686,299,299,299 -1282,PvH_KB_NKI_IVIMfit,pericardium,30,0.07,0.01,0.003,0.087541044,0.043926421,0.003196376,0.45,0.45,0.45,0.45,0.45,0.45,0.098520619,0.520788625,0.000739212,299,299,299 -1283,PvH_KB_NKI_IVIMfit,pericardium,50,0.07,0.01,0.003,0.071358851,0.03437635,0.003083836,0.45,0.45,0.45,0.45,0.45,0.45,0.072375543,0.468187572,0.000430508,299,299,299 -1284,PvH_KB_NKI_IVIMfit,pericardium,100,0.07,0.01,0.003,0.059343243,0.031989734,0.003024505,0.45,0.45,0.45,0.45,0.45,0.45,0.045750257,0.346527743,0.000170493,299,299,299 -1285,PvH_KB_NKI_IVIMfit,pericardium,200,0.07,0.01,0.003,0.054140786,0.027042208,0.003018936,0.45,0.45,0.45,0.45,0.45,0.45,0.02775529,0.292432776,8.25E-05,299,299,299 -1286,PvH_KB_NKI_IVIMfit,right kidney medulla,10,0.158,0.019,0.00209,0.172769411,-0.01290259,0.002318506,0.45,0.45,0.45,0.45,0.45,0.45,0.167588199,0.881872268,0.000848805,299,299,299 -1287,PvH_KB_NKI_IVIMfit,right kidney medulla,30,0.158,0.019,0.00209,0.149260397,0.083812206,0.002126538,0.45,0.45,0.45,0.45,0.45,0.45,0.084605016,0.756780753,0.000292908,299,299,299 -1288,PvH_KB_NKI_IVIMfit,right kidney medulla,50,0.158,0.019,0.00209,0.150537694,0.032042923,0.002101179,0.45,0.45,0.45,0.45,0.45,0.45,0.055840703,0.238929111,0.000157959,299,299,299 -1289,PvH_KB_NKI_IVIMfit,right kidney medulla,100,0.158,0.019,0.00209,0.152330433,0.026337743,0.002096343,0.45,0.45,0.45,0.45,0.45,0.45,0.027559738,0.09532627,7.72E-05,299,299,299 -1290,PvH_KB_NKI_IVIMfit,right kidney medulla,200,0.158,0.019,0.00209,0.152214804,0.022601339,0.002097316,0.45,0.45,0.45,0.45,0.45,0.45,0.013742974,0.046033449,3.85E-05,299,299,299 -1291,PvH_KB_NKI_IVIMfit,Right kydney cortex,10,0.097,0.02,0.00212,0.137208357,0.032855697,0.002343267,0.45,0.45,0.45,0.45,0.45,0.45,0.150823475,0.709808611,0.000864241,299,299,299 -1292,PvH_KB_NKI_IVIMfit,Right kydney cortex,30,0.097,0.02,0.00212,0.099241232,0.054167341,0.002147009,0.45,0.45,0.45,0.45,0.45,0.45,0.07551362,0.714891074,0.000274974,299,299,299 -1293,PvH_KB_NKI_IVIMfit,Right kydney cortex,50,0.097,0.02,0.00212,0.094997658,0.035279963,0.002125038,0.45,0.45,0.45,0.45,0.45,0.45,0.052733809,0.514843546,0.000151034,299,299,299 -1294,PvH_KB_NKI_IVIMfit,Right kydney cortex,100,0.097,0.02,0.00212,0.094573845,0.037758476,0.002120984,0.45,0.45,0.45,0.45,0.45,0.45,0.028268675,0.195276335,7.40E-05,299,299,299 -1295,PvH_KB_NKI_IVIMfit,Right kydney cortex,200,0.097,0.02,0.00212,0.094409859,0.025700825,0.002122061,0.45,0.45,0.45,0.45,0.45,0.45,0.014102588,0.075645136,3.69E-05,299,299,299 -1296,PvH_KB_NKI_IVIMfit,small intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 -1297,PvH_KB_NKI_IVIMfit,small intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 -1298,PvH_KB_NKI_IVIMfit,small intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 -1299,PvH_KB_NKI_IVIMfit,small intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 -1300,PvH_KB_NKI_IVIMfit,small intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 -1301,PvH_KB_NKI_IVIMfit,spleen,10,0.2,0.03,0.0013,0.195996622,0.06130213,0.001404549,0.45,0.45,0.45,0.45,0.45,0.45,0.142733289,0.865447288,0.000582749,299,299,299 -1302,PvH_KB_NKI_IVIMfit,spleen,30,0.2,0.03,0.0013,0.197871845,0.057793771,0.0013015,0.45,0.45,0.45,0.45,0.45,0.45,0.055408133,0.277217447,0.000135472,299,299,299 -1303,PvH_KB_NKI_IVIMfit,spleen,50,0.2,0.03,0.0013,0.199033285,0.041687036,0.001299169,0.45,0.45,0.45,0.45,0.45,0.45,0.033023774,0.14596529,8.05E-05,299,299,299 -1304,PvH_KB_NKI_IVIMfit,spleen,100,0.2,0.03,0.0013,0.199176575,0.03501551,0.001299717,0.45,0.45,0.45,0.45,0.45,0.45,0.016515143,0.07079939,4.02E-05,299,299,299 -1305,PvH_KB_NKI_IVIMfit,spleen,200,0.2,0.03,0.0013,0.199026312,0.032409687,0.001300698,0.45,0.45,0.45,0.45,0.45,0.45,0.008270928,0.035216811,2.01E-05,299,299,299 -1306,PvH_KB_NKI_IVIMfit,st wall,10,0.3,0.012,0.0015,0.248638297,0.036411695,0.001729211,0.45,0.45,0.45,0.45,0.45,0.45,0.16634739,0.707332243,0.000685673,299,299,299 -1307,PvH_KB_NKI_IVIMfit,st wall,30,0.3,0.012,0.0015,0.258772026,0.029382258,0.001575176,0.45,0.45,0.45,0.45,0.45,0.45,0.064438844,0.202407559,0.000186844,299,299,299 -1308,PvH_KB_NKI_IVIMfit,st wall,50,0.3,0.012,0.0015,0.261282486,0.02098574,0.001567589,0.45,0.45,0.45,0.45,0.45,0.45,0.03771772,0.108793386,0.00010928,299,299,299 -1309,PvH_KB_NKI_IVIMfit,st wall,100,0.3,0.012,0.0015,0.261756786,0.016795348,0.001566858,0.45,0.45,0.45,0.45,0.45,0.45,0.018767424,0.053174563,5.43E-05,299,299,299 -1310,PvH_KB_NKI_IVIMfit,st wall,200,0.3,0.012,0.0015,0.261595673,0.015003154,0.001567942,0.45,0.45,0.45,0.45,0.45,0.45,0.009393129,0.026499922,2.71E-05,299,299,299 -1311,PvH_KB_NKI_IVIMfit,trans lower intestine,10,0.69,0.029,0.00131,0.680218362,0.050066318,0.001450206,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411,0.238940197,0.001072276,299,299,299 -1312,PvH_KB_NKI_IVIMfit,trans lower intestine,30,0.69,0.029,0.00131,0.676680512,0.034117763,0.001395046,0.45,0.45,0.45,0.45,0.45,0.45,0.065965121,0.069534248,0.000430834,299,299,299 -1313,PvH_KB_NKI_IVIMfit,trans lower intestine,50,0.69,0.029,0.00131,0.683651185,0.031879083,0.001341586,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838,0.040994352,0.000218128,299,299,299 -1314,PvH_KB_NKI_IVIMfit,trans lower intestine,100,0.69,0.029,0.00131,0.685021724,0.030464931,0.001329632,0.45,0.45,0.45,0.45,0.45,0.45,0.015152843,0.02042827,0.000104916,299,299,299 -1315,PvH_KB_NKI_IVIMfit,trans lower intestine,200,0.69,0.029,0.00131,0.685125408,0.029813635,0.001329198,0.45,0.45,0.45,0.45,0.45,0.45,0.007550236,0.010212466,5.22E-05,299,299,299 -1316,PvH_KB_NKI_IVIMfit,Vein,10,1,0.1,0.003,0.925854766,0.122594446,0.000574992,0.45,0.45,0.45,0.45,0.45,0.45,0.05819687,0.163382666,0.000860131,299,299,299 -1317,PvH_KB_NKI_IVIMfit,Vein,30,1,0.1,0.003,0.975434046,0.106084352,0.00057499,0.45,0.45,0.45,0.45,0.45,0.45,0.019398664,0.050227282,0.000860129,299,299,299 -1318,PvH_KB_NKI_IVIMfit,Vein,50,1,0.1,0.003,0.985264177,0.103511663,0.000574988,0.45,0.45,0.45,0.45,0.45,0.45,0.011663958,0.029763528,0.000860127,299,299,299 -1319,PvH_KB_NKI_IVIMfit,Vein,100,1,0.1,0.003,0.992631985,0.101706372,0.000574983,0.45,0.45,0.45,0.45,0.45,0.45,0.005843972,0.014753024,0.000860122,299,299,299 -1320,PvH_KB_NKI_IVIMfit,Vein,200,1,0.1,0.003,0.996315722,0.100841206,0.000574973,0.45,0.45,0.45,0.45,0.45,0.45,0.002925419,0.007345983,0.000860112,299,299,299 \ No newline at end of file +"","Algorithm","Region","SNR","f","Dp","D","f_mu","Dp_mu","D_mu","f_t_alpha","Dp_t_alpha","D_t_alpha","f_f_alpha","Dp_f_alpha","D_f_alpha","f_std","Dp_std","D_std","f_df","Dp_df","D_df" +"1","ETP_SRI_LinearFitting","Artery",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 +"2","ETP_SRI_LinearFitting","Artery",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 +"3","ETP_SRI_LinearFitting","Artery",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 +"4","ETP_SRI_LinearFitting","Artery",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 +"5","ETP_SRI_LinearFitting","Artery",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"6","ETP_SRI_LinearFitting","asc lower intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,0.45,0.45,0.45,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 +"7","ETP_SRI_LinearFitting","asc lower intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,0.45,0.45,0.45,1.76780563288555,0.0425455021045266,0.00106933510259241,299,299,299 +"8","ETP_SRI_LinearFitting","asc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675182257,0.0316288973094785,0.000565757923733332,299,299,299 +"9","ETP_SRI_LinearFitting","asc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.45,0.45,0.45,0.45,0.45,0.45,0.0657882130636678,0.0129318475024161,0.000272558015550553,299,299,299 +"10","ETP_SRI_LinearFitting","asc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.45,0.45,0.45,0.45,0.45,0.45,0.0318472093243258,0.00994517539003604,0.000135584729312215,299,299,299 +"11","ETP_SRI_LinearFitting","Blood RA",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747579,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,7.04636261194312,0.2052823319296,0.00202899165966831,299,299,299 +"12","ETP_SRI_LinearFitting","Blood RA",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,2.34878753731438,0.0820324479335513,0.00202899165966831,299,299,299 +"13","ETP_SRI_LinearFitting","Blood RA",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,1.40927252238862,0.0748018161089434,0.00202899165966831,299,299,299 +"14","ETP_SRI_LinearFitting","Blood RA",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261194313,0.0712090333536298,0.00202899165966831,299,299,299 +"15","ETP_SRI_LinearFitting","Blood RA",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"16","ETP_SRI_LinearFitting","Blood RV",10,1,0.1,0.003,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 +"17","ETP_SRI_LinearFitting","Blood RV",30,1,0.1,0.003,0.593621105303909,0.0382494989565618,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,2.34878753731438,0.0820324479335538,0.00202899165966831,299,299,299 +"18","ETP_SRI_LinearFitting","Blood RV",50,1,0.1,0.003,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 +"19","ETP_SRI_LinearFitting","Blood RV",100,1,0.1,0.003,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 +"20","ETP_SRI_LinearFitting","Blood RV",200,1,0.1,0.003,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"21","ETP_SRI_LinearFitting","desc lower intestine",10,0.69,0.029,0.00131,-1.78046847362474,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,0.45,0.45,0.45,15.8239651221778,0.0700506422948962,0.00211653751766345,299,299,299 +"22","ETP_SRI_LinearFitting","desc lower intestine",30,0.69,0.029,0.00131,0.475373627248901,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,0.45,0.45,0.45,1.76780563288553,0.0425455021045259,0.00106933510259241,299,299,299 +"23","ETP_SRI_LinearFitting","desc lower intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675182257,0.0316288973094785,0.000565757923733331,299,299,299 +"24","ETP_SRI_LinearFitting","desc lower intestine",100,0.69,0.029,0.00131,0.689682968828103,0.018072945218478,0.00128589506813888,0.45,0.45,0.45,0.45,0.45,0.45,0.0657882130636677,0.012931847502416,0.000272558015550553,299,299,299 +"25","ETP_SRI_LinearFitting","desc lower intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447003,0.001295710009054,0.45,0.45,0.45,0.45,0.45,0.45,0.0318472093243258,0.00994517539003595,0.000135584729312215,299,299,299 +"26","ETP_SRI_LinearFitting","esophagus",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.45,0.45,0.45,0.45,0.45,0.45,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 +"27","ETP_SRI_LinearFitting","esophagus",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.45,0.45,0.45,0.45,0.45,0.45,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 +"28","ETP_SRI_LinearFitting","esophagus",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.45,0.45,0.45,0.45,0.45,0.45,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 +"29","ETP_SRI_LinearFitting","esophagus",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.45,0.45,0.45,0.45,0.45,0.45,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 +"30","ETP_SRI_LinearFitting","esophagus",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.45,0.45,0.45,0.45,0.45,0.45,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 +"31","ETP_SRI_LinearFitting","esophagus cont",10,0.32,0.03,0.00167,-16.8351405050354,0.0068526571766845,0.00187372141326849,0.45,0.45,0.45,0.45,0.45,0.45,276.052061050262,0.026788450319505,0.00186996047282086,299,299,299 +"32","ETP_SRI_LinearFitting","esophagus cont",30,0.32,0.03,0.00167,0.266714751515287,0.0303808196938573,0.00164931975608782,0.45,0.45,0.45,0.45,0.45,0.45,0.406333159703618,0.119784575060654,0.000600457220228775,299,299,299 +"33","ETP_SRI_LinearFitting","esophagus cont",50,0.32,0.03,0.00167,0.313716356954611,0.0273642978256428,0.00164359893758489,0.45,0.45,0.45,0.45,0.45,0.45,0.182929019148033,0.0795334134326654,0.000343814080262369,299,299,299 +"34","ETP_SRI_LinearFitting","esophagus cont",100,0.32,0.03,0.00167,0.323715049568329,0.0260106093774843,0.0016523197077377,0.45,0.45,0.45,0.45,0.45,0.45,0.0854843084936869,0.0413692194238232,0.000169854145357372,299,299,299 +"35","ETP_SRI_LinearFitting","esophagus cont",200,0.32,0.03,0.00167,0.323458156778321,0.0213128802430461,0.00166007725647971,0.45,0.45,0.45,0.45,0.45,0.45,0.0422956236405241,0.0168367957308982,8.48403059042792e-05,299,299,299 +"36","ETP_SRI_LinearFitting","Left kidney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.45,0.45,0.45,0.45,0.45,0.45,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 +"37","ETP_SRI_LinearFitting","Left kidney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.45,0.45,0.45,0.45,0.45,0.45,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 +"38","ETP_SRI_LinearFitting","Left kidney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.45,0.45,0.45,0.45,0.45,0.45,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 +"39","ETP_SRI_LinearFitting","Left kidney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.45,0.45,0.45,0.45,0.45,0.45,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 +"40","ETP_SRI_LinearFitting","Left kidney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.45,0.45,0.45,0.45,0.45,0.45,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 +"41","ETP_SRI_LinearFitting","left kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.45,0.45,0.45,0.45,0.45,0.45,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 +"42","ETP_SRI_LinearFitting","left kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.45,0.45,0.45,0.45,0.45,0.45,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 +"43","ETP_SRI_LinearFitting","left kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.45,0.45,0.45,0.45,0.45,0.45,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 +"44","ETP_SRI_LinearFitting","left kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.45,0.45,0.45,0.45,0.45,0.45,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 +"45","ETP_SRI_LinearFitting","left kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.45,0.45,0.45,0.45,0.45,0.45,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 +"46","ETP_SRI_LinearFitting","Liver",10,0.11,0.1,0.0015,-3.67105854933764,0.0103322924138449,0.00161495986282209,0.45,0.45,0.45,0.45,0.45,0.45,50.5725151160169,0.100845172822066,0.00140857424525187,299,299,299 +"47","ETP_SRI_LinearFitting","Liver",30,0.11,0.1,0.0015,0.0969318407879205,0.0145642929149208,0.00147246699637093,0.45,0.45,0.45,0.45,0.45,0.45,0.269776485804268,0.0971893509566391,0.000377588902171262,299,299,299 +"48","ETP_SRI_LinearFitting","Liver",50,0.11,0.1,0.0015,0.112644420990274,0.0988492551721873,0.0014787002760584,0.45,0.45,0.45,0.45,0.45,0.45,0.150827871968332,0.380693459960368,0.000223664227770201,299,299,299 +"49","ETP_SRI_LinearFitting","Liver",100,0.11,0.1,0.0015,0.114915102854363,0.0889095920483081,0.00148764168516119,0.45,0.45,0.45,0.45,0.45,0.45,0.0738473058377525,0.328370788509957,0.000111502995637712,299,299,299 +"50","ETP_SRI_LinearFitting","Liver",200,0.11,0.1,0.0015,0.113341186733021,0.0725340532416588,0.00149339727236951,0.45,0.45,0.45,0.45,0.45,0.45,0.0368404978098108,0.138234643262059,5.57744401860227e-05,299,299,299 +"51","ETP_SRI_LinearFitting","Myocardium LV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.45,0.45,0.45,0.45,0.45,0.45,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 +"52","ETP_SRI_LinearFitting","Myocardium LV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.45,0.45,0.45,0.45,0.45,0.45,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 +"53","ETP_SRI_LinearFitting","Myocardium LV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.45,0.45,0.45,0.45,0.45,0.45,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 +"54","ETP_SRI_LinearFitting","Myocardium LV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.45,0.45,0.45,0.45,0.45,0.45,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 +"55","ETP_SRI_LinearFitting","Myocardium LV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.45,0.45,0.45,0.45,0.45,0.45,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 +"56","ETP_SRI_LinearFitting","myocardium ra",10,0.07,0.07,0.0015,-1.65951665423363,0.0177238771115808,0.00160957265059348,0.45,0.45,0.45,0.45,0.45,0.45,13.1554017697515,0.183131672721427,0.00136088593186554,299,299,299 +"57","ETP_SRI_LinearFitting","myocardium ra",30,0.07,0.07,0.0015,0.0589564569081104,0.0296093937203642,0.00147279822346654,0.45,0.45,0.45,0.45,0.45,0.45,0.266937871380083,0.242638673913433,0.000360646166742376,299,299,299 +"58","ETP_SRI_LinearFitting","myocardium ra",50,0.07,0.07,0.0015,0.0732759014900858,0.0328371698735262,0.00147933187029512,0.45,0.45,0.45,0.45,0.45,0.45,0.1504150174967,0.216423076996624,0.000213945675661325,299,299,299 +"59","ETP_SRI_LinearFitting","myocardium ra",100,0.07,0.07,0.0015,0.075067261558205,0.0677774461043471,0.00148810347075861,0.45,0.45,0.45,0.45,0.45,0.45,0.0738177865239001,0.269492649198698,0.000106705818256413,299,299,299 +"60","ETP_SRI_LinearFitting","myocardium ra",200,0.07,0.07,0.0015,0.0733792311780607,0.0623676153801111,0.00149366381082312,0.45,0.45,0.45,0.45,0.45,0.45,0.0368411946796926,0.237445081999106,5.33779360572001e-05,299,299,299 +"61","ETP_SRI_LinearFitting","myocardium RV",10,0.15,0.08,0.0024,-5.4100782940561,0.0094184225249475,0.0023822293893847,0.45,0.45,0.45,0.45,0.45,0.45,43.9350216703497,0.0978522441529872,0.00222629966744103,299,299,299 +"62","ETP_SRI_LinearFitting","myocardium RV",30,0.15,0.08,0.0024,-0.593493538453782,0.0307395600063619,0.00247697353799738,0.45,0.45,0.45,0.45,0.45,0.45,4.68407782665976,0.268537532439499,0.0011501035746123,299,299,299 +"63","ETP_SRI_LinearFitting","myocardium RV",50,0.15,0.08,0.0024,0.0920184554793497,0.0313742160547733,0.00238414363888919,0.45,0.45,0.45,0.45,0.45,0.45,0.464498483486438,0.152892132747701,0.000563768089555283,299,299,299 +"64","ETP_SRI_LinearFitting","myocardium RV",100,0.15,0.08,0.0024,0.150567854592103,0.0514970030699646,0.00237618575855411,0.45,0.45,0.45,0.45,0.45,0.45,0.165469382787638,0.127123615513322,0.0002665350105812,299,299,299 +"65","ETP_SRI_LinearFitting","myocardium RV",200,0.15,0.08,0.0024,0.155639734570644,0.0933876875035398,0.0023845891999107,0.45,0.45,0.45,0.45,0.45,0.45,0.0791306589370929,0.288726461627615,0.000132239370578106,299,299,299 +"66","ETP_SRI_LinearFitting","pancreas",10,0.15,0.01,0.00129999999999999,-0.650527215028878,0.00373368564161748,0.00138866565214997,0.45,0.45,0.45,0.45,0.45,0.45,4.93667394171624,0.00722474221217601,0.00119248691671331,299,299,299 +"67","ETP_SRI_LinearFitting","pancreas",30,0.15,0.01,0.00129999999999999,0.141181390443557,0.0571022180430843,0.00127631910355573,0.45,0.45,0.45,0.45,0.45,0.45,0.223328699407368,0.30235917617171,0.000329779178430446,299,299,299 +"68","ETP_SRI_LinearFitting","pancreas",50,0.15,0.01,0.00129999999999999,0.1510036083282,0.0152944083015561,0.00128385681159516,0.45,0.45,0.45,0.45,0.45,0.45,0.127982122939212,0.126325868230149,0.000196269231755713,299,299,299 +"69","ETP_SRI_LinearFitting","pancreas",100,0.15,0.01,0.00129999999999999,0.151847983395745,0.0131626451974964,0.00129232113375324,0.45,0.45,0.45,0.45,0.45,0.45,0.0631293755739931,0.0377927362687652,9.79894642257458e-05,299,299,299 +"70","ETP_SRI_LinearFitting","pancreas",200,0.15,0.01,0.00129999999999999,0.150332194355078,0.0109445926132955,0.00129741584499017,0.45,0.45,0.45,0.45,0.45,0.45,0.0315327839698718,0.00587272237819955,4.90247818549865e-05,299,299,299 +"71","ETP_SRI_LinearFitting","pericardium",10,0.07,0.00999999999999999,0.003,-1.71069455396435,0.00413806480279475,0.00222002363044559,0.45,0.45,0.45,0.45,0.45,0.45,11.3461458015308,0.00796330900457343,0.00214350424805972,299,299,299 +"72","ETP_SRI_LinearFitting","pericardium",30,0.07,0.00999999999999999,0.003,-2.91527744837181,0.00507173294709184,0.00321986504376209,0.45,0.45,0.45,0.45,0.45,0.45,18.8162955606326,0.0031589206110522,0.00176542899681745,299,299,299 +"73","ETP_SRI_LinearFitting","pericardium",50,0.07,0.00999999999999999,0.003,-0.725107480466489,0.0146143161821091,0.00308436166182826,0.45,0.45,0.45,0.45,0.45,0.45,5.02892397652847,0.139670661799305,0.0011228429935268,299,299,299 +"74","ETP_SRI_LinearFitting","pericardium",100,0.07,0.00999999999999999,0.003,0.0395072922651046,0.00739762781595787,0.00298132773142143,0.45,0.45,0.45,0.45,0.45,0.45,0.337660314112399,0.026548244280092,0.000442399989892903,299,299,299 +"75","ETP_SRI_LinearFitting","pericardium",200,0.07,0.00999999999999999,0.003,0.0717940918714239,0.0314985196375023,0.00298144117966044,0.45,0.45,0.45,0.45,0.45,0.45,0.139726244311711,0.210455939290863,0.000213771886702303,299,299,299 +"76","ETP_SRI_LinearFitting","right kidney medulla",10,0.158,0.019,0.00209,-3.11895454601443,0.00382272586211331,0.00222555907500432,0.45,0.45,0.45,0.45,0.45,0.45,17.302089867667,0.00262100544691147,0.00201304721946398,299,299,299 +"77","ETP_SRI_LinearFitting","right kidney medulla",30,0.158,0.019,0.00209,-0.0132327759769504,0.0190118327804773,0.00209352407031152,0.45,0.45,0.45,0.45,0.45,0.45,1.29784271003527,0.133264707763682,0.000765120322817147,299,299,299 +"78","ETP_SRI_LinearFitting","right kidney medulla",50,0.158,0.019,0.00209,0.139949230099125,0.0435122782064182,0.00206463411889175,0.45,0.45,0.45,0.45,0.45,0.45,0.277961931640109,0.272277018535852,0.000411061545542364,299,299,299 +"79","ETP_SRI_LinearFitting","right kidney medulla",100,0.158,0.019,0.00209,0.162111331451922,0.0284192061666898,0.00206967525982813,0.45,0.45,0.45,0.45,0.45,0.45,0.12275266286204,0.141684150651081,0.000200942901817927,299,299,299 +"80","ETP_SRI_LinearFitting","right kidney medulla",200,0.158,0.019,0.00209,0.162940320456035,0.0186331366956058,0.00207804214183691,0.45,0.45,0.45,0.45,0.45,0.45,0.0601910458682016,0.0195734768168526,0.000100188914072193,299,299,299 +"81","ETP_SRI_LinearFitting","Right kydney cortex",10,0.097,0.02,0.00212,-14.3955595873973,0.00391705267140109,0.00228537543024786,0.45,0.45,0.45,0.45,0.45,0.45,192.598089159977,0.00284489934212906,0.0020791994015325,299,299,299 +"82","ETP_SRI_LinearFitting","Right kydney cortex",30,0.097,0.02,0.00212,-0.0428754799840204,0.00671743673875138,0.0021177062108811,0.45,0.45,0.45,0.45,0.45,0.45,0.980652959116608,0.02764652541098,0.000717331168492116,299,299,299 +"83","ETP_SRI_LinearFitting","Right kydney cortex",50,0.097,0.02,0.00212,0.0810014404866088,0.0208609783877286,0.002094456809827,0.45,0.45,0.45,0.45,0.45,0.45,0.280902600026116,0.162555556129203,0.000392930293069512,299,299,299 +"84","ETP_SRI_LinearFitting","Right kydney cortex",100,0.097,0.02,0.00212,0.101777729251112,0.0319661776619169,0.00210017649895717,0.45,0.45,0.45,0.45,0.45,0.45,0.125657669024395,0.19129049639463,0.000192523164576264,299,299,299 +"85","ETP_SRI_LinearFitting","Right kydney cortex",200,0.097,0.02,0.00212,0.10224030226737,0.0255774322867593,0.00210841272923396,0.45,0.45,0.45,0.45,0.45,0.45,0.0617374115601895,0.0657171942836725,9.60266343305832e-05,299,299,299 +"86","ETP_SRI_LinearFitting","small intestine",10,0.69,0.029,0.00131,-1.78046847362488,0.016522289744801,0.0016441792429181,0.45,0.45,0.45,0.45,0.45,0.45,15.8239651221794,0.0700506422948965,0.00211653751766345,299,299,299 +"87","ETP_SRI_LinearFitting","small intestine",30,0.69,0.029,0.00131,0.475373627248899,0.022456787601217,0.00136414593549871,0.45,0.45,0.45,0.45,0.45,0.45,1.76780563288555,0.0425455021045267,0.00106933510259241,299,299,299 +"88","ETP_SRI_LinearFitting","small intestine",50,0.69,0.029,0.00131,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675182257,0.0316288973094786,0.000565757923733332,299,299,299 +"89","ETP_SRI_LinearFitting","small intestine",100,0.69,0.029,0.00131,0.689682968828103,0.0180729452184781,0.00128589506813888,0.45,0.45,0.45,0.45,0.45,0.45,0.0657882130636678,0.0129318475024162,0.000272558015550553,299,299,299 +"90","ETP_SRI_LinearFitting","small intestine",200,0.69,0.029,0.00131,0.6916765650872,0.0183295045447004,0.001295710009054,0.45,0.45,0.45,0.45,0.45,0.45,0.0318472093243258,0.00994517539003606,0.000135584729312215,299,299,299 +"91","ETP_SRI_LinearFitting","spleen",10,0.2,0.03,0.00129999999999999,-3.3740132522231,0.00553618298512768,0.00143433710820903,0.45,0.45,0.45,0.45,0.45,0.45,32.2937373001832,0.0199199575648861,0.00143622539626405,299,299,299 +"92","ETP_SRI_LinearFitting","spleen",30,0.2,0.03,0.00129999999999999,0.191616803068673,0.0524339373886503,0.00127246317690968,0.45,0.45,0.45,0.45,0.45,0.45,0.225231222917192,0.241188205504064,0.000351229948037188,299,299,299 +"93","ETP_SRI_LinearFitting","spleen",50,0.2,0.03,0.00129999999999999,0.202791755119256,0.039825290894353,0.0012798791928558,0.45,0.45,0.45,0.45,0.45,0.45,0.128062905075638,0.160615566355117,0.000208715871266267,299,299,299 +"94","ETP_SRI_LinearFitting","spleen",100,0.2,0.03,0.00129999999999999,0.204134185690545,0.0296901197338264,0.00128864343929708,0.45,0.45,0.45,0.45,0.45,0.45,0.063013883604555,0.059005431253839,0.000104155540475188,299,299,299 +"95","ETP_SRI_LinearFitting","spleen",200,0.2,0.03,0.00129999999999999,0.202743964725328,0.0217979487010552,0.0012939998603653,0.45,0.45,0.45,0.45,0.45,0.45,0.0314614070504959,0.0204643988878911,5.21071683813949e-05,299,299,299 +"96","ETP_SRI_LinearFitting","st wall",10,0.3,0.012,0.0015,-1.64610469307265,0.00469872580015407,0.0016722712729154,0.45,0.45,0.45,0.45,0.45,0.45,15.8055997491259,0.0116896306708749,0.00158171276921857,299,299,299 +"97","ETP_SRI_LinearFitting","st wall",30,0.3,0.012,0.0015,0.270890694864435,0.0145946544452255,0.00147533983907024,0.45,0.45,0.45,0.45,0.45,0.45,0.296176769896366,0.0644575311240057,0.000487785371238241,299,299,299 +"98","ETP_SRI_LinearFitting","st wall",50,0.3,0.012,0.0015,0.29676404903463,0.0206118664406517,0.00147812190285612,0.45,0.45,0.45,0.45,0.45,0.45,0.154483980727086,0.138058215589313,0.000285387872646462,299,299,299 +"99","ETP_SRI_LinearFitting","st wall",100,0.3,0.012,0.0015,0.302162253072998,0.0127072898874613,0.00148765340763967,0.45,0.45,0.45,0.45,0.45,0.45,0.0742535435648724,0.00999336152068087,0.000141764252457752,299,299,299 +"100","ETP_SRI_LinearFitting","st wall",200,0.3,0.012,0.0015,0.301306786736074,0.0115839512910052,0.00149453131653136,0.45,0.45,0.45,0.45,0.45,0.45,0.0369195438104536,0.0039251958924262,7.08740730226027e-05,299,299,299 +"101","ETP_SRI_LinearFitting","trans lower intestine",10,0.69,0.029,0.00130999999999999,-1.78046847362465,0.0165222897448011,0.0016441792429181,0.45,0.45,0.45,0.45,0.45,0.45,15.8239651221768,0.0700506422948976,0.00211653751766344,299,299,299 +"102","ETP_SRI_LinearFitting","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.475373627248902,0.0224567876012169,0.00136414593549871,0.45,0.45,0.45,0.45,0.45,0.45,1.7678056328855,0.042545502104526,0.00106933510259241,299,299,299 +"103","ETP_SRI_LinearFitting","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.670719339656506,0.0216164735545652,0.00128259234710564,0.45,0.45,0.45,0.45,0.45,0.45,0.164103675182257,0.0316288973094783,0.000565757923733331,299,299,299 +"104","ETP_SRI_LinearFitting","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689682968828103,0.018072945218478,0.00128589506813888,0.45,0.45,0.45,0.45,0.45,0.45,0.0657882130636677,0.0129318475024159,0.000272558015550553,299,299,299 +"105","ETP_SRI_LinearFitting","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.6916765650872,0.0183295045447003,0.001295710009054,0.45,0.45,0.45,0.45,0.45,0.45,0.0318472093243257,0.00994517539003592,0.000135584729312215,299,299,299 +"106","ETP_SRI_LinearFitting","Vein",10,1,0.1,0.00299999999999999,-0.219136684088274,0.0537322605747583,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,7.04636261194312,0.205282331929603,0.00202899165966831,299,299,299 +"107","ETP_SRI_LinearFitting","Vein",30,1,0.1,0.00299999999999999,0.593621105303909,0.0382494989565613,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,2.34878753731438,0.0820324479335514,0.00202899165966831,299,299,299 +"108","ETP_SRI_LinearFitting","Vein",50,1,0.1,0.00299999999999999,0.756172663182345,0.0344803011735524,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,1.40927252238862,0.0748018161089435,0.00202899165966831,299,299,299 +"109","ETP_SRI_LinearFitting","Vein",100,1,0.1,0.00299999999999999,0.878086331591172,0.0323340591843625,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.704636261194313,0.0712090333536302,0.00202899165966831,299,299,299 +"110","ETP_SRI_LinearFitting","Vein",200,1,0.1,0.00299999999999999,0.939043165795586,0.0276367938777587,0.00133133896069262,0.45,0.45,0.45,0.45,0.45,0.45,0.352318130597156,0.0537980905708716,0.00202899165966831,299,299,299 +"111","IAR_LU_biexp","Artery",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.45,0.45,0.45,0.45,0.45,0.45,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 +"112","IAR_LU_biexp","Artery",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 +"113","IAR_LU_biexp","Artery",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 +"114","IAR_LU_biexp","Artery",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 +"115","IAR_LU_biexp","Artery",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 +"116","IAR_LU_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.697212667896394,0.0325023737565882,0.00113782850824108,0.45,0.45,0.45,0.45,0.45,0.45,0.0969149603369071,0.0150873113090282,0.00075651551093642,299,299,299 +"117","IAR_LU_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690042687609969,0.0293408736715589,0.00129733848997831,0.45,0.45,0.45,0.45,0.45,0.45,0.0360947595237916,0.00363625975881636,0.000283880194097926,299,299,299 +"118","IAR_LU_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.690035517241786,0.0291115984791372,0.00130238538452424,0.45,0.45,0.45,0.45,0.45,0.45,0.0214722239467864,0.00211805849668056,0.000167872936460034,299,299,299 +"119","IAR_LU_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.69001659059687,0.0290241717802667,0.00130617192275866,0.45,0.45,0.45,0.45,0.45,0.45,0.0106870876911403,0.00104662367079566,8.33919719679096e-05,299,299,299 +"120","IAR_LU_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.690006715696218,0.0290045215204471,0.001308087187188,0.45,0.45,0.45,0.45,0.45,0.45,0.00533599564952396,0.000521521540722386,4.16245932209183e-05,299,299,299 +"121","IAR_LU_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.926470695284967,0.0982613762248633,0.000127034346810215,0.45,0.45,0.45,0.45,0.45,0.45,0.0215210674809254,0.00496152717204845,0.000371973810313032,299,299,299 +"122","IAR_LU_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.977495351982512,0.0994484053254073,8.67768300711388e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00692461753206635,0.00165005168525004,0.000295520157175566,299,299,299 +"123","IAR_LU_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.986847787845781,0.0996578523975426,7.50360360977392e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00411089364580979,0.00101750527909541,0.000278518466654476,299,299,299 +"124","IAR_LU_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.993665235854952,0.0998164880988272,5.78826115470832e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00200378851223167,0.000529926879844168,0.000263826201637921,299,299,299 +"125","IAR_LU_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996952138241046,0.0999023540964743,4.82142681221824e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618406539713,0.000274814551382663,0.000256559604950207,299,299,299 +"126","IAR_LU_biexp","Blood RV",10,1,0.1,0.003,0.92647069528709,0.0982613762257002,0.000127034347081598,0.45,0.45,0.45,0.45,0.45,0.45,0.0215210674974187,0.0049615271733654,0.000371973812375611,299,299,299 +"127","IAR_LU_biexp","Blood RV",30,1,0.1,0.003,0.977495351986575,0.0994484053261729,8.6776830208335e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00692461752875168,0.00165005168400417,0.00029552015946517,299,299,299 +"128","IAR_LU_biexp","Blood RV",50,1,0.1,0.003,0.986847787847024,0.0996578523977876,7.50360360821851e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00411089364523165,0.00101750527880633,0.000278518469327793,299,299,299 +"129","IAR_LU_biexp","Blood RV",100,1,0.1,0.003,0.993665235855317,0.0998164880990098,5.78826114675235e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.0020037885125151,0.000529926879857713,0.000263826199490928,299,299,299 +"130","IAR_LU_biexp","Blood RV",200,1,0.1,0.003,0.996952138241195,0.09990235409644,4.82142679154876e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618405480444,0.000274814551227168,0.000256559602777668,299,299,299 +"131","IAR_LU_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.697212667300357,0.0325023737719409,0.00113782851118961,0.45,0.45,0.45,0.45,0.45,0.45,0.0969149608678149,0.0150873112968303,0.00075651551240572,299,299,299 +"132","IAR_LU_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690042687627665,0.0293408736706232,0.00129733848988675,0.45,0.45,0.45,0.45,0.45,0.45,0.0360947594628279,0.00363625975619238,0.00028388019375974,299,299,299 +"133","IAR_LU_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.690035515572817,0.0291115986604859,0.00130238539842299,0.45,0.45,0.45,0.45,0.45,0.45,0.0214722257649461,0.002118058553172,0.000167872962249228,299,299,299 +"134","IAR_LU_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.690016590562107,0.0290241717827196,0.00130617192299434,0.45,0.45,0.45,0.45,0.45,0.45,0.0106870876869911,0.00104662367148246,8.33919720257604e-05,299,299,299 +"135","IAR_LU_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.690006715693301,0.0290045215206338,0.00130808718720708,0.45,0.45,0.45,0.45,0.45,0.45,0.00533599565206864,0.000521521540571046,4.1624593218652e-05,299,299,299 +"136","IAR_LU_biexp","esophagus",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.45,0.45,0.45,0.45,0.45,0.45,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 +"137","IAR_LU_biexp","esophagus",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.45,0.45,0.45,0.45,0.45,0.45,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 +"138","IAR_LU_biexp","esophagus",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.45,0.45,0.45,0.45,0.45,0.45,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 +"139","IAR_LU_biexp","esophagus",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.45,0.45,0.45,0.45,0.45,0.45,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 +"140","IAR_LU_biexp","esophagus",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.45,0.45,0.45,0.45,0.45,0.45,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 +"141","IAR_LU_biexp","esophagus cont",10,0.32,0.03,0.00167,0.36768348021756,0.0387739018583002,0.00149968787511753,0.45,0.45,0.45,0.45,0.45,0.45,0.13792439216537,0.0287006753797355,0.000539607925257411,299,299,299 +"142","IAR_LU_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324535978323346,0.0316992915590362,0.00165203935349943,0.45,0.45,0.45,0.45,0.45,0.45,0.0414146517163268,0.0102184984647144,0.000163809030863196,299,299,299 +"143","IAR_LU_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321543302411402,0.0304981189913308,0.00166185943635118,0.45,0.45,0.45,0.45,0.45,0.45,0.0241291460353726,0.00522280147435882,9.57228596340847e-05,299,299,299 +"144","IAR_LU_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320352103903266,0.0301044944259164,0.00166689046126068,0.45,0.45,0.45,0.45,0.45,0.45,0.0118434376083422,0.0024752317146445,4.71049548884526e-05,299,299,299 +"145","IAR_LU_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320074329926359,0.030021150648093,0.00166868318124731,0.45,0.45,0.45,0.45,0.45,0.45,0.00588728307385917,0.00122081473783562,2.3433401134466e-05,299,299,299 +"146","IAR_LU_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.45,0.45,0.45,0.45,0.45,0.45,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 +"147","IAR_LU_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.45,0.45,0.45,0.45,0.45,0.45,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 +"148","IAR_LU_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.45,0.45,0.45,0.45,0.45,0.45,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 +"149","IAR_LU_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.45,0.45,0.45,0.45,0.45,0.45,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 +"150","IAR_LU_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.45,0.45,0.45,0.45,0.45,0.45,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 +"151","IAR_LU_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.45,0.45,0.45,0.45,0.45,0.45,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 +"152","IAR_LU_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.45,0.45,0.45,0.45,0.45,0.45,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 +"153","IAR_LU_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.45,0.45,0.45,0.45,0.45,0.45,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 +"154","IAR_LU_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.45,0.45,0.45,0.45,0.45,0.45,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 +"155","IAR_LU_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.45,0.45,0.45,0.45,0.45,0.45,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 +"156","IAR_LU_biexp","Liver",10,0.11,0.1,0.0015,0.17150503347828,0.0585894869688638,0.00133082929506349,0.45,0.45,0.45,0.45,0.45,0.45,0.136516097304139,0.040090038616655,0.000354915450632941,299,299,299 +"157","IAR_LU_biexp","Liver",30,0.11,0.1,0.0015,0.116524922609641,0.0797461322710395,0.00147039590886351,0.45,0.45,0.45,0.45,0.45,0.45,0.0333445716851057,0.0273586641563357,9.54315771325179e-05,299,299,299 +"158","IAR_LU_biexp","Liver",50,0.11,0.1,0.0015,0.111213985993271,0.0871710843301268,0.00148797791711182,0.45,0.45,0.45,0.45,0.45,0.45,0.0154006163091042,0.0181177747169451,4.76546785250623e-05,299,299,299 +"159","IAR_LU_biexp","Liver",100,0.11,0.1,0.0015,0.110305056949762,0.0927872237401196,0.00149443585404214,0.45,0.45,0.45,0.45,0.45,0.45,0.00760367346398485,0.010636984816954,2.3490644652322e-05,299,299,299 +"160","IAR_LU_biexp","Liver",200,0.11,0.1,0.0015,0.110083101922637,0.0961088632553183,0.00149729667035132,0.45,0.45,0.45,0.45,0.45,0.45,0.00377409246386361,0.00589352197554721,1.16519052488367e-05,299,299,299 +"161","IAR_LU_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.45,0.45,0.45,0.45,0.45,0.45,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 +"162","IAR_LU_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.45,0.45,0.45,0.45,0.45,0.45,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 +"163","IAR_LU_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.45,0.45,0.45,0.45,0.45,0.45,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 +"164","IAR_LU_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.45,0.45,0.45,0.45,0.45,0.45,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 +"165","IAR_LU_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.45,0.45,0.45,0.45,0.45,0.45,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 +"166","IAR_LU_biexp","myocardium ra",10,0.07,0.07,0.0015,0.14434529830722,0.0496160441966283,0.00132998441282674,0.45,0.45,0.45,0.45,0.45,0.45,0.140855149533486,0.0404605423176663,0.000341449090754878,299,299,299 +"167","IAR_LU_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884934019340212,0.0605990186959302,0.00145501083368677,0.45,0.45,0.45,0.45,0.45,0.45,0.0492325838484117,0.0351976192418362,0.000113777290620505,299,299,299 +"168","IAR_LU_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0758647169781666,0.06791650050496,0.00148333041539624,0.45,0.45,0.45,0.45,0.45,0.45,0.0230456661351546,0.0291001629249576,5.93738477118657e-05,299,299,299 +"169","IAR_LU_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0708749125967571,0.0711936438005044,0.00149642377167344,0.45,0.45,0.45,0.45,0.45,0.45,0.00816500710666416,0.0192721206922887,2.43863373496943e-05,299,299,299 +"170","IAR_LU_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070182595378895,0.0711717683305259,0.00149896894166523,0.45,0.45,0.45,0.45,0.45,0.45,0.00403298414730219,0.0119620121584671,1.22446271475917e-05,299,299,299 +"171","IAR_LU_biexp","myocardium RV",10,0.15,0.08,0.0024,0.27006842477102,0.0517900922930558,0.00197677446229465,0.45,0.45,0.45,0.45,0.45,0.45,0.196904005562501,0.039079006705774,0.000657249718213118,299,299,299 +"172","IAR_LU_biexp","myocardium RV",30,0.15,0.08,0.0024,0.159128615485475,0.0752996005287946,0.00236027891632272,0.45,0.45,0.45,0.45,0.45,0.45,0.0440622372949345,0.0258268579970843,0.000173630033080063,299,299,299 +"173","IAR_LU_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152177073454838,0.0791919814940619,0.00238687553973693,0.45,0.45,0.45,0.45,0.45,0.45,0.0173891081488939,0.0184891337189341,8.64207194851514e-05,299,299,299 +"174","IAR_LU_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150508149157028,0.0806807886065444,0.00239611661636228,0.45,0.45,0.45,0.45,0.45,0.45,0.00852201581730271,0.0120767528934207,4.33018578890598e-05,299,299,299 +"175","IAR_LU_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150084202036767,0.0804859513207706,0.00239874839779324,0.45,0.45,0.45,0.45,0.45,0.45,0.00424599385979743,0.00694395430774553,2.18581528844054e-05,299,299,299 +"176","IAR_LU_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.194101487815807,0.0312758838743002,0.00120526646626578,0.45,0.45,0.45,0.45,0.45,0.45,0.163835605660646,0.0351134171828845,0.000389002224095764,299,299,299 +"177","IAR_LU_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.18057781110752,0.0172903815631494,0.00125161129207905,0.45,0.45,0.45,0.45,0.45,0.45,0.0946201475796243,0.0207613933514163,0.000184226392073428,299,299,299 +"178","IAR_LU_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.172218377812807,0.0122015061567802,0.00126461919523248,0.45,0.45,0.45,0.45,0.45,0.45,0.0680057817004279,0.0102895468472958,0.000126280292095513,299,299,299 +"179","IAR_LU_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156814390417323,0.010276360650811,0.00128831420397952,0.45,0.45,0.45,0.45,0.45,0.45,0.0330925441819963,0.00280594101449204,6.19579959599574e-05,299,299,299 +"180","IAR_LU_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151550794401852,0.0100513328503536,0.00129688092235998,0.45,0.45,0.45,0.45,0.45,0.45,0.0150249218350546,0.00127661999397567,2.91039408170828e-05,299,299,299 +"181","IAR_LU_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.285492213115468,0.0190670326981962,0.00226157462609275,0.45,0.45,0.45,0.45,0.45,0.45,0.295897833443307,0.0281974740030665,0.000970921790568731,299,299,299 +"182","IAR_LU_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171300202118549,0.0176658968150002,0.00279755619927794,0.45,0.45,0.45,0.45,0.45,0.45,0.192343219823375,0.0249759051303956,0.000428028390979465,299,299,299 +"183","IAR_LU_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.150556932149508,0.0186673286620893,0.00287029554388432,0.45,0.45,0.45,0.45,0.45,0.45,0.153716456740351,0.024823540168741,0.000300739466996796,299,299,299 +"184","IAR_LU_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.137271520897935,0.0160473990749268,0.00290927547149749,0.45,0.45,0.45,0.45,0.45,0.45,0.117893566693985,0.0195152724982985,0.000196241930893257,299,299,299 +"185","IAR_LU_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.102312394147559,0.0125930930414983,0.00295777596823617,0.45,0.45,0.45,0.45,0.45,0.45,0.0785041069510577,0.0109051130123374,0.000124246519340491,299,299,299 +"186","IAR_LU_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.278725112606773,0.0299295278885064,0.00175491609632802,0.45,0.45,0.45,0.45,0.45,0.45,0.214439226663254,0.0320665409108846,0.000647003511378606,299,299,299 +"187","IAR_LU_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.195052950980682,0.0261856057527599,0.00200837477713779,0.45,0.45,0.45,0.45,0.45,0.45,0.107212847396005,0.022730281214365,0.000274366547433729,299,299,299 +"188","IAR_LU_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168666540718204,0.0221312082872428,0.00206534831379977,0.45,0.45,0.45,0.45,0.45,0.45,0.0511197732075942,0.0130549070375701,0.000140951659190629,299,299,299 +"189","IAR_LU_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160303513865828,0.0195063936622692,0.00208325110527239,0.45,0.45,0.45,0.45,0.45,0.45,0.0220967456206984,0.00402437727812436,6.45285823366835e-05,299,299,299 +"190","IAR_LU_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158549311213423,0.0191219025592804,0.00208780922914557,0.45,0.45,0.45,0.45,0.45,0.45,0.0107171092868028,0.00195429170292147,3.17207823967746e-05,299,299,299 +"191","IAR_LU_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.210970906830311,0.0310310657601555,0.0018229470669625,0.45,0.45,0.45,0.45,0.45,0.45,0.203989004924902,0.0344674603310571,0.000586836581946663,299,299,299 +"192","IAR_LU_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.15768396635406,0.026659907618088,0.00200188081254989,0.45,0.45,0.45,0.45,0.45,0.45,0.114151568500584,0.02634118752992,0.000253815865698958,299,299,299 +"193","IAR_LU_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.121533306097951,0.0268595655306235,0.00207299933900311,0.45,0.45,0.45,0.45,0.45,0.45,0.0702050063177978,0.0225952613910742,0.000153941426857934,299,299,299 +"194","IAR_LU_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100982702473657,0.021817155940103,0.00211092183513097,0.45,0.45,0.45,0.45,0.45,0.45,0.0231884312921043,0.00884130304693349,6.24363655216314e-05,299,299,299 +"195","IAR_LU_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979413174196692,0.020324544085,0.00211720394022434,0.45,0.45,0.45,0.45,0.45,0.45,0.0105242600178635,0.00334826593727098,2.95665782127649e-05,299,299,299 +"196","IAR_LU_biexp","small intestine",10,0.69,0.029,0.00131,0.697212667324408,0.0325023737670926,0.00113782851099832,0.45,0.45,0.45,0.45,0.45,0.45,0.0969149608580876,0.0150873112899437,0.000756515511829932,299,299,299 +"197","IAR_LU_biexp","small intestine",30,0.69,0.029,0.00131,0.690042687647921,0.0293408736692245,0.0012973384897293,0.45,0.45,0.45,0.45,0.45,0.45,0.0360947594630489,0.00363625975813661,0.000283880193523868,299,299,299 +"198","IAR_LU_biexp","small intestine",50,0.69,0.029,0.00131,0.690035515564786,0.0291115986613112,0.00130238539849337,0.45,0.45,0.45,0.45,0.45,0.45,0.0214722257688065,0.00211805855379368,0.000167872962555997,299,299,299 +"199","IAR_LU_biexp","small intestine",100,0.69,0.029,0.00131,0.690016590577353,0.0290241717816333,0.00130617192289034,0.45,0.45,0.45,0.45,0.45,0.45,0.0106870876894146,0.00104662367040614,8.33919719690564e-05,299,299,299 +"200","IAR_LU_biexp","small intestine",200,0.69,0.029,0.00131,0.690006715703415,0.0290045215198542,0.00130808718713812,0.45,0.45,0.45,0.45,0.45,0.45,0.00533599564919373,0.000521521540682779,4.16245931960093e-05,299,299,299 +"201","IAR_LU_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.258238381169185,0.0415855486936915,0.001156583030263,0.45,0.45,0.45,0.45,0.45,0.45,0.138972935730348,0.033199359136067,0.000392002777022699,299,299,299 +"202","IAR_LU_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206967214328514,0.0338919578464336,0.00128156423965599,0.45,0.45,0.45,0.45,0.45,0.45,0.0387633481889241,0.0175409201633337,0.000113885202343254,299,299,299 +"203","IAR_LU_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202249286598062,0.0312833908166694,0.00129256952434829,0.45,0.45,0.45,0.45,0.45,0.45,0.0221581511313069,0.00879736911181636,6.60123263011774e-05,299,299,299 +"204","IAR_LU_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200487080304842,0.0302504275785877,0.0012973937314337,0.45,0.45,0.45,0.45,0.45,0.45,0.0107457183685509,0.00383295563309727,3.20648907780344e-05,299,299,299 +"205","IAR_LU_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.20009205584711,0.030052736227119,0.00129897493246634,0.45,0.45,0.45,0.45,0.45,0.45,0.00531656690976873,0.00186528647470474,1.58727384991494e-05,299,299,299 +"206","IAR_LU_biexp","st wall",10,0.3,0.012,0.0015,0.361045681611347,0.0252956083225308,0.00131717399629326,0.45,0.45,0.45,0.45,0.45,0.45,0.20326722786523,0.0285647281439496,0.000612145460756818,299,299,299 +"207","IAR_LU_biexp","st wall",30,0.3,0.012,0.0015,0.323962428710257,0.0134193933845625,0.00143886841292422,0.45,0.45,0.45,0.45,0.45,0.45,0.0982083290063556,0.00798933272515384,0.000260082486221727,299,299,299 +"208","IAR_LU_biexp","st wall",50,0.3,0.012,0.0015,0.307361980831941,0.012384744394028,0.00147968648747327,0.45,0.45,0.45,0.45,0.45,0.45,0.0543906266860356,0.00311905673053413,0.000143561177270617,299,299,299 +"209","IAR_LU_biexp","st wall",100,0.3,0.012,0.0015,0.301677558443888,0.0120878361093821,0.00149434290424516,0.45,0.45,0.45,0.45,0.45,0.45,0.0263384511959087,0.0014322760683357,6.96636660243356e-05,299,299,299 +"210","IAR_LU_biexp","st wall",200,0.3,0.012,0.0015,0.300399087873271,0.0120193042665729,0.0014981386774852,0.45,0.45,0.45,0.45,0.45,0.45,0.0130979678723596,0.000698591450954127,3.46398328200195e-05,299,299,299 +"211","IAR_LU_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.697212667722101,0.0325023737662354,0.0011378285095022,0.45,0.45,0.45,0.45,0.45,0.45,0.0969149605281008,0.0150873112941006,0.00075651551328862,299,299,299 +"212","IAR_LU_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.69004268765537,0.0293408736684314,0.00129733848966368,0.45,0.45,0.45,0.45,0.45,0.45,0.0360947595155316,0.00363625976077757,0.000283880194085563,299,299,299 +"213","IAR_LU_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.690035515530053,0.0291115986633909,0.00130238539872579,0.45,0.45,0.45,0.45,0.45,0.45,0.0214722257310754,0.00211805855231437,0.00016787296220424,299,299,299 +"214","IAR_LU_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.690016590592847,0.0290241717807258,0.00130617192278856,0.45,0.45,0.45,0.45,0.45,0.45,0.0106870876903053,0.00104662367103972,8.33919719260138e-05,299,299,299 +"215","IAR_LU_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.690006715695885,0.0290045215203316,0.00130808718718679,0.45,0.45,0.45,0.45,0.45,0.45,0.00533599564581372,0.000521521540492688,4.16245931726914e-05,299,299,299 +"216","IAR_LU_biexp","Vein",10,1,0.1,0.00299999999999999,0.926470695260705,0.0982613762253741,0.000127034347223934,0.45,0.45,0.45,0.45,0.45,0.45,0.0215210674937771,0.00496152716857027,0.000371973810625793,299,299,299 +"217","IAR_LU_biexp","Vein",30,1,0.1,0.00299999999999999,0.977495351988701,0.0994484053257689,8.67768297506284e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00692461752649988,0.00165005168479494,0.000295520156728701,299,299,299 +"218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 +"219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 +"220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 +"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933570848988992,0.0981805068105781,9.69093889944883e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.0215342543426893,0.00482098138907883,0.00027316568035834,299,299,299 +"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660010508155,0.0989277747511537,0.000105702347593366,0.35,0.35,0.35,0.0,0.0,0.0,0.00717456694962925,0.00255925461853962,0.000390576167740346,299,299,299 +"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987513355852953,0.0993146630813435,0.000111537271968229,0.35,0.35,0.35,0.0,0.0,0.0,0.00425068598657669,0.00163747345989128,0.000425759593662501,299,299,299 +"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993798822519854,0.0996341503627457,0.00067451351062631,0.35,0.35,0.35,0.0,0.0,0.0,0.00224169924060188,0.000833637613746272,0.00083359048680711,299,299,299 +"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996837881526941,0.0998131234824984,0.000952042039241386,0.35,0.35,0.35,0.0,0.0,0.0,0.001249893170354,0.000417998146329635,0.000912905291908255,299,299,299 +"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701098146999056,0.0376846384692992,0.00123584558723118,0.35,0.35,0.35,0.0,0.0,0.0,0.0838529625204976,0.0142711329792211,0.000699901421058509,299,299,299 +"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689270433829804,0.0305702921292171,0.00132592004287042,0.35,0.35,0.35,0.0,0.0,0.0,0.0343145030426862,0.00387902864928047,0.000274527203038461,299,299,299 +"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689092920587044,0.0296106102396988,0.00131644357044935,0.35,0.35,0.35,0.0,0.0,0.0,0.0211233604764238,0.00231402306217761,0.000165698487313645,299,299,299 +"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689244198890322,0.029166295196685,0.00131232083976971,0.35,0.35,0.35,0.0,0.0,0.0,0.0106229535802193,0.00118522391515315,8.31980645449237e-05,299,299,299 +"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566686914887,0.0290651339498258,0.00131119343859749,0.35,0.35,0.35,0.0,0.0,0.0,0.00530833271107002,0.000595638106375174,4.1614521102759e-05,299,299,299 +"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933575987374375,0.0981725574835951,9.69018377906745e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.0215257895568654,0.00483113629901814,0.000274130265421953,299,299,299 +"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978662969533537,0.0989260889052865,0.000105300000732639,0.35,0.35,0.35,0.0,0.0,0.0,0.00717485114839342,0.00255795325769655,0.000390275453056785,299,299,299 +"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987511739004263,0.0993298157024425,0.000132794280083072,0.35,0.35,0.35,0.0,0.0,0.0,0.00425069060397439,0.0015911575611717,0.000504854482002304,299,299,299 +"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790416523141,0.0996310212865855,0.000668232661096037,0.35,0.35,0.35,0.0,0.0,0.0,0.00225360117674088,0.000839393019600417,0.000811535376588593,299,299,299 +"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996855535493298,0.0998158125367873,0.000899368064030819,0.35,0.35,0.35,0.0,0.0,0.0,0.00122656658519385,0.000422751162266688,0.000910077779013461,299,299,299 +"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933566610122185,0.0981787807085708,9.70611172703338e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.021530161874902,0.00482648728122416,0.000275314576455366,299,299,299 +"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662117043132,0.0989263773276916,0.000105450014645893,0.35,0.35,0.35,0.0,0.0,0.0,0.00717258006854822,0.00256082608071443,0.000390213653300988,299,299,299 +"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987501435172669,0.099328202590769,0.000143321105908456,0.35,0.35,0.35,0.0,0.0,0.0,0.0042494255353876,0.00160494769815741,0.000532773974790679,299,299,299 +"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993794323814746,0.0996364967198052,0.000621828868607648,0.35,0.35,0.35,0.0,0.0,0.0,0.00223204890758188,0.000833791395125412,0.000755680040057872,299,299,299 +"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996857901937908,0.0998074115641361,0.000932667960501076,0.35,0.35,0.35,0.0,0.0,0.0,0.00122897242482976,0.000426998046809806,0.000933797204745226,299,299,299 +"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701145535646085,0.0376638219718699,0.00123540721625722,0.35,0.35,0.35,0.0,0.0,0.0,0.083796930049459,0.0142347099361935,0.000699577458908831,299,299,299 +"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689263925418507,0.0305703664783724,0.00132595409827823,0.35,0.35,0.35,0.0,0.0,0.0,0.0343141207391388,0.00387514363578225,0.000274490525618896,299,299,299 +"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067045652208,0.0296139701994284,0.00131662404649655,0.35,0.35,0.35,0.0,0.0,0.0,0.021127494024743,0.00231722300632553,0.000165725358891943,299,299,299 +"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689264642734075,0.0291646963628323,0.00131222141168724,0.35,0.35,0.35,0.0,0.0,0.0,0.0106155989160487,0.00118572275886623,8.30923169693225e-05,299,299,299 +"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689578693620721,0.0290643988810149,0.00131114025379791,0.35,0.35,0.35,0.0,0.0,0.0,0.00533355200959244,0.000599004776094079,4.1718959275412e-05,299,299,299 +"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.400527830593273,0.0447949636977544,0.0015426629492717,0.35,0.35,0.35,0.0,0.0,0.0,0.102469226197977,0.0260824649486422,0.000435811877077636,299,299,299 +"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337529946987892,0.0333132633421435,0.00164831554033642,0.35,0.35,0.35,0.0,0.0,0.0,0.0404883972521689,0.0096608144222792,0.000155056043499648,299,299,299 +"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327757008760631,0.0312887913494121,0.00165940742671238,0.35,0.35,0.35,0.0,0.0,0.0,0.0251829987126239,0.00506274182546082,9.39501132013033e-05,299,299,299 +"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.32155824311201,0.0303795816066876,0.00166722178568304,0.35,0.35,0.35,0.0,0.0,0.0,0.0130040941720539,0.00246263456737367,4.72367409344804e-05,299,299,299 +"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.320006741416008,0.0301152438308431,0.00166943707892514,0.35,0.35,0.35,0.0,0.0,0.0,0.00665600574442942,0.00124090994517614,2.37736615342511e-05,299,299,299 +"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400548979460758,0.0447739971059416,0.00154247856745977,0.35,0.35,0.35,0.0,0.0,0.0,0.102488763785933,0.0260631843402454,0.000435716369017007,299,299,299 +"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337471951892681,0.0333411057871392,0.00164849410210564,0.35,0.35,0.35,0.0,0.0,0.0,0.0404410994932849,0.0097339323009991,0.000155177312482306,299,299,299 +"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327773227014542,0.0312841862018564,0.00165938176779592,0.35,0.35,0.35,0.0,0.0,0.0,0.0252203796414001,0.00504667330126957,9.38841854255672e-05,299,299,299 +"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321628569189038,0.0303635496520416,0.00166699565123893,0.35,0.35,0.35,0.0,0.0,0.0,0.0130373570332147,0.00246481235226089,4.72845762933273e-05,299,299,299 +"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319962570453534,0.0301251544692642,0.00166958059421625,0.35,0.35,0.35,0.0,0.0,0.0,0.00664838833945276,0.00123023906420883,2.3632274966389e-05,299,299,299 +"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.249532616991952,0.0474117748334815,0.00188136159657005,0.35,0.35,0.35,0.0,0.0,0.0,0.149602692179695,0.0328948654285501,0.000502337861275099,299,299,299 +"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152034132289475,0.0340311002318332,0.00204254497936777,0.35,0.35,0.35,0.0,0.0,0.0,0.0760353011732551,0.0271313066670539,0.000193836017179154,299,299,299 +"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125470720185733,0.0289410754570493,0.00208094800215627,0.35,0.35,0.35,0.0,0.0,0.0,0.0473913747039697,0.0222710733980788,0.000119613146630861,299,299,299 +"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109265063750681,0.0209832399432036,0.00210024709823131,0.35,0.35,0.35,0.0,0.0,0.0,0.0202157581391851,0.00821099980510626,5.54276205660732e-05,299,299,299 +"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.10242582323802,0.0195951700506166,0.00210948179329922,0.35,0.35,0.35,0.0,0.0,0.0,0.00987254906396141,0.00307183611477733,2.73151096204985e-05,299,299,299 +"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.287742524780219,0.0469532718020942,0.00187799044025495,0.35,0.35,0.35,0.0,0.0,0.0,0.150597235131432,0.0330747939408189,0.000536819571838129,299,299,299 +"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194864152021357,0.0298505046160489,0.00204397403174536,0.35,0.35,0.35,0.0,0.0,0.0,0.0709550598231138,0.0218441626546138,0.000204049937474551,299,299,299 +"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174252668623799,0.0242567176575074,0.00207256455461566,0.35,0.35,0.35,0.0,0.0,0.0,0.0415254785739867,0.0130031350639763,0.000121538851820776,299,299,299 +"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163278703698389,0.0203070180368319,0.00208414982352122,0.35,0.35,0.35,0.0,0.0,0.0,0.0211047448900031,0.00391292939047346,6.11095948149501e-05,299,299,299 +"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158985685800923,0.0194178680288917,0.00208893183158285,0.35,0.35,0.35,0.0,0.0,0.0,0.0109797733360322,0.00193587711259381,3.13387637953475e-05,299,299,299 +"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.243028014795172,0.0624504804547779,0.00132518894905339,0.35,0.35,0.35,0.0,0.0,0.0,0.101060620928961,0.0343360464760076,0.00029607175246079,299,299,299 +"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140783521867315,0.0802197298499024,0.00145852258385073,0.35,0.35,0.35,0.0,0.0,0.0,0.0328019767778551,0.0260027022120638,8.81257244158894e-05,299,299,299 +"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.12309553288397,0.087011797073023,0.00148129461844818,0.35,0.35,0.35,0.0,0.0,0.0,0.0184665708897472,0.0178616038531672,4.84916318562723e-05,299,299,299 +"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113755042831202,0.092496271734274,0.00149247648359747,0.35,0.35,0.35,0.0,0.0,0.0,0.00969028027416998,0.0104792908886752,2.39190196817366e-05,299,299,299 +"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111173313381198,0.0956746358547584,0.00149653870928575,0.35,0.35,0.35,0.0,0.0,0.0,0.00523804664463599,0.00574596456915193,1.19327104574067e-05,299,299,299 +"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.292668635997344,0.062818829057458,0.0020705594140065,0.35,0.35,0.35,0.0,0.0,0.0,0.127024838077414,0.033695107022932,0.00051687296022501,299,299,299 +"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177738007442708,0.0766591400862628,0.00234659593498546,0.35,0.35,0.35,0.0,0.0,0.0,0.0363991942681653,0.0241051591436976,0.000152037081683733,299,299,299 +"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160901941269485,0.0792910768978142,0.00237826197663998,0.35,0.35,0.35,0.0,0.0,0.0,0.0207910806480581,0.0182575625585446,8.78672690632462e-05,299,299,299 +"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152028434882425,0.0806077342583237,0.00239450606346528,0.35,0.35,0.35,0.0,0.0,0.0,0.0108729706583398,0.0119809429203843,4.43777825041243e-05,299,299,299 +"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150206783416951,0.080458243656439,0.00239857495114568,0.35,0.35,0.35,0.0,0.0,0.0,0.00575132425848615,0.00692426031645694,2.25733166882019e-05,299,299,299 +"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217418919228325,0.0548070101998308,0.0013307451983828,0.35,0.35,0.35,0.0,0.0,0.0,0.106804799716803,0.0336618413187429,0.000296301741999445,299,299,299 +"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114208154078613,0.0608871232569255,0.00144631390638784,0.35,0.35,0.35,0.0,0.0,0.0,0.0411190421325667,0.0320676577141246,9.70886494479196e-05,299,299,299 +"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906970207097383,0.0663582796941316,0.00147515529989145,0.35,0.35,0.35,0.0,0.0,0.0,0.0229207872253836,0.0267997646460673,5.62258617109179e-05,299,299,299 +"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763172598938093,0.0703012594964821,0.00149220525025731,0.35,0.35,0.35,0.0,0.0,0.0,0.0110844027223029,0.0204183212269255,2.75853755534046e-05,299,299,299 +"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711873339802141,0.071012263736686,0.00149820353775491,0.35,0.35,0.35,0.0,0.0,0.0,0.0055185238958783,0.0123993133675178,1.32882110617675e-05,299,299,299 +"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29138759778007,0.0634523083963379,0.00207377386621988,0.35,0.35,0.35,0.0,0.0,0.0,0.127491855180917,0.0335129615024955,0.000515271773404712,299,299,299 +"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178536958838559,0.0761969761487833,0.00234416351526948,0.35,0.35,0.35,0.0,0.0,0.0,0.037118289610981,0.0245490154570805,0.000155277005363762,299,299,299 +"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160895174089521,0.079308982525226,0.00237829482641901,0.35,0.35,0.35,0.0,0.0,0.0,0.0207587562712371,0.018256477610219,8.78367262569577e-05,299,299,299 +"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152023667758396,0.080620281339839,0.00239451487846507,0.35,0.35,0.35,0.0,0.0,0.0,0.0108713546371183,0.0120024241632719,4.44037069107048e-05,299,299,299 +"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201811438555,0.0804679869018945,0.00239859266134557,0.35,0.35,0.35,0.0,0.0,0.0,0.00574915351494362,0.00693083741874004,2.25884434304873e-05,299,299,299 +"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.248344316684146,0.0432673370142827,0.00123766533339312,0.35,0.35,0.35,0.0,0.0,0.0,0.125891591299949,0.0329699372149749,0.000342302770815962,299,299,299 +"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.182978537498608,0.0218247024322462,0.00127868929024059,0.35,0.35,0.35,0.0,0.0,0.0,0.0710746088228192,0.0220253009430336,0.000150137678081883,299,299,299 +"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170181818027131,0.0142758354390592,0.00128445720433125,0.35,0.35,0.35,0.0,0.0,0.0,0.0496827374528674,0.010487391275323,9.93712033705176e-05,299,299,299 +"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156715737470036,0.0112668739528815,0.00129575655051772,0.35,0.35,0.35,0.0,0.0,0.0,0.0275536230334743,0.00280742108219625,5.36023135630817e-05,299,299,299 +"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151437121859861,0.0104424292043013,0.00129973244445252,0.35,0.35,0.35,0.0,0.0,0.0,0.0141327834577345,0.00130396809535004,2.73624064797803e-05,299,299,299 +"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.255261988113913,0.0476029149803136,0.00249957332698816,0.35,0.35,0.35,0.0,0.0,0.0,0.213516352912783,0.0336004006029444,0.000818256522450913,299,299,299 +"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149954394620714,0.0367555313016414,0.00284555491289821,0.35,0.35,0.35,0.0,0.0,0.0,0.157348120967762,0.0310398596126881,0.000395287731756426,299,299,299 +"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.1339534949829,0.0327862235217742,0.00289288395593041,0.35,0.35,0.35,0.0,0.0,0.0,0.136955415476539,0.0314142302912386,0.00029147245816474,299,299,299 +"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.122524582945071,0.0211547506974247,0.002924599490842,0.35,0.35,0.35,0.0,0.0,0.0,0.107189237240671,0.0251396358874472,0.000191708065414385,299,299,299 +"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0995911309067432,0.0126786513365091,0.00295805545905117,0.35,0.35,0.35,0.0,0.0,0.0,0.0716041461376219,0.0104213011105497,0.000118459951222743,299,299,299 +"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.28965165104317,0.0463222357611467,0.00186936701287237,0.35,0.35,0.35,0.0,0.0,0.0,0.154078461319228,0.0328064576871952,0.000545349997355686,299,299,299 +"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194854321754547,0.0298774402228633,0.00204406121670449,0.35,0.35,0.35,0.0,0.0,0.0,0.0710477064913935,0.021838658216508,0.000204362249447335,299,299,299 +"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174333154255163,0.0242263171075138,0.00207234463151042,0.35,0.35,0.35,0.0,0.0,0.0,0.0416722187207939,0.0129129541368736,0.000121772941577827,299,299,299 +"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163226072290611,0.0203261755563394,0.00208431407512289,0.35,0.35,0.35,0.0,0.0,0.0,0.0212053684989626,0.0039277104912548,6.13121337896188e-05,299,299,299 +"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.159049278283893,0.0194069652468105,0.00208876391735952,0.35,0.35,0.35,0.0,0.0,0.0,0.0109419949541128,0.00194875599532487,3.12972557845455e-05,299,299,299 +"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248827535387845,0.048033430271864,0.00188349481680363,0.35,0.35,0.35,0.0,0.0,0.0,0.149269552893858,0.033107519813366,0.000503094490859781,299,299,299 +"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.151607823307439,0.0342364378609477,0.00204368795416302,0.35,0.35,0.35,0.0,0.0,0.0,0.0762064458544891,0.0274568438882678,0.000194776269611553,299,299,299 +"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125960981401414,0.0286867772578075,0.00207984351985909,0.35,0.35,0.35,0.0,0.0,0.0,0.0477410849778633,0.0220333334458629,0.000119565433226195,299,299,299 +"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109362773523813,0.0209818010211308,0.00210003319968129,0.35,0.35,0.35,0.0,0.0,0.0,0.0203094933614173,0.00819641576176799,5.52133247059982e-05,299,299,299 +"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102568055468329,0.0195499671391283,0.00210914474464573,0.35,0.35,0.35,0.0,0.0,0.0,0.00996242367557439,0.00303162336859383,2.73320529798663e-05,299,299,299 +"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701198745993371,0.0376646732319215,0.00123518735746814,0.35,0.35,0.35,0.0,0.0,0.0,0.0837909479652782,0.0142461690833718,0.000699424013110354,299,299,299 +"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689300841326672,0.0305668152861243,0.00132574584949807,0.35,0.35,0.35,0.0,0.0,0.0,0.0343183473999597,0.00387502876228319,0.000274594881305669,299,299,299 +"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689071387792248,0.0296139387993788,0.00131660701698079,0.35,0.35,0.35,0.0,0.0,0.0,0.0211282716804542,0.0023189052398669,0.000165773235811395,299,299,299 +"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689250067287498,0.0291660422905695,0.00131230086413988,0.35,0.35,0.35,0.0,0.0,0.0,0.0106146402663469,0.00118555620015251,8.30742237340875e-05,299,299,299 +"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689567485944398,0.0290651227894702,0.00131119397071469,0.35,0.35,0.35,0.0,0.0,0.0,0.00531401069854208,0.00059651399766035,4.16089073023098e-05,299,299,299 +"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307621156848986,0.0469076155274879,0.00118060377355725,0.35,0.35,0.35,0.0,0.0,0.0,0.0988607322094869,0.0292955180646468,0.000309765659919692,299,299,299 +"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226714852861466,0.0357507274073965,0.00127427679153086,0.35,0.35,0.35,0.0,0.0,0.0,0.0384383786913669,0.0165816848974677,0.000105970591118997,299,299,299 +"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212838874320091,0.0322032454380028,0.00128726842825159,0.35,0.35,0.35,0.0,0.0,0.0,0.0239815393630376,0.00841063284965137,6.46131376919829e-05,299,299,299 +"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203929273047352,0.0305801767530657,0.0012955980448668,0.35,0.35,0.35,0.0,0.0,0.0,0.0123598551177239,0.00374491573593368,3.22521110237516e-05,299,299,299 +"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200648735685256,0.0301543535588632,0.00129883471269564,0.35,0.35,0.35,0.0,0.0,0.0,0.00652106017908323,0.00187787952801339,1.62570791579883e-05,299,299,299 +"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.36558236650486,0.0335549189134318,0.00144208949425923,0.35,0.35,0.35,0.0,0.0,0.0,0.148377716167429,0.0277486623352778,0.000514732496951213,299,299,299 +"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308785205390333,0.0165956722196164,0.00151095355032825,0.35,0.35,0.35,0.0,0.0,0.0,0.072535645486854,0.00798484774825925,0.000207239260593192,299,299,299 +"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300767315042576,0.0141314102739456,0.00151398764425479,0.35,0.35,0.35,0.0,0.0,0.0,0.0460143131318849,0.00347183699601678,0.000127512452398774,299,299,299 +"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.29866515126707,0.0127455062410037,0.00150805628363623,0.35,0.35,0.35,0.0,0.0,0.0,0.024654596619276,0.00159193563761587,6.64482208125383e-05,299,299,299 +"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.29850635433234,0.0122508143217796,0.00150430836509382,0.35,0.35,0.35,0.0,0.0,0.0,0.0128440615061395,0.000753066031083087,3.39695397671074e-05,299,299,299 +"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701159101129457,0.0376796685724961,0.0012352715721896,0.35,0.35,0.35,0.0,0.0,0.0,0.0838446603479793,0.0142671505976251,0.000698586867626876,299,299,299 +"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689280990007572,0.0305681351269233,0.00132577267971387,0.35,0.35,0.35,0.0,0.0,0.0,0.0343443420505457,0.00387820063383894,0.000274661368602537,299,299,299 +"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689093861863916,0.0296110537390212,0.00131644237422315,0.35,0.35,0.35,0.0,0.0,0.0,0.0211285578989318,0.00231649664141576,0.000165651738363466,299,299,299 +"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689256854677127,0.0291649150740799,0.00131223585918137,0.35,0.35,0.35,0.0,0.0,0.0,0.0106130448865661,0.00118580102346143,8.31630810802384e-05,299,299,299 +"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689566841080693,0.0290653444493327,0.00131121026637596,0.35,0.35,0.35,0.0,0.0,0.0,0.00531405976841069,0.000594600258522409,4.16230901679743e-05,299,299,299 +"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933593761897754,0.0981489626394891,9.6152179391423e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.0215254478073352,0.00483459319123489,0.00026949890522783,299,299,299 +"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978663125675657,0.0989257580393516,0.000105275523399884,0.35,0.35,0.35,0.0,0.0,0.0,0.00717703249976041,0.00256226754822786,0.000389459474472075,299,299,299 +"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987516401238551,0.0993225357711021,0.000147484971973629,0.35,0.35,0.35,0.0,0.0,0.0,0.00427788573686546,0.00162109623799643,0.000553365867077396,299,299,299 +"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993794422134329,0.0996324856702317,0.000656466531465015,0.35,0.35,0.35,0.0,0.0,0.0,0.00224062902080407,0.000844759432744937,0.000810756210816362,299,299,299 +"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996854528450748,0.099808203506191,0.000942189885356755,0.35,0.35,0.35,0.0,0.0,0.0,0.00122018417072544,0.000427560599255016,0.000905192804034703,299,299,299 +"331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 +"332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 +"333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 +"334","IAR_LU_modified_topopro","Artery",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.45,0.45,0.45,0.45,0.45,0.45,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 +"335","IAR_LU_modified_topopro","Artery",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.45,0.45,0.45,0.45,0.45,0.45,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 +"336","IAR_LU_modified_topopro","asc lower intestine",10,0.69,0.029,0.00131,0.693578780504134,0.0415355532662142,0.00128103308321534,0.45,0.45,0.45,0.45,0.45,0.45,0.0970509533929983,0.0236823442169324,0.000819226976703706,299,299,299 +"337","IAR_LU_modified_topopro","asc lower intestine",30,0.69,0.029,0.00131,0.687810582166082,0.0307536147510959,0.0013382900074825,0.45,0.45,0.45,0.45,0.45,0.45,0.0353144143147495,0.00435917556566684,0.000286310629098516,299,299,299 +"338","IAR_LU_modified_topopro","asc lower intestine",50,0.69,0.029,0.00131,0.688721295105845,0.0296257289906534,0.00131893797782168,0.45,0.45,0.45,0.45,0.45,0.45,0.0212465084180936,0.00249048940612626,0.000169271398329773,299,299,299 +"339","IAR_LU_modified_topopro","asc lower intestine",100,0.69,0.029,0.00131,0.689845828253077,0.0290894790629384,0.001307501525805,0.45,0.45,0.45,0.45,0.45,0.45,0.0107195144339221,0.00127256025225725,8.483351662592e-05,299,299,299 +"340","IAR_LU_modified_topopro","asc lower intestine",200,0.69,0.029,0.00131,0.689825939977317,0.0290142120213539,0.00130847683836763,0.45,0.45,0.45,0.45,0.45,0.45,0.00555750265488881,0.000601294931615333,4.25435274843115e-05,299,299,299 +"341","IAR_LU_modified_topopro","Blood RA",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 +"342","IAR_LU_modified_topopro","Blood RA",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 +"343","IAR_LU_modified_topopro","Blood RA",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 +"344","IAR_LU_modified_topopro","Blood RA",100,1,0.1,0.00299999999999999,0.992841729039437,0.101349323826864,0.000128756548459845,0.45,0.45,0.45,0.45,0.45,0.45,0.00221529259008822,0.00248392321748498,0.00059616221943802,299,299,299 +"345","IAR_LU_modified_topopro","Blood RA",200,1,0.1,0.00299999999999999,0.996733417833381,0.100300500796704,0.000119815898517573,0.45,0.45,0.45,0.45,0.45,0.45,0.00117145725780955,0.0010088312565978,0.000632412135089655,299,299,299 +"346","IAR_LU_modified_topopro","Blood RV",10,1,0.1,0.003,0.920296650622447,0.125293033588126,0.000183447331029076,0.45,0.45,0.45,0.45,0.45,0.45,0.0226806331224816,0.0244333472528567,0.000584106662250704,299,299,299 +"347","IAR_LU_modified_topopro","Blood RV",30,1,0.1,0.003,0.974303991283049,0.106099273671618,0.000177399100029965,0.45,0.45,0.45,0.45,0.45,0.45,0.00748957829912673,0.00829547736585587,0.000678897095895847,299,299,299 +"348","IAR_LU_modified_topopro","Blood RV",50,1,0.1,0.003,0.984941578599012,0.103360682474306,0.000155910408472978,0.45,0.45,0.45,0.45,0.45,0.45,0.00447576585770208,0.00495498740401099,0.000644237899348858,299,299,299 +"349","IAR_LU_modified_topopro","Blood RV",100,1,0.1,0.003,0.992841726733044,0.101349324599851,0.000128756832432632,0.45,0.45,0.45,0.45,0.45,0.45,0.00221528951841681,0.00248392277283552,0.000596162471686369,299,299,299 +"350","IAR_LU_modified_topopro","Blood RV",200,1,0.1,0.003,0.996733416462042,0.100300501347642,0.000119817129447202,0.45,0.45,0.45,0.45,0.45,0.45,0.00117145369846812,0.00100883159979159,0.000632414305364842,299,299,299 +"351","IAR_LU_modified_topopro","desc lower intestine",10,0.69,0.029,0.00131,0.69353255335075,0.0415612047930334,0.00128569612698868,0.45,0.45,0.45,0.45,0.45,0.45,0.0970827204927868,0.0237638891843294,0.000822921583808708,299,299,299 +"352","IAR_LU_modified_topopro","desc lower intestine",30,0.69,0.029,0.00131,0.687529033131503,0.0307864248323058,0.00133992030563751,0.45,0.45,0.45,0.45,0.45,0.45,0.035340761383201,0.00434360018542071,0.00028557595909565,299,299,299 +"353","IAR_LU_modified_topopro","desc lower intestine",50,0.69,0.029,0.00131,0.688938060964252,0.0296002490456439,0.00131726956556521,0.45,0.45,0.45,0.45,0.45,0.45,0.0212284246706342,0.00247366753913384,0.000167933611102375,299,299,299 +"354","IAR_LU_modified_topopro","desc lower intestine",100,0.69,0.029,0.00131,0.689803781014276,0.0290940234426647,0.00130741787888986,0.45,0.45,0.45,0.45,0.45,0.45,0.0110120008034572,0.00127088911766303,8.45797308420218e-05,299,299,299 +"355","IAR_LU_modified_topopro","desc lower intestine",200,0.69,0.029,0.00131,0.689784230390506,0.0290189623695888,0.00130868523568613,0.45,0.45,0.45,0.45,0.45,0.45,0.00553639486233176,0.000608258415769342,4.23025595359244e-05,299,299,299 +"356","IAR_LU_modified_topopro","esophagus",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.45,0.45,0.45,0.45,0.45,0.45,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 +"357","IAR_LU_modified_topopro","esophagus",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.45,0.45,0.45,0.45,0.45,0.45,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 +"358","IAR_LU_modified_topopro","esophagus",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.45,0.45,0.45,0.45,0.45,0.45,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 +"359","IAR_LU_modified_topopro","esophagus",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.45,0.45,0.45,0.45,0.45,0.45,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 +"360","IAR_LU_modified_topopro","esophagus",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.45,0.45,0.45,0.45,0.45,0.45,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 +"361","IAR_LU_modified_topopro","esophagus cont",10,0.32,0.03,0.00167,0.398926936654307,0.0588713252075196,0.00154354861942928,0.45,0.45,0.45,0.45,0.45,0.45,0.124354467094499,0.0476506997030789,0.00052042935473135,299,299,299 +"362","IAR_LU_modified_topopro","esophagus cont",30,0.32,0.03,0.00167,0.330953766418143,0.036394693060028,0.00167461088683944,0.45,0.45,0.45,0.45,0.45,0.45,0.0399548834681909,0.0156808703863019,0.000161979902816445,299,299,299 +"363","IAR_LU_modified_topopro","esophagus cont",50,0.32,0.03,0.00167,0.327397496006251,0.0315355376164521,0.00166410503106644,0.45,0.45,0.45,0.45,0.45,0.45,0.0254894333299211,0.00717453365690831,9.86566930375474e-05,299,299,299 +"364","IAR_LU_modified_topopro","esophagus cont",100,0.32,0.03,0.00167,0.32226703944526,0.0301401289644474,0.00166634357788452,0.45,0.45,0.45,0.45,0.45,0.45,0.0136834762062218,0.00246460643082146,4.88671769751842e-05,299,299,299 +"365","IAR_LU_modified_topopro","esophagus cont",200,0.32,0.03,0.00167,0.320331698272811,0.0300252034037337,0.00166847809014597,0.45,0.45,0.45,0.45,0.45,0.45,0.00704808997232578,0.0012203287948119,2.40862938809799e-05,299,299,299 +"366","IAR_LU_modified_topopro","Left kidney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.45,0.45,0.45,0.45,0.45,0.45,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 +"367","IAR_LU_modified_topopro","Left kidney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.45,0.45,0.45,0.45,0.45,0.45,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 +"368","IAR_LU_modified_topopro","Left kidney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.45,0.45,0.45,0.45,0.45,0.45,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 +"369","IAR_LU_modified_topopro","Left kidney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.45,0.45,0.45,0.45,0.45,0.45,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 +"370","IAR_LU_modified_topopro","Left kidney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.45,0.45,0.45,0.45,0.45,0.45,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 +"371","IAR_LU_modified_topopro","left kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.45,0.45,0.45,0.45,0.45,0.45,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 +"372","IAR_LU_modified_topopro","left kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.45,0.45,0.45,0.45,0.45,0.45,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 +"373","IAR_LU_modified_topopro","left kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.45,0.45,0.45,0.45,0.45,0.45,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 +"374","IAR_LU_modified_topopro","left kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.45,0.45,0.45,0.45,0.45,0.45,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 +"375","IAR_LU_modified_topopro","left kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.45,0.45,0.45,0.45,0.45,0.45,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 +"376","IAR_LU_modified_topopro","Liver",10,0.11,0.1,0.0015,0.255827144238669,0.0957949328224053,0.00130092643991093,0.45,0.45,0.45,0.45,0.45,0.45,0.133644073612816,0.0684386590799032,0.000379476628758943,299,299,299 +"377","IAR_LU_modified_topopro","Liver",30,0.11,0.1,0.0015,0.133802596180871,0.121405497015874,0.00147252862365529,0.45,0.45,0.45,0.45,0.45,0.45,0.0323313786170407,0.0504511851101522,8.92081827197948e-05,299,299,299 +"378","IAR_LU_modified_topopro","Liver",50,0.11,0.1,0.0015,0.118729927642186,0.11773946935276,0.00148881545258651,0.45,0.45,0.45,0.45,0.45,0.45,0.0167411687834778,0.0426333639052342,4.73600868068698e-05,299,299,299 +"379","IAR_LU_modified_topopro","Liver",100,0.11,0.1,0.0015,0.112266606855168,0.105433216396753,0.00149419894599423,0.45,0.45,0.45,0.45,0.45,0.45,0.00902108432024771,0.030662316383553,2.42747200177698e-05,299,299,299 +"380","IAR_LU_modified_topopro","Liver",200,0.11,0.1,0.0015,0.110995126491855,0.0973924440504551,0.00149623920986603,0.45,0.45,0.45,0.45,0.45,0.45,0.00518590399827883,0.0106183419451747,1.20619999134246e-05,299,299,299 +"381","IAR_LU_modified_topopro","Myocardium LV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.45,0.45,0.45,0.45,0.45,0.45,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 +"382","IAR_LU_modified_topopro","Myocardium LV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.45,0.45,0.45,0.45,0.45,0.45,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 +"383","IAR_LU_modified_topopro","Myocardium LV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.45,0.45,0.45,0.45,0.45,0.45,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 +"384","IAR_LU_modified_topopro","Myocardium LV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.45,0.45,0.45,0.45,0.45,0.45,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 +"385","IAR_LU_modified_topopro","Myocardium LV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.45,0.45,0.45,0.45,0.45,0.45,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 +"386","IAR_LU_modified_topopro","myocardium ra",10,0.07,0.07,0.0015,0.233345797803224,0.0758206228669585,0.00130187536524909,0.45,0.45,0.45,0.45,0.45,0.45,0.133957644380287,0.066388571559589,0.000363650445363682,299,299,299 +"387","IAR_LU_modified_topopro","myocardium ra",30,0.07,0.07,0.0015,0.108856126532739,0.0964456670697446,0.0014567334689066,0.45,0.45,0.45,0.45,0.45,0.45,0.0440157368882964,0.0596090389915254,0.000103224107835832,299,299,299 +"388","IAR_LU_modified_topopro","myocardium ra",50,0.07,0.07,0.0015,0.0854880561907263,0.0973144944749237,0.00148281482291791,0.45,0.45,0.45,0.45,0.45,0.45,0.0207373834323344,0.0497994361924948,5.42735308861248e-05,299,299,299 +"389","IAR_LU_modified_topopro","myocardium ra",100,0.07,0.07,0.0015,0.0745374604485976,0.0807036222064792,0.00149478405306962,0.45,0.45,0.45,0.45,0.45,0.45,0.00997544057913432,0.0315117637210663,2.58398414525695e-05,299,299,299 +"390","IAR_LU_modified_topopro","myocardium ra",200,0.07,0.07,0.0015,0.070924223444913,0.0715684911066608,0.00149809258018433,0.45,0.45,0.45,0.45,0.45,0.45,0.00539980707410929,0.0133990279370298,1.28312643370667e-05,299,299,299 +"391","IAR_LU_modified_topopro","myocardium RV",10,0.15,0.08,0.0024,0.306954852656124,0.0943009987827146,0.00202784262785305,0.45,0.45,0.45,0.45,0.45,0.45,0.165573396841783,0.065781153268606,0.000643267096890125,299,299,299 +"392","IAR_LU_modified_topopro","myocardium RV",30,0.15,0.08,0.0024,0.169757489610859,0.10488807783077,0.00236635931265902,0.45,0.45,0.45,0.45,0.45,0.45,0.0385001014665415,0.0467473435871219,0.000156089122595165,299,299,299 +"393","IAR_LU_modified_topopro","myocardium RV",50,0.15,0.08,0.0024,0.157582473207419,0.0909293847910689,0.00238707119337443,0.45,0.45,0.45,0.45,0.45,0.45,0.0195579333675529,0.0339628137746176,8.62803715047694e-05,299,299,299 +"394","IAR_LU_modified_topopro","myocardium RV",100,0.15,0.08,0.0024,0.151716774259533,0.0816144176516515,0.002396175011365,0.45,0.45,0.45,0.45,0.45,0.45,0.0104863901246036,0.0157070807330071,4.33034596143587e-05,299,299,299 +"395","IAR_LU_modified_topopro","myocardium RV",200,0.15,0.08,0.0024,0.150182177448741,0.0804860661827032,0.0023987486740328,0.45,0.45,0.45,0.45,0.45,0.45,0.00550732604342893,0.00694404313739923,2.18581503502004e-05,299,299,299 +"396","IAR_LU_modified_topopro","pancreas",10,0.15,0.01,0.00129999999999999,0.280147618787791,0.0550963471623122,0.00116554559543274,0.45,0.45,0.45,0.45,0.45,0.45,0.154200671687761,0.0601150850496964,0.000411333431647301,299,299,299 +"397","IAR_LU_modified_topopro","pancreas",30,0.15,0.01,0.00129999999999999,0.180292442524659,0.0283670218235359,0.00128220682523432,0.45,0.45,0.45,0.45,0.45,0.45,0.0758183523997101,0.0373025951640522,0.000154889895612203,299,299,299 +"398","IAR_LU_modified_topopro","pancreas",50,0.15,0.01,0.00129999999999999,0.160883491285031,0.0172849139656884,0.00130037131461184,0.45,0.45,0.45,0.45,0.45,0.45,0.0520817767720244,0.0152607616127078,0.000103316331968376,299,299,299 +"399","IAR_LU_modified_topopro","pancreas",100,0.15,0.01,0.00129999999999999,0.154976949063361,0.0120069271284118,0.00129977292515898,0.45,0.45,0.45,0.45,0.45,0.45,0.0334646725252195,0.00446344579568468,6.40649593388859e-05,299,299,299 +"400","IAR_LU_modified_topopro","pancreas",200,0.15,0.01,0.00129999999999999,0.155286959430167,0.0101428890293175,0.00129270742735421,0.45,0.45,0.45,0.45,0.45,0.45,0.0172333080337744,0.00153439739326154,3.24157917287038e-05,299,299,299 +"401","IAR_LU_modified_topopro","pericardium",10,0.07,0.00999999999999999,0.003,0.304246595967149,0.0630491156685354,0.00235482700518371,0.45,0.45,0.45,0.45,0.45,0.45,0.260685324735516,0.0637178985095701,0.000993597879656733,299,299,299 +"402","IAR_LU_modified_topopro","pericardium",30,0.07,0.00999999999999999,0.003,0.176641493642551,0.0520279343575831,0.0028348649822054,0.45,0.45,0.45,0.45,0.45,0.45,0.207967296454401,0.0596888181268739,0.000571521838568284,299,299,299 +"403","IAR_LU_modified_topopro","pericardium",50,0.07,0.00999999999999999,0.003,0.146227380203304,0.042647287703342,0.00291329895112631,0.45,0.45,0.45,0.45,0.45,0.45,0.159901072514046,0.0522232847404345,0.000369579678167213,299,299,299 +"404","IAR_LU_modified_topopro","pericardium",100,0.07,0.00999999999999999,0.003,0.137535248314898,0.0274694017620213,0.0029193188543007,0.45,0.45,0.45,0.45,0.45,0.45,0.131305938197915,0.0405847885689576,0.000236989816000259,299,299,299 +"405","IAR_LU_modified_topopro","pericardium",200,0.07,0.00999999999999999,0.003,0.106876601462374,0.0141821859583173,0.00295175861415913,0.45,0.45,0.45,0.45,0.45,0.45,0.0866370026871013,0.0154683273621364,0.000137465282729351,299,299,299 +"406","IAR_LU_modified_topopro","right kidney medulla",10,0.158,0.019,0.00209,0.318917416065618,0.0621095618305791,0.00178860003008236,0.45,0.45,0.45,0.45,0.45,0.45,0.189533101093446,0.0605375761371206,0.000660410162191124,299,299,299 +"407","IAR_LU_modified_topopro","right kidney medulla",30,0.158,0.019,0.00209,0.190749445565337,0.0372477326924959,0.00205053039921333,0.45,0.45,0.45,0.45,0.45,0.45,0.0808031451501109,0.0349133393996595,0.000222453870555396,299,299,299 +"408","IAR_LU_modified_topopro","right kidney medulla",50,0.158,0.019,0.00209,0.169372881342249,0.0278857998036769,0.00208326297404402,0.45,0.45,0.45,0.45,0.45,0.45,0.0433670931193238,0.0211177357401279,0.000122938979359554,299,299,299 +"409","IAR_LU_modified_topopro","right kidney medulla",100,0.158,0.019,0.00209,0.162374703281902,0.0207809712688809,0.0020894910923204,0.45,0.45,0.45,0.45,0.45,0.45,0.0230383307862557,0.005620650702712,6.52475984704075e-05,299,299,299 +"410","IAR_LU_modified_topopro","right kidney medulla",200,0.158,0.019,0.00209,0.159988751798143,0.0191680232180677,0.00208790626332965,0.45,0.45,0.45,0.45,0.45,0.45,0.0118001572678388,0.00212506778893592,3.1957301785576e-05,299,299,299 +"411","IAR_LU_modified_topopro","Right kydney cortex",10,0.097,0.02,0.00212,0.275879760198796,0.0642623588071875,0.00181750745642748,0.45,0.45,0.45,0.45,0.45,0.45,0.185636096903067,0.0619577607804464,0.000603294190070171,299,299,299 +"412","IAR_LU_modified_topopro","Right kydney cortex",30,0.097,0.02,0.00212,0.159436749159631,0.0469348105973253,0.00203288915442743,0.45,0.45,0.45,0.45,0.45,0.45,0.100142398233387,0.0483836039095357,0.000246305038835589,299,299,299 +"413","IAR_LU_modified_topopro","Right kydney cortex",50,0.097,0.02,0.00212,0.125434307488605,0.0365494965007194,0.00207999886787401,0.45,0.45,0.45,0.45,0.45,0.45,0.0654540852835635,0.0346957474108831,0.000143494536008623,299,299,299 +"414","IAR_LU_modified_topopro","Right kydney cortex",100,0.097,0.02,0.00212,0.105310501866794,0.0241322303399197,0.00211013177332686,0.45,0.45,0.45,0.45,0.45,0.45,0.0231278340590651,0.0133327959130772,6.11226472762704e-05,299,299,299 +"415","IAR_LU_modified_topopro","Right kydney cortex",200,0.097,0.02,0.00212,0.100113058380308,0.0204321790737277,0.00211637119224563,0.45,0.45,0.45,0.45,0.45,0.45,0.0114321842012663,0.00367880504189419,2.87545709742803e-05,299,299,299 +"416","IAR_LU_modified_topopro","small intestine",10,0.69,0.029,0.00131,0.694262245048376,0.041376031786243,0.00127575746503216,0.45,0.45,0.45,0.45,0.45,0.45,0.0967837138191552,0.0233612728169214,0.000821652336598365,299,299,299 +"417","IAR_LU_modified_topopro","small intestine",30,0.69,0.029,0.00131,0.687722331121821,0.0307580006808991,0.00134021784981736,0.45,0.45,0.45,0.45,0.45,0.45,0.0351426096506969,0.00435469175637002,0.000284059232762604,299,299,299 +"418","IAR_LU_modified_topopro","small intestine",50,0.69,0.029,0.00131,0.68908448667331,0.0295719444686926,0.00131656193442396,0.45,0.45,0.45,0.45,0.45,0.45,0.0214793767768495,0.00247568869798116,0.000168319670616108,299,299,299 +"419","IAR_LU_modified_topopro","small intestine",100,0.69,0.029,0.00131,0.689765613332017,0.0290940329273443,0.00130808320972436,0.45,0.45,0.45,0.45,0.45,0.45,0.0109523316691925,0.00123761959754598,8.5316967356735e-05,299,299,299 +"420","IAR_LU_modified_topopro","small intestine",200,0.69,0.029,0.00131,0.689905499433019,0.0290056437597644,0.00130824381017983,0.45,0.45,0.45,0.45,0.45,0.45,0.00544972908667523,0.000598861686247944,4.18259481209846e-05,299,299,299 +"421","IAR_LU_modified_topopro","spleen",10,0.2,0.03,0.00129999999999999,0.319868006115112,0.063392313341736,0.00114701986395022,0.45,0.45,0.45,0.45,0.45,0.45,0.127028194828194,0.0542166947340963,0.000388299783289906,299,299,299 +"422","IAR_LU_modified_topopro","spleen",30,0.2,0.03,0.00129999999999999,0.215360997563175,0.0442606501281254,0.00130354720611688,0.45,0.45,0.45,0.45,0.45,0.45,0.0365624032335726,0.0261446003020259,0.000105551124736129,299,299,299 +"423","IAR_LU_modified_topopro","spleen",50,0.2,0.03,0.00129999999999999,0.208856498625777,0.0349379828827892,0.00129997254980305,0.45,0.45,0.45,0.45,0.45,0.45,0.0232436380421739,0.0134864153624437,6.61171024217637e-05,299,299,299 +"424","IAR_LU_modified_topopro","spleen",100,0.2,0.03,0.00129999999999999,0.204200673121755,0.0304239196137196,0.00129577459955986,0.45,0.45,0.45,0.45,0.45,0.45,0.0129647113395538,0.00465726530553315,3.35882997092888e-05,299,299,299 +"425","IAR_LU_modified_topopro","spleen",200,0.2,0.03,0.00129999999999999,0.200822327913181,0.0300525395093674,0.00129839806116424,0.45,0.45,0.45,0.45,0.45,0.45,0.00653017924354621,0.00186535860535101,1.63191536785758e-05,299,299,299 +"426","IAR_LU_modified_topopro","st wall",10,0.3,0.012,0.0015,0.398249536075877,0.0414327592705561,0.0013308464645949,0.45,0.45,0.45,0.45,0.45,0.45,0.179875566567662,0.0488900917459887,0.000607086675688919,299,299,299 +"427","IAR_LU_modified_topopro","st wall",30,0.3,0.012,0.0015,0.304981866410044,0.019062815360902,0.00152406395152592,0.45,0.45,0.45,0.45,0.45,0.45,0.0863985064932302,0.0159978388575776,0.000239113806683646,299,299,299 +"428","IAR_LU_modified_topopro","st wall",50,0.3,0.012,0.0015,0.303869758313058,0.0142369519703813,0.00151399551647258,0.45,0.45,0.45,0.45,0.45,0.45,0.05621027771121,0.00488788692716998,0.000149801012378724,299,299,299 +"429","IAR_LU_modified_topopro","st wall",100,0.3,0.012,0.0015,0.305112114866144,0.0122592880475803,0.00149760569421531,0.45,0.45,0.45,0.45,0.45,0.45,0.0273933903749877,0.00163482678247482,7.13546414172466e-05,299,299,299 +"430","IAR_LU_modified_topopro","st wall",200,0.3,0.012,0.0015,0.301896746555565,0.0120195655148351,0.00149805858945093,0.45,0.45,0.45,0.45,0.45,0.45,0.0139779415391202,0.000700939984225378,3.50081487540217e-05,299,299,299 +"431","IAR_LU_modified_topopro","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.693178885237798,0.0415791676918557,0.0012877057786336,0.45,0.45,0.45,0.45,0.45,0.45,0.0968563027027587,0.0237449984222352,0.000825061448241474,299,299,299 +"432","IAR_LU_modified_topopro","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.687355419209049,0.0307945973352347,0.00134083836319301,0.45,0.45,0.45,0.45,0.45,0.45,0.0346999752926432,0.00430590939666401,0.000281486176019419,299,299,299 +"433","IAR_LU_modified_topopro","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688922163392087,0.0295911195710815,0.00131794686365502,0.45,0.45,0.45,0.45,0.45,0.45,0.0211777668762992,0.0024591080293894,0.000167887957689605,299,299,299 +"434","IAR_LU_modified_topopro","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689976252210824,0.0290643775264531,0.00130712971409723,0.45,0.45,0.45,0.45,0.45,0.45,0.0111596605740458,0.00127230067708064,8.6055448007924e-05,299,299,299 +"435","IAR_LU_modified_topopro","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689888170406535,0.0290018785916859,0.00130847256340122,0.45,0.45,0.45,0.45,0.45,0.45,0.00546502050565497,0.000593775344251464,4.23249708031501e-05,299,299,299 +"436","IAR_LU_modified_topopro","Vein",10,1,0.1,0.00299999999999999,0.920340948544868,0.125267602952588,0.000182829755987327,0.45,0.45,0.45,0.45,0.45,0.45,0.0225948248460019,0.0244450623949952,0.000583405196732458,299,299,299 +"437","IAR_LU_modified_topopro","Vein",30,1,0.1,0.00299999999999999,0.974304007878179,0.106099271208312,0.00017739920965156,0.45,0.45,0.45,0.45,0.45,0.45,0.0074896310418671,0.00829547616520967,0.000678898150509279,299,299,299 +"438","IAR_LU_modified_topopro","Vein",50,1,0.1,0.00299999999999999,0.984941554598225,0.103360680622716,0.000155910848324994,0.45,0.45,0.45,0.45,0.45,0.45,0.00447571056831266,0.00495498786932744,0.000644242026928185,299,299,299 +"439","IAR_LU_modified_topopro","Vein",100,1,0.1,0.00299999999999999,0.992841725680271,0.101349324298109,0.000128757028592843,0.45,0.45,0.45,0.45,0.45,0.45,0.00221528819623711,0.0024839226995908,0.000596162110415501,299,299,299 +"440","IAR_LU_modified_topopro","Vein",200,1,0.1,0.00299999999999999,0.996733416187604,0.100300502391623,0.000119817078027757,0.45,0.45,0.45,0.45,0.45,0.45,0.00117146069783939,0.00100883111028152,0.000632413732960071,299,299,299 +"441","IAR_LU_segmented_2step","Artery",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 +"442","IAR_LU_segmented_2step","Artery",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 +"443","IAR_LU_segmented_2step","Artery",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 +"444","IAR_LU_segmented_2step","Artery",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 +"445","IAR_LU_segmented_2step","Artery",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 +"446","IAR_LU_segmented_2step","asc lower intestine",10,0.69,0.029,0.00131,0.690373035820094,0.0320610845759972,0.00128397090175435,0.45,0.45,0.45,0.45,0.45,0.45,0.111830765201228,0.0149363990134043,0.0010310750352814,299,299,299 +"447","IAR_LU_segmented_2step","asc lower intestine",30,0.69,0.029,0.00131,0.688190385607032,0.0294222676858039,0.00132700874616123,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734637691971,0.00411936458229695,0.000393814792063893,299,299,299 +"448","IAR_LU_segmented_2step","asc lower intestine",50,0.69,0.029,0.00131,0.688983137072148,0.0291736871195673,0.00131674147785283,0.45,0.45,0.45,0.45,0.45,0.45,0.0269406505113919,0.00243185752511053,0.000231513954749497,299,299,299 +"449","IAR_LU_segmented_2step","asc lower intestine",100,0.69,0.029,0.00131,0.689404252989227,0.029066163092573,0.00131311787679812,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745367049808,0.00120919315577138,0.000114727932084214,299,299,299 +"450","IAR_LU_segmented_2step","asc lower intestine",200,0.69,0.029,0.00131,0.689565491171274,0.0290364333672251,0.00131259560662869,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757581944161,0.000603840898929335,5.72226395519967e-05,299,299,299 +"451","IAR_LU_segmented_2step","Blood RA",10,1,0.1,0.00299999999999999,0.921258294041451,0.0983174229518652,0.000602377539349993,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235599804078,0.00488173576584753,0.000954240122983693,299,299,299 +"452","IAR_LU_segmented_2step","Blood RA",30,1,0.1,0.00299999999999999,0.976019933219864,0.0994829647762301,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.00833101268219634,0.00160385964996264,0.000954268289514292,299,299,299 +"453","IAR_LU_segmented_2step","Blood RA",50,1,0.1,0.00299999999999999,0.98599487225535,0.0996813109863689,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494309800733521,0.000986358091235049,0.000954266532348308,299,299,299 +"454","IAR_LU_segmented_2step","Blood RA",100,1,0.1,0.00299999999999999,0.993268900338893,0.0998299735833625,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241285763280533,0.000513921040446995,0.000954286483399826,299,299,299 +"455","IAR_LU_segmented_2step","Blood RA",200,1,0.1,0.00299999999999999,0.996782474408809,0.0999083722402424,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119135923054532,0.000267557047285326,0.000954060412685357,299,299,299 +"456","IAR_LU_segmented_2step","Blood RV",10,1,0.1,0.003,0.921258294005175,0.0983174229498556,0.000602377539314825,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235599273312,0.0048817357689704,0.000954240122896554,299,299,299 +"457","IAR_LU_segmented_2step","Blood RV",30,1,0.1,0.003,0.976019933224227,0.0994829647759296,0.000602393052438452,0.45,0.45,0.45,0.45,0.45,0.45,0.0083310126686943,0.0016038596496585,0.000954268289514534,299,299,299 +"458","IAR_LU_segmented_2step","Blood RV",50,1,0.1,0.003,0.985994872256549,0.0996813109859528,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494309801013262,0.000986358092526008,0.000954266532348308,299,299,299 +"459","IAR_LU_segmented_2step","Blood RV",100,1,0.1,0.003,0.993268900338895,0.0998299735833862,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241285763266283,0.00051392104017594,0.000954286483399826,299,299,299 +"460","IAR_LU_segmented_2step","Blood RV",200,1,0.1,0.003,0.996782474408774,0.0999083722401707,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119135923032626,0.000267557047652887,0.000954060412685357,299,299,299 +"461","IAR_LU_segmented_2step","desc lower intestine",10,0.69,0.029,0.00131,0.690373037187929,0.032061084511974,0.0012839709016351,0.45,0.45,0.45,0.45,0.45,0.45,0.111830764423804,0.0149363990086909,0.0010310750351664,299,299,299 +"462","IAR_LU_segmented_2step","desc lower intestine",30,0.69,0.029,0.00131,0.688190385604399,0.0294222676864886,0.00132700874615634,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734637614442,0.00411936458331029,0.000393814791852722,299,299,299 +"463","IAR_LU_segmented_2step","desc lower intestine",50,0.69,0.029,0.00131,0.688983137070003,0.0291736871196476,0.00131674147781799,0.45,0.45,0.45,0.45,0.45,0.45,0.0269406505267064,0.00243185752517155,0.000231513954746746,299,299,299 +"464","IAR_LU_segmented_2step","desc lower intestine",100,0.69,0.029,0.00131,0.689404252988794,0.0290661630927041,0.00131311787679321,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745367105457,0.00120919315606283,0.0001147279321005,299,299,299 +"465","IAR_LU_segmented_2step","desc lower intestine",200,0.69,0.029,0.00131,0.689565491168261,0.0290364333673394,0.00131259560662137,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757582228583,0.000603840898965895,5.72226395589749e-05,299,299,299 +"466","IAR_LU_segmented_2step","esophagus",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.45,0.45,0.45,0.45,0.45,0.45,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 +"467","IAR_LU_segmented_2step","esophagus",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.45,0.45,0.45,0.45,0.45,0.45,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 +"468","IAR_LU_segmented_2step","esophagus",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.45,0.45,0.45,0.45,0.45,0.45,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 +"469","IAR_LU_segmented_2step","esophagus",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.45,0.45,0.45,0.45,0.45,0.45,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 +"470","IAR_LU_segmented_2step","esophagus",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.45,0.45,0.45,0.45,0.45,0.45,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 +"471","IAR_LU_segmented_2step","esophagus cont",10,0.32,0.03,0.00167,0.340586263973398,0.0395260493762899,0.00169537630410881,0.45,0.45,0.45,0.45,0.45,0.45,0.144394990192821,0.0289361367063141,0.000699310473838228,299,299,299 +"472","IAR_LU_segmented_2step","esophagus cont",30,0.32,0.03,0.00167,0.321987926674666,0.0319222091970032,0.00167589442416234,0.45,0.45,0.45,0.45,0.45,0.45,0.0506566204651877,0.0111320504680191,0.000225181332906699,299,299,299 +"473","IAR_LU_segmented_2step","esophagus cont",50,0.32,0.03,0.00167,0.320433792735222,0.0306484294173753,0.00167205798914533,0.45,0.45,0.45,0.45,0.45,0.45,0.030400652601224,0.00593603846174356,0.000134201428225459,299,299,299 +"474","IAR_LU_segmented_2step","esophagus cont",100,0.32,0.03,0.00167,0.319848880176539,0.03018634984756,0.00167069900564771,0.45,0.45,0.45,0.45,0.45,0.45,0.0151616073789282,0.00289360407093111,6.69010973810829e-05,299,299,299 +"475","IAR_LU_segmented_2step","esophagus cont",200,0.32,0.03,0.00167,0.319780244452183,0.0300697046349972,0.00167049624614464,0.45,0.45,0.45,0.45,0.45,0.45,0.00757222827911344,0.00144131399200067,3.34227716805246e-05,299,299,299 +"476","IAR_LU_segmented_2step","Left kidney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.45,0.45,0.45,0.45,0.45,0.45,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 +"477","IAR_LU_segmented_2step","Left kidney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.45,0.45,0.45,0.45,0.45,0.45,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 +"478","IAR_LU_segmented_2step","Left kidney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.45,0.45,0.45,0.45,0.45,0.45,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 +"479","IAR_LU_segmented_2step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.45,0.45,0.45,0.45,0.45,0.45,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 +"480","IAR_LU_segmented_2step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.45,0.45,0.45,0.45,0.45,0.45,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 +"481","IAR_LU_segmented_2step","left kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.45,0.45,0.45,0.45,0.45,0.45,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 +"482","IAR_LU_segmented_2step","left kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.45,0.45,0.45,0.45,0.45,0.45,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 +"483","IAR_LU_segmented_2step","left kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.45,0.45,0.45,0.45,0.45,0.45,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 +"484","IAR_LU_segmented_2step","left kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.45,0.45,0.45,0.45,0.45,0.45,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 +"485","IAR_LU_segmented_2step","left kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.45,0.45,0.45,0.45,0.45,0.45,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 +"486","IAR_LU_segmented_2step","Liver",10,0.11,0.1,0.0015,0.144577570411426,0.0600041637865293,0.00152084809188092,0.45,0.45,0.45,0.45,0.45,0.45,0.123335225696709,0.0417372816084262,0.000472993211159269,299,299,299 +"487","IAR_LU_segmented_2step","Liver",30,0.11,0.1,0.0015,0.112815078932074,0.0768823300474684,0.00150154707211704,0.45,0.45,0.45,0.45,0.45,0.45,0.0402419901201215,0.0310439867234663,0.000152137743344338,299,299,299 +"488","IAR_LU_segmented_2step","Liver",50,0.11,0.1,0.0015,0.1099576380775,0.0845663044192014,0.00150017699860271,0.45,0.45,0.45,0.45,0.45,0.45,0.0218836166694104,0.022477885458141,9.09784274199351e-05,299,299,299 +"489","IAR_LU_segmented_2step","Liver",100,0.11,0.1,0.0015,0.10944935129917,0.0916622252527853,0.00149980895512081,0.45,0.45,0.45,0.45,0.45,0.45,0.010208281089791,0.0124943171981403,4.54189474712779e-05,299,299,299 +"490","IAR_LU_segmented_2step","Liver",200,0.11,0.1,0.0015,0.109652146434559,0.0956035913947621,0.00149983471124947,0.45,0.45,0.45,0.45,0.45,0.45,0.00504024948517217,0.00673413090644371,2.26988859055568e-05,299,299,299 +"491","IAR_LU_segmented_2step","Myocardium LV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.45,0.45,0.45,0.45,0.45,0.45,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 +"492","IAR_LU_segmented_2step","Myocardium LV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.45,0.45,0.45,0.45,0.45,0.45,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 +"493","IAR_LU_segmented_2step","Myocardium LV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.45,0.45,0.45,0.45,0.45,0.45,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 +"494","IAR_LU_segmented_2step","Myocardium LV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.45,0.45,0.45,0.45,0.45,0.45,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 +"495","IAR_LU_segmented_2step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.45,0.45,0.45,0.45,0.45,0.45,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 +"496","IAR_LU_segmented_2step","myocardium ra",10,0.07,0.07,0.0015,0.119350871187795,0.0526522113471146,0.00151975238387796,0.45,0.45,0.45,0.45,0.45,0.45,0.122175673607144,0.0433817113789841,0.000451902244673881,299,299,299 +"497","IAR_LU_segmented_2step","myocardium ra",30,0.07,0.07,0.0015,0.0792678235673555,0.0630122253969336,0.00150135088654914,0.45,0.45,0.45,0.45,0.45,0.45,0.0453965721112215,0.0370205317703307,0.000145531665798083,299,299,299 +"498","IAR_LU_segmented_2step","myocardium ra",50,0.07,0.07,0.0015,0.0732403881564398,0.0670725405856644,0.00150012323561766,0.45,0.45,0.45,0.45,0.45,0.45,0.0252082854080656,0.031219546230532,8.70510202022302e-05,299,299,299 +"499","IAR_LU_segmented_2step","myocardium ra",100,0.07,0.07,0.0015,0.0706178298624483,0.0704430265419414,0.00149980568738501,0.45,0.45,0.45,0.45,0.45,0.45,0.0111951905157038,0.0218907234720239,4.34633528226247e-05,299,299,299 +"500","IAR_LU_segmented_2step","myocardium ra",200,0.07,0.07,0.0015,0.0700882021755177,0.0711624170940203,0.00149983895305835,0.45,0.45,0.45,0.45,0.45,0.45,0.00530076418974235,0.0136048479725231,2.17222536755328e-05,299,299,299 +"501","IAR_LU_segmented_2step","myocardium RV",10,0.15,0.08,0.0024,0.216176462093417,0.0587745064264794,0.00236368743581685,0.45,0.45,0.45,0.45,0.45,0.45,0.171881507598995,0.0401426060790872,0.00083406866022113,299,299,299 +"502","IAR_LU_segmented_2step","myocardium RV",30,0.15,0.08,0.0024,0.157092624615292,0.0735422874811554,0.00241303581609851,0.45,0.45,0.45,0.45,0.45,0.45,0.054239386775933,0.0290662382493536,0.00029635766628923,299,299,299 +"503","IAR_LU_segmented_2step","myocardium RV",50,0.15,0.08,0.0024,0.152059688939565,0.0774471556451954,0.00240494096841768,0.45,0.45,0.45,0.45,0.45,0.45,0.0288164349419838,0.0222586680361696,0.000176237551477804,299,299,299 +"504","IAR_LU_segmented_2step","myocardium RV",100,0.15,0.08,0.0024,0.150244355906902,0.0802205089580956,0.00240130488986735,0.45,0.45,0.45,0.45,0.45,0.45,0.0129998410911865,0.0141228435254751,8.77945387539921e-05,299,299,299 +"505","IAR_LU_segmented_2step","myocardium RV",200,0.15,0.08,0.0024,0.149981615838326,0.0805727786392947,0.00240036245148733,0.45,0.45,0.45,0.45,0.45,0.45,0.00636500187260487,0.0083863709891494,4.38595760806971e-05,299,299,299 +"506","IAR_LU_segmented_2step","pancreas",10,0.15,0.01,0.00129999999999999,0.167366769534782,0.0306978926979998,0.00134733544815708,0.45,0.45,0.45,0.45,0.45,0.45,0.138138076806016,0.0353119819659889,0.000431649675978663,299,299,299 +"507","IAR_LU_segmented_2step","pancreas",30,0.15,0.01,0.00129999999999999,0.141203985588467,0.0176354726093115,0.00133082551202286,0.45,0.45,0.45,0.45,0.45,0.45,0.0600511085386784,0.0196812578308465,0.000139043274945453,299,299,299 +"508","IAR_LU_segmented_2step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697420917372,0.0134860811681421,0.00132993185853207,0.45,0.45,0.45,0.45,0.45,0.45,0.0376186380241066,0.00990391939690809,8.31806812154377e-05,299,299,299 +"509","IAR_LU_segmented_2step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323219863,0.0115476660390234,0.00132978575875502,0.45,0.45,0.45,0.45,0.45,0.45,0.0195144380514801,0.00241788894796007,4.15321586456171e-05,299,299,299 +"510","IAR_LU_segmented_2step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024845707517,0.0112236005383082,0.00132987961477637,0.45,0.45,0.45,0.45,0.45,0.45,0.00985292081870204,0.00107217148365358,2.07569285081239e-05,299,299,299 +"511","IAR_LU_segmented_2step","pericardium",10,0.07,0.00999999999999999,0.003,0.22320565207551,0.0265364476482412,0.00273701082230784,0.45,0.45,0.45,0.45,0.45,0.45,0.23206537977111,0.0359088326115604,0.00088504212200084,299,299,299 +"512","IAR_LU_segmented_2step","pericardium",30,0.07,0.00999999999999999,0.003,0.104347274972772,0.0256374434531395,0.00304612925895245,0.45,0.45,0.45,0.45,0.45,0.45,0.114261684103799,0.0332933654950249,0.00039105626191339,299,299,299 +"513","IAR_LU_segmented_2step","pericardium",50,0.07,0.00999999999999999,0.003,0.0814011586963573,0.0244933209869785,0.00304009046144298,0.45,0.45,0.45,0.45,0.45,0.45,0.0795667664506302,0.0304103420804633,0.000238152536499515,299,299,299 +"514","IAR_LU_segmented_2step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642156773233244,0.0204405944701307,0.00303324788669806,0.45,0.45,0.45,0.45,0.45,0.45,0.0448553819665871,0.0232832527732592,0.000118500604743613,299,299,299 +"515","IAR_LU_segmented_2step","pericardium",200,0.07,0.00999999999999999,0.003,0.0580112863869371,0.0143446319848522,0.00303117957616411,0.45,0.45,0.45,0.45,0.45,0.45,0.0239540291900973,0.00980730019759861,5.91963411917844e-05,299,299,299 +"516","IAR_LU_segmented_2step","right kidney medulla",10,0.158,0.019,0.00209,0.214897364750887,0.0349323808857953,0.00210934037383571,0.45,0.45,0.45,0.45,0.45,0.45,0.176570100929705,0.0357038663180629,0.000728386366312476,299,299,299 +"517","IAR_LU_segmented_2step","right kidney medulla",30,0.158,0.019,0.00209,0.1657109940179,0.0270906706245067,0.00210327080298252,0.45,0.45,0.45,0.45,0.45,0.45,0.0725100593788847,0.0225768947405185,0.000242646564228503,299,299,299 +"518","IAR_LU_segmented_2step","right kidney medulla",50,0.158,0.019,0.00209,0.159840360106385,0.0226243076257691,0.00209789750114162,0.45,0.45,0.45,0.45,0.45,0.45,0.0449934074887979,0.0129995305341982,0.000144591388188289,299,299,299 +"519","IAR_LU_segmented_2step","right kidney medulla",100,0.158,0.019,0.00209,0.157128036252483,0.0199765644524694,0.00209573127130611,0.45,0.45,0.45,0.45,0.45,0.45,0.0229312108930269,0.00451773115368034,7.20856679148625e-05,299,299,299 +"520","IAR_LU_segmented_2step","right kidney medulla",200,0.158,0.019,0.00209,0.156502788562749,0.01944662223736,0.00209523459722322,0.45,0.45,0.45,0.45,0.45,0.45,0.0115545577659798,0.00215365037568976,3.60164249883863e-05,299,299,299 +"521","IAR_LU_segmented_2step","Right kydney cortex",10,0.097,0.02,0.00212,0.170083391326229,0.0362607784128459,0.00214004719496282,0.45,0.45,0.45,0.45,0.45,0.45,0.168104195513681,0.0383928312387471,0.000693964401384033,299,299,299 +"522","IAR_LU_segmented_2step","Right kydney cortex",30,0.097,0.02,0.00212,0.112526750081267,0.0324422518181432,0.0021297407037008,0.45,0.45,0.45,0.45,0.45,0.45,0.071762920718918,0.0299939350792029,0.000230468547854172,299,299,299 +"523","IAR_LU_segmented_2step","Right kydney cortex",50,0.097,0.02,0.00212,0.10294341594501,0.0276749873194382,0.00212486470550974,0.45,0.45,0.45,0.45,0.45,0.45,0.0445721609688734,0.0223523515043956,0.000137434850582313,299,299,299 +"524","IAR_LU_segmented_2step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979365844202808,0.0222618598591827,0.00212288817087808,0.45,0.45,0.45,0.45,0.45,0.45,0.0226855112845619,0.0094189431786872,6.85394294758574e-05,299,299,299 +"525","IAR_LU_segmented_2step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888281696063,0.0206966235189306,0.00212243012687663,0.45,0.45,0.45,0.45,0.45,0.45,0.0113984606619312,0.003773564449597,3.42474968787025e-05,299,299,299 +"526","IAR_LU_segmented_2step","small intestine",10,0.69,0.029,0.00131,0.690373037070898,0.0320610845226397,0.00128397090175435,0.45,0.45,0.45,0.45,0.45,0.45,0.111830764549477,0.0149363990351109,0.0010310750352814,299,299,299 +"527","IAR_LU_segmented_2step","small intestine",30,0.69,0.029,0.00131,0.688190385608461,0.0294222676855826,0.00132700874616123,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734637901488,0.00411936458263747,0.000393814792063893,299,299,299 +"528","IAR_LU_segmented_2step","small intestine",50,0.69,0.029,0.00131,0.68898313707029,0.0291736871197262,0.00131674147785283,0.45,0.45,0.45,0.45,0.45,0.45,0.0269406505091751,0.00243185752491584,0.000231513954749497,299,299,299 +"529","IAR_LU_segmented_2step","small intestine",100,0.69,0.029,0.00131,0.68940425299248,0.0290661630924925,0.00131311787679812,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745367108107,0.00120919315590461,0.000114727932084214,299,299,299 +"530","IAR_LU_segmented_2step","small intestine",200,0.69,0.029,0.00131,0.689565491157383,0.0290364333708514,0.00131259560662869,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757580906278,0.000603840896646575,5.72226395519967e-05,299,299,299 +"531","IAR_LU_segmented_2step","spleen",10,0.2,0.03,0.00129999999999999,0.224602362890799,0.0422543737942781,0.00131869223769686,0.45,0.45,0.45,0.45,0.45,0.45,0.127234911609303,0.0341611217172608,0.000459161541284809,299,299,299 +"532","IAR_LU_segmented_2step","spleen",30,0.2,0.03,0.00129999999999999,0.203576863495816,0.0339539200173157,0.00130108907088979,0.45,0.45,0.45,0.45,0.45,0.45,0.044331214464624,0.017617566481108,0.000147366538355311,299,299,299 +"533","IAR_LU_segmented_2step","spleen",50,0.2,0.03,0.00129999999999999,0.201083469438403,0.0314320549693185,0.00130009526398064,0.45,0.45,0.45,0.45,0.45,0.45,0.0264945321235979,0.00973436499772472,8.81308203353264e-05,299,299,299 +"534","IAR_LU_segmented_2step","spleen",100,0.2,0.03,0.00129999999999999,0.20007115163649,0.0303418337778117,0.001299928493873,0.45,0.45,0.45,0.45,0.45,0.45,0.0131754362709165,0.00435303846028546,4.39969723252588e-05,299,299,299 +"535","IAR_LU_segmented_2step","spleen",200,0.2,0.03,0.00129999999999999,0.199885784150361,0.0301070126211822,0.00130002911399547,0.45,0.45,0.45,0.45,0.45,0.45,0.00657087134211547,0.00215138858402903,2.19877335574001e-05,299,299,299 +"536","IAR_LU_segmented_2step","st wall",10,0.3,0.012,0.0015,0.297910726506523,0.0238987755166635,0.00157773932710541,0.45,0.45,0.45,0.45,0.45,0.45,0.166898578530855,0.026413197787185,0.000614593950499859,299,299,299 +"537","IAR_LU_segmented_2step","st wall",30,0.3,0.012,0.0015,0.283533465909088,0.0146267868916472,0.00155214816764873,0.45,0.45,0.45,0.45,0.45,0.45,0.0667707036118569,0.0078453694765802,0.00019551156370717,299,299,299 +"538","IAR_LU_segmented_2step","st wall",50,0.3,0.012,0.0015,0.282913643368102,0.0133565032690983,0.00154952132488848,0.45,0.45,0.45,0.45,0.45,0.45,0.0412585327424046,0.0029662403323633,0.00011668052444887,299,299,299 +"539","IAR_LU_segmented_2step","st wall",100,0.3,0.012,0.0015,0.282957489855073,0.0129414790127824,0.0015486735829641,0.45,0.45,0.45,0.45,0.45,0.45,0.0209295866586312,0.00131275199125169,5.81996976856253e-05,299,299,299 +"540","IAR_LU_segmented_2step","st wall",200,0.3,0.012,0.0015,0.283111805846317,0.0128396414258269,0.00154860379618769,0.45,0.45,0.45,0.45,0.45,0.45,0.010504025040381,0.000633726930733129,2.90796048726369e-05,299,299,299 +"541","IAR_LU_segmented_2step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69037303749125,0.0320610844836358,0.00128397090178629,0.45,0.45,0.45,0.45,0.45,0.45,0.111830763771563,0.0149363989976124,0.00103107503559299,299,299,299 +"542","IAR_LU_segmented_2step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190385593539,0.0294222676872454,0.00132700874615982,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734637558478,0.00411936458168369,0.000393814791967693,299,299,299 +"543","IAR_LU_segmented_2step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.68898313706239,0.0291736871209134,0.00131674147788471,0.45,0.45,0.45,0.45,0.45,0.45,0.0269406505338101,0.0024318575254413,0.000231513954838717,299,299,299 +"544","IAR_LU_segmented_2step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404252989508,0.0290661630925507,0.00131311787679501,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745367049696,0.00120919315574895,0.000114727932099834,299,299,299 +"545","IAR_LU_segmented_2step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565491165205,0.0290364333675362,0.0013125956066485,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757582406111,0.000603840899001961,5.72226395704009e-05,299,299,299 +"546","IAR_LU_segmented_2step","Vein",10,1,0.1,0.00299999999999999,0.921258294006205,0.0983174229514582,0.000602377539365262,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235599431163,0.00488173576858925,0.000954240122974581,299,299,299 +"547","IAR_LU_segmented_2step","Vein",30,1,0.1,0.00299999999999999,0.976019933221361,0.0994829647765158,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.00833101267682292,0.00160385964963576,0.000954268289514292,299,299,299 +"548","IAR_LU_segmented_2step","Vein",50,1,0.1,0.00299999999999999,0.98599487225747,0.0996813109862223,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494309800725367,0.00098635809134973,0.000954266532348308,299,299,299 +"549","IAR_LU_segmented_2step","Vein",100,1,0.1,0.00299999999999999,0.993268900336901,0.0998299735834051,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241285763307656,0.000513921040160147,0.000954286483399826,299,299,299 +"550","IAR_LU_segmented_2step","Vein",200,1,0.1,0.00299999999999999,0.996782474408715,0.099908372240112,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119135923034317,0.00026755704762974,0.000954060412685357,299,299,299 +"551","IAR_LU_segmented_3step","Artery",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 +"552","IAR_LU_segmented_3step","Artery",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 +"553","IAR_LU_segmented_3step","Artery",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 +"554","IAR_LU_segmented_3step","Artery",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 +"555","IAR_LU_segmented_3step","Artery",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 +"556","IAR_LU_segmented_3step","asc lower intestine",10,0.69,0.029,0.00131,0.690372912460308,0.0320609988287597,0.00128397090175435,0.45,0.45,0.45,0.45,0.45,0.45,0.111831070178776,0.0149362639331092,0.0010310750352814,299,299,299 +"557","IAR_LU_segmented_3step","asc lower intestine",30,0.69,0.029,0.00131,0.688190453018247,0.0294222458071772,0.00132700874616123,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734379198449,0.00411935738276174,0.000393814792063893,299,299,299 +"558","IAR_LU_segmented_3step","asc lower intestine",50,0.69,0.029,0.00131,0.688983156886655,0.0291736810771982,0.00131674147785283,0.45,0.45,0.45,0.45,0.45,0.45,0.0269406517217619,0.00243185875713279,0.000231513954749497,299,299,299 +"559","IAR_LU_segmented_3step","asc lower intestine",100,0.69,0.029,0.00131,0.689404263283331,0.029066159884122,0.00131311787679812,0.45,0.45,0.45,0.45,0.45,0.45,0.013474531543109,0.00120919095640661,0.000114727932084214,299,299,299 +"560","IAR_LU_segmented_3step","asc lower intestine",200,0.69,0.029,0.00131,0.689565493192121,0.0290364327596902,0.00131259560662869,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757540019296,0.000603840709682258,5.72226395519967e-05,299,299,299 +"561","IAR_LU_segmented_3step","Blood RA",10,1,0.1,0.00299999999999999,0.921258295754633,0.0983173943519328,0.000602377539349993,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235874512208,0.00488176105229651,0.000954240122983693,299,299,299 +"562","IAR_LU_segmented_3step","Blood RA",30,1,0.1,0.00299999999999999,0.976019921591105,0.0994829388946097,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.00833093060793743,0.00160385306213362,0.000954268289514292,299,299,299 +"563","IAR_LU_segmented_3step","Blood RA",50,1,0.1,0.00299999999999999,0.985994865014497,0.0996813363124957,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494311872660846,0.000986368951807364,0.000954266532348308,299,299,299 +"564","IAR_LU_segmented_3step","Blood RA",100,1,0.1,0.00299999999999999,0.993268930016578,0.0998299053887308,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241282801486426,0.000513907366461962,0.000954286483399826,299,299,299 +"565","IAR_LU_segmented_3step","Blood RA",200,1,0.1,0.00299999999999999,0.996782670892671,0.0999081619683577,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119125287475698,0.000267526451585604,0.000954060412685357,299,299,299 +"566","IAR_LU_segmented_3step","Blood RV",10,1,0.1,0.003,0.921258295752512,0.0983173943497697,0.000602377539314825,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235874592633,0.00488176105309786,0.000954240122896554,299,299,299 +"567","IAR_LU_segmented_3step","Blood RV",30,1,0.1,0.003,0.976019921589139,0.0994829388944177,0.000602393052438452,0.45,0.45,0.45,0.45,0.45,0.45,0.00833093061417054,0.00160385306136018,0.000954268289514534,299,299,299 +"568","IAR_LU_segmented_3step","Blood RV",50,1,0.1,0.003,0.985994865012998,0.0996813363124673,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494311872708252,0.000986368951628139,0.000954266532348308,299,299,299 +"569","IAR_LU_segmented_3step","Blood RV",100,1,0.1,0.003,0.993268930010737,0.0998299053836721,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241282801400462,0.00051390736455086,0.000954286483399826,299,299,299 +"570","IAR_LU_segmented_3step","Blood RV",200,1,0.1,0.003,0.996782670893716,0.0999081619681687,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119125287335306,0.000267526451785148,0.000954060412685357,299,299,299 +"571","IAR_LU_segmented_3step","desc lower intestine",10,0.69,0.029,0.00131,0.690372912834237,0.0320609988208121,0.0012839709016351,0.45,0.45,0.45,0.45,0.45,0.45,0.111831069984292,0.014936263933469,0.0010310750351664,299,299,299 +"572","IAR_LU_segmented_3step","desc lower intestine",30,0.69,0.029,0.00131,0.688190453039754,0.0294222458055492,0.00132700874615634,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734379014875,0.00411935738152716,0.000393814791852722,299,299,299 +"573","IAR_LU_segmented_3step","desc lower intestine",50,0.69,0.029,0.00131,0.68898315689181,0.0291736810768264,0.00131674147781799,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651717003,0.00243185875705343,0.000231513954746746,299,299,299 +"574","IAR_LU_segmented_3step","desc lower intestine",100,0.69,0.029,0.00131,0.689404263283869,0.0290661598843801,0.00131311787679321,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745315463702,0.00120919095682723,0.0001147279321005,299,299,299 +"575","IAR_LU_segmented_3step","desc lower intestine",200,0.69,0.029,0.00131,0.689565493196492,0.0290364327594458,0.00131259560662137,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757540289692,0.000603840709761317,5.72226395589749e-05,299,299,299 +"576","IAR_LU_segmented_3step","esophagus",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.45,0.45,0.45,0.45,0.45,0.45,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 +"577","IAR_LU_segmented_3step","esophagus",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.45,0.45,0.45,0.45,0.45,0.45,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 +"578","IAR_LU_segmented_3step","esophagus",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.45,0.45,0.45,0.45,0.45,0.45,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 +"579","IAR_LU_segmented_3step","esophagus",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.45,0.45,0.45,0.45,0.45,0.45,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 +"580","IAR_LU_segmented_3step","esophagus",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.45,0.45,0.45,0.45,0.45,0.45,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 +"581","IAR_LU_segmented_3step","esophagus cont",10,0.32,0.03,0.00167,0.340945084086408,0.0389023404303584,0.00169537630410881,0.45,0.45,0.45,0.45,0.45,0.45,0.144635683945777,0.0286326238444777,0.000699310473838228,299,299,299 +"582","IAR_LU_segmented_3step","esophagus cont",30,0.32,0.03,0.00167,0.321988091257538,0.0319220181956339,0.00167589442416234,0.45,0.45,0.45,0.45,0.45,0.45,0.0506565805728629,0.0111319456463969,0.000225181332906699,299,299,299 +"583","IAR_LU_segmented_3step","esophagus cont",50,0.32,0.03,0.00167,0.320433872266412,0.0306483607194531,0.00167205798914533,0.45,0.45,0.45,0.45,0.45,0.45,0.0304006723054444,0.00593603112211131,0.000134201428225459,299,299,299 +"584","IAR_LU_segmented_3step","esophagus cont",100,0.32,0.03,0.00167,0.319848898719663,0.0301863357937562,0.00167069900564771,0.45,0.45,0.45,0.45,0.45,0.45,0.0151616180035821,0.00289360760166667,6.69010973810829e-05,299,299,299 +"585","IAR_LU_segmented_3step","esophagus cont",200,0.32,0.03,0.00167,0.319780248609411,0.0300697010262038,0.00167049624614464,0.45,0.45,0.45,0.45,0.45,0.45,0.00757222634309929,0.00144131091763197,3.34227716805246e-05,299,299,299 +"586","IAR_LU_segmented_3step","Left kidney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.45,0.45,0.45,0.45,0.45,0.45,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 +"587","IAR_LU_segmented_3step","Left kidney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.45,0.45,0.45,0.45,0.45,0.45,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 +"588","IAR_LU_segmented_3step","Left kidney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.45,0.45,0.45,0.45,0.45,0.45,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 +"589","IAR_LU_segmented_3step","Left kidney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.45,0.45,0.45,0.45,0.45,0.45,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 +"590","IAR_LU_segmented_3step","Left kidney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.45,0.45,0.45,0.45,0.45,0.45,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 +"591","IAR_LU_segmented_3step","left kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.45,0.45,0.45,0.45,0.45,0.45,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 +"592","IAR_LU_segmented_3step","left kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.45,0.45,0.45,0.45,0.45,0.45,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 +"593","IAR_LU_segmented_3step","left kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.45,0.45,0.45,0.45,0.45,0.45,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 +"594","IAR_LU_segmented_3step","left kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.45,0.45,0.45,0.45,0.45,0.45,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 +"595","IAR_LU_segmented_3step","left kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.45,0.45,0.45,0.45,0.45,0.45,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 +"596","IAR_LU_segmented_3step","Liver",10,0.11,0.1,0.0015,0.146082882050709,0.0559478804902679,0.00152084809188092,0.45,0.45,0.45,0.45,0.45,0.45,0.12417523764379,0.0423510319114557,0.000472993211159269,299,299,299 +"597","IAR_LU_segmented_3step","Liver",30,0.11,0.1,0.0015,0.113015747107183,0.0764337988942673,0.00150154707211704,0.45,0.45,0.45,0.45,0.45,0.45,0.0404962619170089,0.0315961478906252,0.000152137743344338,299,299,299 +"598","IAR_LU_segmented_3step","Liver",50,0.11,0.1,0.0015,0.109957685341215,0.0845663398058661,0.00150017699860271,0.45,0.45,0.45,0.45,0.45,0.45,0.0218837188774183,0.0224781408265878,9.09784274199351e-05,299,299,299 +"599","IAR_LU_segmented_3step","Liver",100,0.11,0.1,0.0015,0.109449356101409,0.0916623226685859,0.00149980895512081,0.45,0.45,0.45,0.45,0.45,0.45,0.0102082812165326,0.0124943114146282,4.54189474712779e-05,299,299,299 +"600","IAR_LU_segmented_3step","Liver",200,0.11,0.1,0.0015,0.109652152384101,0.0956036971815278,0.00149983471124947,0.45,0.45,0.45,0.45,0.45,0.45,0.00504025274062746,0.00673413785148666,2.26988859055568e-05,299,299,299 +"601","IAR_LU_segmented_3step","Myocardium LV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.45,0.45,0.45,0.45,0.45,0.45,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 +"602","IAR_LU_segmented_3step","Myocardium LV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.45,0.45,0.45,0.45,0.45,0.45,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 +"603","IAR_LU_segmented_3step","Myocardium LV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.45,0.45,0.45,0.45,0.45,0.45,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 +"604","IAR_LU_segmented_3step","Myocardium LV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.45,0.45,0.45,0.45,0.45,0.45,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 +"605","IAR_LU_segmented_3step","Myocardium LV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.45,0.45,0.45,0.45,0.45,0.45,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 +"606","IAR_LU_segmented_3step","myocardium ra",10,0.07,0.07,0.0015,0.120487721848812,0.0474274141714872,0.00151975238387796,0.45,0.45,0.45,0.45,0.45,0.45,0.12292676009053,0.0432757721627324,0.000451902244673881,299,299,299 +"607","IAR_LU_segmented_3step","myocardium ra",30,0.07,0.07,0.0015,0.0794953920685382,0.061701170887567,0.00150135088654914,0.45,0.45,0.45,0.45,0.45,0.45,0.0456443486701864,0.0375179871485709,0.000145531665798083,299,299,299 +"608","IAR_LU_segmented_3step","myocardium ra",50,0.07,0.07,0.0015,0.0733075060795099,0.0668946641370623,0.00150012323561766,0.45,0.45,0.45,0.45,0.45,0.45,0.0253334139193964,0.0313903609700114,8.70510202022302e-05,299,299,299 +"609","IAR_LU_segmented_3step","myocardium ra",100,0.07,0.07,0.0015,0.0706178530327893,0.0704430355516514,0.00149980568738501,0.45,0.45,0.45,0.45,0.45,0.45,0.0111952191897268,0.0218910314178087,4.34633528226247e-05,299,299,299 +"610","IAR_LU_segmented_3step","myocardium ra",200,0.07,0.07,0.0015,0.0700882022200132,0.0711624063551851,0.00149983895305835,0.45,0.45,0.45,0.45,0.45,0.45,0.00530076622265709,0.0136048747365511,2.17222536755328e-05,299,299,299 +"611","IAR_LU_segmented_3step","myocardium RV",10,0.15,0.08,0.0024,0.218725790194539,0.0547508734828805,0.00236368743581685,0.45,0.45,0.45,0.45,0.45,0.45,0.173307670922309,0.0407132053461866,0.00083406866022113,299,299,299 +"612","IAR_LU_segmented_3step","myocardium RV",30,0.15,0.08,0.0024,0.15709341513436,0.0735415179568476,0.00241303581609851,0.45,0.45,0.45,0.45,0.45,0.45,0.0542399153967502,0.0290675249231126,0.00029635766628923,299,299,299 +"613","IAR_LU_segmented_3step","myocardium RV",50,0.15,0.08,0.0024,0.152059800495971,0.0774470116480437,0.00240494096841768,0.45,0.45,0.45,0.45,0.45,0.45,0.0288166633191096,0.0222588618081745,0.000176237551477804,299,299,299 +"614","IAR_LU_segmented_3step","myocardium RV",100,0.15,0.08,0.0024,0.150244353227827,0.0802204699765195,0.00240130488986735,0.45,0.45,0.45,0.45,0.45,0.45,0.0129998357697389,0.0141227897926447,8.77945387539921e-05,299,299,299 +"615","IAR_LU_segmented_3step","myocardium RV",200,0.15,0.08,0.0024,0.149981615758688,0.0805727770677274,0.00240036245148733,0.45,0.45,0.45,0.45,0.45,0.45,0.00636500204507123,0.00838636265504018,4.38595760806971e-05,299,299,299 +"616","IAR_LU_segmented_3step","pancreas",10,0.15,0.01,0.00129999999999999,0.167876087744328,0.0290823779532465,0.00134733544815708,0.45,0.45,0.45,0.45,0.45,0.45,0.13799145865135,0.0341902078471574,0.000431649675978663,299,299,299 +"617","IAR_LU_segmented_3step","pancreas",30,0.15,0.01,0.00129999999999999,0.141237488923537,0.0173188232665482,0.00133082551202286,0.45,0.45,0.45,0.45,0.45,0.45,0.0599867928753009,0.019107620391262,0.000139043274945453,299,299,299 +"618","IAR_LU_segmented_3step","pancreas",50,0.15,0.01,0.00129999999999999,0.137697382006501,0.013486111899636,0.00132993185853207,0.45,0.45,0.45,0.45,0.45,0.45,0.0376187112217656,0.00990407677614883,8.31806812154377e-05,299,299,299 +"619","IAR_LU_segmented_3step","pancreas",100,0.15,0.01,0.00129999999999999,0.136229323640244,0.0115476620033599,0.00132978575875502,0.45,0.45,0.45,0.45,0.45,0.45,0.019514431169108,0.00241787556317726,4.15321586456171e-05,299,299,299 +"620","IAR_LU_segmented_3step","pancreas",200,0.15,0.01,0.00129999999999999,0.136024834420005,0.0112236045300272,0.00132987961477637,0.45,0.45,0.45,0.45,0.45,0.45,0.00985291999759062,0.00107217005947319,2.07569285081239e-05,299,299,299 +"621","IAR_LU_segmented_3step","pericardium",10,0.07,0.00999999999999999,0.003,0.226261705952676,0.0237795489644494,0.00273701082230784,0.45,0.45,0.45,0.45,0.45,0.45,0.232027240194557,0.0336731897895805,0.00088504212200084,299,299,299 +"622","IAR_LU_segmented_3step","pericardium",30,0.07,0.00999999999999999,0.003,0.104611777513852,0.0196860800407026,0.00304612925895245,0.45,0.45,0.45,0.45,0.45,0.45,0.114299017507708,0.0278397487831849,0.00039105626191339,299,299,299 +"623","IAR_LU_segmented_3step","pericardium",50,0.07,0.00999999999999999,0.003,0.0816066699634704,0.0194934718185086,0.00304009046144298,0.45,0.45,0.45,0.45,0.45,0.45,0.0795483736488436,0.0250992834625371,0.000238152536499515,299,299,299 +"624","IAR_LU_segmented_3step","pericardium",100,0.07,0.00999999999999999,0.003,0.0642026522852465,0.0194902394274878,0.00303324788669806,0.45,0.45,0.45,0.45,0.45,0.45,0.0448738243520826,0.0219106454708596,0.000118500604743613,299,299,299 +"625","IAR_LU_segmented_3step","pericardium",200,0.07,0.00999999999999999,0.003,0.058011320597936,0.0143446673004006,0.00303117957616411,0.45,0.45,0.45,0.45,0.45,0.45,0.0239540324724296,0.00980769094663703,5.91963411917844e-05,299,299,299 +"626","IAR_LU_segmented_3step","right kidney medulla",10,0.158,0.019,0.00209,0.215538601333811,0.0330584554041069,0.00210934037383571,0.45,0.45,0.45,0.45,0.45,0.45,0.176417627966443,0.0347242884028947,0.000728386366312476,299,299,299 +"627","IAR_LU_segmented_3step","right kidney medulla",30,0.158,0.019,0.00209,0.165711065937012,0.0267740275565235,0.00210327080298252,0.45,0.45,0.45,0.45,0.45,0.45,0.0725100854055339,0.0222142824675598,0.000242646564228503,299,299,299 +"628","IAR_LU_segmented_3step","right kidney medulla",50,0.158,0.019,0.00209,0.159840423247182,0.0226243769919891,0.00209789750114162,0.45,0.45,0.45,0.45,0.45,0.45,0.0449934407960539,0.0129999351650522,0.000144591388188289,299,299,299 +"629","IAR_LU_segmented_3step","right kidney medulla",100,0.158,0.019,0.00209,0.157128073731818,0.0199765335425257,0.00209573127130611,0.45,0.45,0.45,0.45,0.45,0.45,0.0229312099738713,0.00451769065546987,7.20856679148625e-05,299,299,299 +"630","IAR_LU_segmented_3step","right kidney medulla",200,0.158,0.019,0.00209,0.156502806502535,0.0194466127262563,0.00209523459722322,0.45,0.45,0.45,0.45,0.45,0.45,0.0115545662188956,0.0021536510498884,3.60164249883863e-05,299,299,299 +"631","IAR_LU_segmented_3step","Right kydney cortex",10,0.097,0.02,0.00212,0.171166452972381,0.0327373606940212,0.00214004719496282,0.45,0.45,0.45,0.45,0.45,0.45,0.168408251172229,0.0370219089901412,0.000693964401384033,299,299,299 +"632","IAR_LU_segmented_3step","Right kydney cortex",30,0.097,0.02,0.00212,0.112527007907574,0.0318089332204069,0.0021297407037008,0.45,0.45,0.45,0.45,0.45,0.45,0.0717629422528089,0.0295588826080511,0.000230468547854172,299,299,299 +"633","IAR_LU_segmented_3step","Right kydney cortex",50,0.097,0.02,0.00212,0.102943504878459,0.0273586068848391,0.00212486470550974,0.45,0.45,0.45,0.45,0.45,0.45,0.0445721614984707,0.0219954324959227,0.000137434850582313,299,299,299 +"634","IAR_LU_segmented_3step","Right kydney cortex",100,0.097,0.02,0.00212,0.0979366717504519,0.0222619035498679,0.00212288817087808,0.45,0.45,0.45,0.45,0.45,0.45,0.0226855370063872,0.00941940682395472,6.85394294758574e-05,299,299,299 +"635","IAR_LU_segmented_3step","Right kydney cortex",200,0.097,0.02,0.00212,0.0965888681061081,0.0206965918812656,0.00212243012687663,0.45,0.45,0.45,0.45,0.45,0.45,0.0113984885320567,0.00377358064677238,3.42474968787025e-05,299,299,299 +"636","IAR_LU_segmented_3step","small intestine",10,0.69,0.029,0.00131,0.690372912356873,0.0320609988950055,0.00128397090175435,0.45,0.45,0.45,0.45,0.45,0.45,0.111831070379349,0.0149362639486584,0.0010310750352814,299,299,299 +"637","IAR_LU_segmented_3step","small intestine",30,0.69,0.029,0.00131,0.688190453015561,0.0294222458063855,0.00132700874616123,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734379425795,0.00411935738385784,0.000393814792063893,299,299,299 +"638","IAR_LU_segmented_3step","small intestine",50,0.69,0.029,0.00131,0.688983156880932,0.0291736810769727,0.00131674147785283,0.45,0.45,0.45,0.45,0.45,0.45,0.026940651716611,0.00243185875699742,0.000231513954749497,299,299,299 +"639","IAR_LU_segmented_3step","small intestine",100,0.69,0.029,0.00131,0.689404263282608,0.0290661598842716,0.00131311787679812,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745315497881,0.00120919095739295,0.000114727932084214,299,299,299 +"640","IAR_LU_segmented_3step","small intestine",200,0.69,0.029,0.00131,0.68956549319335,0.0290364327596369,0.00131259560662869,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757540024816,0.000603840709655209,5.72226395519967e-05,299,299,299 +"641","IAR_LU_segmented_3step","spleen",10,0.2,0.03,0.00129999999999999,0.225215079244018,0.0408475941745436,0.00131869223769686,0.45,0.45,0.45,0.45,0.45,0.45,0.127374549590845,0.0338321181453734,0.000459161541284809,299,299,299 +"642","IAR_LU_segmented_3step","spleen",30,0.2,0.03,0.00129999999999999,0.203576978248672,0.0339539416807976,0.00130108907088979,0.45,0.45,0.45,0.45,0.45,0.45,0.0443312368356655,0.0176179137760107,0.000147366538355311,299,299,299 +"643","IAR_LU_segmented_3step","spleen",50,0.2,0.03,0.00129999999999999,0.201083539263729,0.0314319351028402,0.00130009526398064,0.45,0.45,0.45,0.45,0.45,0.45,0.026494577015459,0.0097343797369095,8.81308203353264e-05,299,299,299 +"644","IAR_LU_segmented_3step","spleen",100,0.2,0.03,0.00129999999999999,0.200071168884838,0.0303418014706331,0.001299928493873,0.45,0.45,0.45,0.45,0.45,0.45,0.0131754519827359,0.00435303381837777,4.39969723252588e-05,299,299,299 +"645","IAR_LU_segmented_3step","spleen",200,0.2,0.03,0.00129999999999999,0.199885789613915,0.0301070023107681,0.00130002911399547,0.45,0.45,0.45,0.45,0.45,0.45,0.00657087505150261,0.00215139132638464,2.19877335574001e-05,299,299,299 +"646","IAR_LU_segmented_3step","st wall",10,0.3,0.012,0.0015,0.298324938833872,0.0239344077578617,0.00157773932710541,0.45,0.45,0.45,0.45,0.45,0.45,0.16670974705843,0.0264709436324007,0.000614593950499859,299,299,299 +"647","IAR_LU_segmented_3step","st wall",30,0.3,0.012,0.0015,0.283533448008898,0.0146267906410416,0.00155214816764873,0.45,0.45,0.45,0.45,0.45,0.45,0.0667707702398052,0.00784535598914983,0.00019551156370717,299,299,299 +"648","IAR_LU_segmented_3step","st wall",50,0.3,0.012,0.0015,0.282913610595332,0.013356509669699,0.00154952132488848,0.45,0.45,0.45,0.45,0.45,0.45,0.0412585585926891,0.00296623318505363,0.00011668052444887,299,299,299 +"649","IAR_LU_segmented_3step","st wall",100,0.3,0.012,0.0015,0.282957467763654,0.0129414830257878,0.0015486735829641,0.45,0.45,0.45,0.45,0.45,0.45,0.0209295851952189,0.0013127509371942,5.81996976856253e-05,299,299,299 +"650","IAR_LU_segmented_3step","st wall",200,0.3,0.012,0.0015,0.283111796582806,0.0128396431053783,0.00154860379618769,0.45,0.45,0.45,0.45,0.45,0.45,0.0105040225309021,0.000633726038726297,2.90796048726369e-05,299,299,299 +"651","IAR_LU_segmented_3step","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.690372912514732,0.0320609988154312,0.00128397090178629,0.45,0.45,0.45,0.45,0.45,0.45,0.11183107022349,0.0149362639063537,0.00103107503559299,299,299,299 +"652","IAR_LU_segmented_3step","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688190453028525,0.0294222458062765,0.00132700874615982,0.45,0.45,0.45,0.45,0.45,0.45,0.0448734379048314,0.00411935738241528,0.000393814791967693,299,299,299 +"653","IAR_LU_segmented_3step","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688983156885389,0.0291736810770989,0.00131674147788471,0.45,0.45,0.45,0.45,0.45,0.45,0.0269406517148853,0.00243185875753381,0.000231513954838717,299,299,299 +"654","IAR_LU_segmented_3step","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689404263284667,0.0290661598842918,0.00131311787679501,0.45,0.45,0.45,0.45,0.45,0.45,0.0134745315495576,0.00120919095747282,0.000114727932099834,299,299,299 +"655","IAR_LU_segmented_3step","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689565493192237,0.0290364327597635,0.0013125956066485,0.45,0.45,0.45,0.45,0.45,0.45,0.00673757540531011,0.000603840709857747,5.72226395704009e-05,299,299,299 +"656","IAR_LU_segmented_3step","Vein",10,1,0.1,0.00299999999999999,0.921258295769297,0.0983173943529829,0.000602377539365262,0.45,0.45,0.45,0.45,0.45,0.45,0.0258235874429731,0.00488176105242994,0.000954240122974581,299,299,299 +"657","IAR_LU_segmented_3step","Vein",30,1,0.1,0.00299999999999999,0.976019921590824,0.099482938894657,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.00833093061148117,0.00160385306162368,0.000954268289514292,299,299,299 +"658","IAR_LU_segmented_3step","Vein",50,1,0.1,0.00299999999999999,0.985994865012448,0.0996813363124073,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.00494311872646144,0.000986368952043478,0.000954266532348308,299,299,299 +"659","IAR_LU_segmented_3step","Vein",100,1,0.1,0.00299999999999999,0.993268929663768,0.0998299060636546,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00241282790462813,0.000513906117480587,0.000954286483399826,299,299,299 +"660","IAR_LU_segmented_3step","Vein",200,1,0.1,0.00299999999999999,0.996782670893754,0.099908161968246,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00119125287281276,0.00026752645150961,0.000954060412685357,299,299,299 +"661","IAR_LU_subtracted","Artery",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.45,0.45,0.45,0.45,0.45,0.45,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 +"662","IAR_LU_subtracted","Artery",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 +"663","IAR_LU_subtracted","Artery",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 +"664","IAR_LU_subtracted","Artery",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 +"665","IAR_LU_subtracted","Artery",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 +"666","IAR_LU_subtracted","asc lower intestine",10,0.69,0.029,0.00131,0.649071571634918,0.0374643243946707,0.00128397090175435,0.45,0.45,0.45,0.45,0.45,0.45,0.187010914797289,0.0225038113704148,0.0010310750352814,299,299,299 +"667","IAR_LU_subtracted","asc lower intestine",30,0.69,0.029,0.00131,0.681939176199502,0.0302945345470063,0.00132700874616123,0.45,0.45,0.45,0.45,0.45,0.45,0.0603891142506458,0.00615614452380217,0.000393814792063893,299,299,299 +"668","IAR_LU_subtracted","asc lower intestine",50,0.69,0.029,0.00131,0.686488325346289,0.0294805288041424,0.00131674147785283,0.45,0.45,0.45,0.45,0.45,0.45,0.0350265291359118,0.00317717209134006,0.000231513954749497,299,299,299 +"669","IAR_LU_subtracted","asc lower intestine",100,0.69,0.029,0.00131,0.688499643316709,0.0291663813610362,0.00131311787679812,0.45,0.45,0.45,0.45,0.45,0.45,0.0172978748913048,0.00151214165314084,0.000114727932084214,299,299,299 +"670","IAR_LU_subtracted","asc lower intestine",200,0.69,0.029,0.00131,0.689091142138651,0.0290838262951937,0.00131259560662869,0.45,0.45,0.45,0.45,0.45,0.45,0.00862471112757458,0.000746769041441657,5.72226395519967e-05,299,299,299 +"671","IAR_LU_subtracted","Blood RA",10,1,0.1,0.00299999999999999,0.868045922384154,0.0985985293146783,0.000602377539349993,0.45,0.45,0.45,0.45,0.45,0.45,0.112435321659538,0.00440048348345655,0.000954240122983693,299,299,299 +"672","IAR_LU_subtracted","Blood RA",30,1,0.1,0.00299999999999999,0.957942477947069,0.0996184418318211,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.0334473349549559,0.00133438593579269,0.000954268289514292,299,299,299 +"673","IAR_LU_subtracted","Blood RA",50,1,0.1,0.00299999999999999,0.974974772688727,0.0997749955437601,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.0196506919534024,0.000799331220696613,0.000954266532348308,299,299,299 +"674","IAR_LU_subtracted","Blood RA",100,1,0.1,0.00299999999999999,0.987563371296034,0.0998909406437503,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00967550352535155,0.000393844438217049,0.000954286483399826,299,299,299 +"675","IAR_LU_subtracted","Blood RA",200,1,0.1,0.00299999999999999,0.993800432483572,0.0999475578953041,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00480131473460813,0.000192683440753476,0.000954060412685357,299,299,299 +"676","IAR_LU_subtracted","Blood RV",10,1,0.1,0.003,0.868045922388077,0.0985985293170771,0.000602377539314825,0.45,0.45,0.45,0.45,0.45,0.45,0.112435321636501,0.00440048348198392,0.000954240122896554,299,299,299 +"677","IAR_LU_subtracted","Blood RV",30,1,0.1,0.003,0.957942477946737,0.0996184418317999,0.000602393052438452,0.45,0.45,0.45,0.45,0.45,0.45,0.033447334956949,0.00133438593586357,0.000954268289514534,299,299,299 +"678","IAR_LU_subtracted","Blood RV",50,1,0.1,0.003,0.974974772688138,0.0997749955437326,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.0196506919536509,0.000799331220799176,0.000954266532348308,299,299,299 +"679","IAR_LU_subtracted","Blood RV",100,1,0.1,0.003,0.987563371296049,0.0998909406438783,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00967550352526221,0.000393844437553459,0.000954286483399826,299,299,299 +"680","IAR_LU_subtracted","Blood RV",200,1,0.1,0.003,0.993800432483625,0.0999475578955035,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00480131473462409,0.000192683440854932,0.000954060412685357,299,299,299 +"681","IAR_LU_subtracted","desc lower intestine",10,0.69,0.029,0.00131,0.649071571625974,0.0374643243918038,0.0012839709016351,0.45,0.45,0.45,0.45,0.45,0.45,0.187010914855941,0.0225038113819589,0.0010310750351664,299,299,299 +"682","IAR_LU_subtracted","desc lower intestine",30,0.69,0.029,0.00131,0.681939176203194,0.030294534546328,0.00132700874615634,0.45,0.45,0.45,0.45,0.45,0.45,0.0603891142121709,0.00615614452364872,0.000393814791852722,299,299,299 +"683","IAR_LU_subtracted","desc lower intestine",50,0.69,0.029,0.00131,0.686488325351207,0.0294805288036491,0.00131674147781799,0.45,0.45,0.45,0.45,0.45,0.45,0.0350265291360364,0.00317717209129982,0.000231513954746746,299,299,299 +"684","IAR_LU_subtracted","desc lower intestine",100,0.69,0.029,0.00131,0.688499643317253,0.029166381360917,0.00131311787679321,0.45,0.45,0.45,0.45,0.45,0.45,0.0172978748932321,0.00151214165342676,0.0001147279321005,299,299,299 +"685","IAR_LU_subtracted","desc lower intestine",200,0.69,0.029,0.00131,0.689091142140118,0.02908382629515,0.00131259560662137,0.45,0.45,0.45,0.45,0.45,0.45,0.00862471112793025,0.000746769041292778,5.72226395589749e-05,299,299,299 +"686","IAR_LU_subtracted","esophagus",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.45,0.45,0.45,0.45,0.45,0.45,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 +"687","IAR_LU_subtracted","esophagus",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.45,0.45,0.45,0.45,0.45,0.45,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 +"688","IAR_LU_subtracted","esophagus",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.45,0.45,0.45,0.45,0.45,0.45,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 +"689","IAR_LU_subtracted","esophagus",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.45,0.45,0.45,0.45,0.45,0.45,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 +"690","IAR_LU_subtracted","esophagus",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.45,0.45,0.45,0.45,0.45,0.45,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 +"691","IAR_LU_subtracted","esophagus cont",10,0.32,0.03,0.00167,0.298330817075282,0.0478246753714885,0.00169537630410881,0.45,0.45,0.45,0.45,0.45,0.45,0.186559711972025,0.0358367649259609,0.000699310473838228,299,299,299 +"692","IAR_LU_subtracted","esophagus cont",30,0.32,0.03,0.00167,0.313367488935735,0.0353086925805384,0.00167589442416234,0.45,0.45,0.45,0.45,0.45,0.45,0.0697310741767941,0.01750019170197,0.000225181332906699,299,299,299 +"693","IAR_LU_subtracted","esophagus cont",50,0.32,0.03,0.00167,0.317127604763594,0.0320171438787851,0.00167205798914533,0.45,0.45,0.45,0.45,0.45,0.45,0.0406027688015824,0.00927812869110153,0.000134201428225459,299,299,299 +"694","IAR_LU_subtracted","esophagus cont",100,0.32,0.03,0.00167,0.318810590850789,0.0305459994582878,0.00167069900564771,0.45,0.45,0.45,0.45,0.45,0.45,0.0201363964589113,0.00396261967353236,6.69010973810829e-05,299,299,299 +"695","IAR_LU_subtracted","esophagus cont",200,0.32,0.03,0.00167,0.319373079061628,0.0301899562016912,0.00167049624614464,0.45,0.45,0.45,0.45,0.45,0.45,0.0100446243584475,0.00191465872338672,3.34227716805246e-05,299,299,299 +"696","IAR_LU_subtracted","Left kidney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.45,0.45,0.45,0.45,0.45,0.45,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 +"697","IAR_LU_subtracted","Left kidney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.45,0.45,0.45,0.45,0.45,0.45,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 +"698","IAR_LU_subtracted","Left kidney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.45,0.45,0.45,0.45,0.45,0.45,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 +"699","IAR_LU_subtracted","Left kidney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.45,0.45,0.45,0.45,0.45,0.45,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 +"700","IAR_LU_subtracted","Left kidney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.45,0.45,0.45,0.45,0.45,0.45,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 +"701","IAR_LU_subtracted","left kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.45,0.45,0.45,0.45,0.45,0.45,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 +"702","IAR_LU_subtracted","left kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.45,0.45,0.45,0.45,0.45,0.45,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 +"703","IAR_LU_subtracted","left kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.45,0.45,0.45,0.45,0.45,0.45,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 +"704","IAR_LU_subtracted","left kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.45,0.45,0.45,0.45,0.45,0.45,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 +"705","IAR_LU_subtracted","left kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.45,0.45,0.45,0.45,0.45,0.45,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 +"706","IAR_LU_subtracted","Liver",10,0.11,0.1,0.0015,0.121102796262656,0.0634637023292287,0.00152084809188092,0.45,0.45,0.45,0.45,0.45,0.45,0.130105575340284,0.0425007401607272,0.000472993211159269,299,299,299 +"707","IAR_LU_subtracted","Liver",30,0.11,0.1,0.0015,0.0977558608603766,0.0724781854232728,0.00150154707211704,0.45,0.45,0.45,0.45,0.45,0.45,0.0613502493964698,0.034666306804501,0.000152137743344338,299,299,299 +"708","IAR_LU_subtracted","Liver",50,0.11,0.1,0.0015,0.100463203481405,0.0787945272430514,0.00150017699860271,0.45,0.45,0.45,0.45,0.45,0.45,0.0409980511902564,0.0284510570921832,9.09784274199351e-05,299,299,299 +"709","IAR_LU_subtracted","Liver",100,0.11,0.1,0.0015,0.105490313170251,0.0868785527973936,0.00149980895512081,0.45,0.45,0.45,0.45,0.45,0.45,0.0208767035787053,0.0189325400054299,4.54189474712779e-05,299,299,299 +"710","IAR_LU_subtracted","Liver",200,0.11,0.1,0.0015,0.107911734542008,0.0926665405232451,0.00149983471124947,0.45,0.45,0.45,0.45,0.45,0.45,0.010493763751019,0.0109829786476278,2.26988859055568e-05,299,299,299 +"711","IAR_LU_subtracted","Myocardium LV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.45,0.45,0.45,0.45,0.45,0.45,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 +"712","IAR_LU_subtracted","Myocardium LV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.45,0.45,0.45,0.45,0.45,0.45,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 +"713","IAR_LU_subtracted","Myocardium LV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.45,0.45,0.45,0.45,0.45,0.45,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 +"714","IAR_LU_subtracted","Myocardium LV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.45,0.45,0.45,0.45,0.45,0.45,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 +"715","IAR_LU_subtracted","Myocardium LV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.45,0.45,0.45,0.45,0.45,0.45,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 +"716","IAR_LU_subtracted","myocardium ra",10,0.07,0.07,0.0015,0.10186810798305,0.0606534117311725,0.00151975238387796,0.45,0.45,0.45,0.45,0.45,0.45,0.120898300340911,0.0434847654606971,0.000451902244673881,299,299,299 +"717","IAR_LU_subtracted","myocardium ra",30,0.07,0.07,0.0015,0.0669092818312048,0.0629092386288161,0.00150135088654914,0.45,0.45,0.45,0.45,0.45,0.45,0.05467533607346,0.0390189481601652,0.000145531665798083,299,299,299 +"718","IAR_LU_subtracted","myocardium ra",50,0.07,0.07,0.0015,0.0649047689569669,0.0657124808261645,0.00150012323561766,0.45,0.45,0.45,0.45,0.45,0.45,0.0373547816491121,0.0345082797190195,8.70510202022302e-05,299,299,299 +"719","IAR_LU_subtracted","myocardium ra",100,0.07,0.07,0.0015,0.0673614139938931,0.0697335469292888,0.00149980568738501,0.45,0.45,0.45,0.45,0.45,0.45,0.0196998246819315,0.0271665305647647,4.34633528226247e-05,299,299,299 +"720","IAR_LU_subtracted","myocardium ra",200,0.07,0.07,0.0015,0.0692312276466145,0.0716133033330059,0.00149983895305835,0.45,0.45,0.45,0.45,0.45,0.45,0.00928973196376031,0.0191722698037651,2.17222536755328e-05,299,299,299 +"721","IAR_LU_subtracted","myocardium RV",10,0.15,0.08,0.0024,0.18117656197736,0.0608480933171104,0.00236368743581685,0.45,0.45,0.45,0.45,0.45,0.45,0.184591896904083,0.0423777378906302,0.00083406866022113,299,299,299 +"722","IAR_LU_subtracted","myocardium RV",30,0.15,0.08,0.0024,0.135455819197712,0.0694301289033337,0.00241303581609851,0.45,0.45,0.45,0.45,0.45,0.45,0.0900714015502255,0.0344690491181341,0.00029635766628923,299,299,299 +"723","IAR_LU_subtracted","myocardium RV",50,0.15,0.08,0.0024,0.138545124410159,0.0733679478841999,0.00240494096841768,0.45,0.45,0.45,0.45,0.45,0.45,0.0612905842727721,0.0293934752547605,0.000176237551477804,299,299,299 +"724","IAR_LU_subtracted","myocardium RV",100,0.15,0.08,0.0024,0.145564204173756,0.0781560546050807,0.00240130488986735,0.45,0.45,0.45,0.45,0.45,0.45,0.0307895196530896,0.0218220991047788,8.77945387539921e-05,299,299,299 +"725","IAR_LU_subtracted","myocardium RV",200,0.15,0.08,0.0024,0.148714772596565,0.0805762053100926,0.00240036245148733,0.45,0.45,0.45,0.45,0.45,0.45,0.0145240155122644,0.0147743447447439,4.38595760806971e-05,299,299,299 +"726","IAR_LU_subtracted","pancreas",10,0.15,0.01,0.00129999999999999,0.145973572791277,0.0418322359345869,0.00134733544815708,0.45,0.45,0.45,0.45,0.45,0.45,0.133409111984285,0.0427515729870689,0.000431649675978663,299,299,299 +"727","IAR_LU_subtracted","pancreas",30,0.15,0.01,0.00129999999999999,0.128614984268459,0.0196787383317491,0.00133082551202286,0.45,0.45,0.45,0.45,0.45,0.45,0.0591082064465484,0.0231057149671265,0.000139043274945453,299,299,299 +"728","IAR_LU_subtracted","pancreas",50,0.15,0.01,0.00129999999999999,0.129890010988128,0.014418840532864,0.00132993185853207,0.45,0.45,0.45,0.45,0.45,0.45,0.0358391575513234,0.0125046852807563,8.31806812154377e-05,299,299,299 +"729","IAR_LU_subtracted","pancreas",100,0.15,0.01,0.00129999999999999,0.130754692398513,0.0119016729036151,0.00132978575875502,0.45,0.45,0.45,0.45,0.45,0.45,0.0179785444573827,0.00250589698561192,4.15321586456171e-05,299,299,299 +"730","IAR_LU_subtracted","pancreas",200,0.15,0.01,0.00129999999999999,0.131107657691518,0.0115757199693789,0.00132987961477637,0.45,0.45,0.45,0.45,0.45,0.45,0.00899900314885932,0.00109942059007681,2.07569285081239e-05,299,299,299 +"731","IAR_LU_subtracted","pericardium",10,0.07,0.00999999999999999,0.003,0.182005007344476,0.0449399513343394,0.00273701082230784,0.45,0.45,0.45,0.45,0.45,0.45,0.199393895082264,0.0446081430054895,0.00088504212200084,299,299,299 +"732","IAR_LU_subtracted","pericardium",30,0.07,0.00999999999999999,0.003,0.0767264387057665,0.0483395662495535,0.00304612925895245,0.45,0.45,0.45,0.45,0.45,0.45,0.0884446645225644,0.0443972230787564,0.00039105626191339,299,299,299 +"733","IAR_LU_subtracted","pericardium",50,0.07,0.00999999999999999,0.003,0.060765317251112,0.0422176464039951,0.00304009046144298,0.45,0.45,0.45,0.45,0.45,0.45,0.0613396076316471,0.0421072613162647,0.000238152536499515,299,299,299 +"734","IAR_LU_subtracted","pericardium",100,0.07,0.00999999999999999,0.003,0.0523575780666355,0.0289300542806783,0.00303324788669806,0.45,0.45,0.45,0.45,0.45,0.45,0.0371516507191181,0.0324742655660579,0.000118500604743613,299,299,299 +"735","IAR_LU_subtracted","pericardium",200,0.07,0.00999999999999999,0.003,0.0514683102067133,0.0168738578171833,0.00303117957616411,0.45,0.45,0.45,0.45,0.45,0.45,0.0206465635019397,0.0152473956782957,5.91963411917844e-05,299,299,299 +"736","IAR_LU_subtracted","right kidney medulla",10,0.158,0.019,0.00209,0.179099288028231,0.0482195956241905,0.00210934037383571,0.45,0.45,0.45,0.45,0.45,0.45,0.173901182630869,0.0430434816693402,0.000728386366312476,299,299,299 +"737","IAR_LU_subtracted","right kidney medulla",30,0.158,0.019,0.00209,0.149852727318598,0.0336478370603615,0.00210327080298252,0.45,0.45,0.45,0.45,0.45,0.45,0.081471885999975,0.0294636447791161,0.000242646564228503,299,299,299 +"738","IAR_LU_subtracted","right kidney medulla",50,0.158,0.019,0.00209,0.152083542364696,0.0260759822074301,0.00209789750114162,0.45,0.45,0.45,0.45,0.45,0.45,0.0514396254060103,0.0189502415057605,0.000144591388188289,299,299,299 +"739","IAR_LU_subtracted","right kidney medulla",100,0.158,0.019,0.00209,0.154245618481177,0.0209707843980588,0.00209573127130611,0.45,0.45,0.45,0.45,0.45,0.45,0.0255469057806363,0.00644713982295025,7.20856679148625e-05,299,299,299 +"740","IAR_LU_subtracted","right kidney medulla",200,0.158,0.019,0.00209,0.154953783957048,0.0198168666853734,0.00209523459722322,0.45,0.45,0.45,0.45,0.45,0.45,0.0127402035219187,0.00249340492966497,3.60164249883863e-05,299,299,299 +"741","IAR_LU_subtracted","Right kydney cortex",10,0.097,0.02,0.00212,0.14213979402731,0.0516239847830045,0.00214004719496282,0.45,0.45,0.45,0.45,0.45,0.45,0.158085677025204,0.0439945158267697,0.000693964401384033,299,299,299 +"742","IAR_LU_subtracted","Right kydney cortex",30,0.097,0.02,0.00212,0.0959338993097258,0.0420674391434868,0.0021297407037008,0.45,0.45,0.45,0.45,0.45,0.45,0.0739900026008641,0.0375303377351247,0.000230468547854172,299,299,299 +"743","IAR_LU_subtracted","Right kydney cortex",50,0.097,0.02,0.00212,0.0934315763431255,0.0340972382270603,0.00212486470550974,0.45,0.45,0.45,0.45,0.45,0.45,0.0500162693148626,0.0291160218598072,0.000137434850582313,299,299,299 +"744","IAR_LU_subtracted","Right kydney cortex",100,0.097,0.02,0.00212,0.0945576430053885,0.0249352943322664,0.00212288817087808,0.45,0.45,0.45,0.45,0.45,0.45,0.0260691727759818,0.0148441465104737,6.85394294758574e-05,299,299,299 +"745","IAR_LU_subtracted","Right kydney cortex",200,0.097,0.02,0.00212,0.0952975146331108,0.0214206497432682,0.00212243012687663,0.45,0.45,0.45,0.45,0.45,0.45,0.0128746185695077,0.00497159905944298,3.42474968787025e-05,299,299,299 +"746","IAR_LU_subtracted","small intestine",10,0.69,0.029,0.00131,0.649071571639429,0.037464324397123,0.00128397090175435,0.45,0.45,0.45,0.45,0.45,0.45,0.187010914793362,0.0225038113743857,0.0010310750352814,299,299,299 +"747","IAR_LU_subtracted","small intestine",30,0.69,0.029,0.00131,0.681939176198207,0.0302945345465633,0.00132700874616123,0.45,0.45,0.45,0.45,0.45,0.45,0.0603891142492399,0.00615614452326418,0.000393814792063893,299,299,299 +"748","IAR_LU_subtracted","small intestine",50,0.69,0.029,0.00131,0.686488325345437,0.0294805288039652,0.00131674147785283,0.45,0.45,0.45,0.45,0.45,0.45,0.0350265291349697,0.00317717209152528,0.000231513954749497,299,299,299 +"749","IAR_LU_subtracted","small intestine",100,0.69,0.029,0.00131,0.688499643316856,0.029166381361068,0.00131311787679812,0.45,0.45,0.45,0.45,0.45,0.45,0.0172978748915505,0.00151214165319551,0.000114727932084214,299,299,299 +"750","IAR_LU_subtracted","small intestine",200,0.69,0.029,0.00131,0.689091142138875,0.0290838262952531,0.00131259560662869,0.45,0.45,0.45,0.45,0.45,0.45,0.00862471112761152,0.000746769041454522,5.72226395519967e-05,299,299,299 +"751","IAR_LU_subtracted","spleen",10,0.2,0.03,0.00129999999999999,0.192961858260559,0.0492597470738909,0.00131869223769686,0.45,0.45,0.45,0.45,0.45,0.45,0.14672006477452,0.0390143038859564,0.000459161541284809,299,299,299 +"752","IAR_LU_subtracted","spleen",30,0.2,0.03,0.00129999999999999,0.195619974063773,0.0378660228770973,0.00130108907088979,0.45,0.45,0.45,0.45,0.45,0.45,0.0582480816426133,0.0230396606877878,0.000147366538355311,299,299,299 +"753","IAR_LU_subtracted","spleen",50,0.2,0.03,0.00129999999999999,0.198125993490742,0.0334346769905656,0.00130009526398064,0.45,0.45,0.45,0.45,0.45,0.45,0.033860026554998,0.0141196943300376,8.81308203353264e-05,299,299,299 +"754","IAR_LU_subtracted","spleen",100,0.2,0.03,0.00129999999999999,0.199199769344964,0.0308742355909984,0.001299928493873,0.45,0.45,0.45,0.45,0.45,0.45,0.0167658026535138,0.00575644302154389,4.39969723252588e-05,299,299,299 +"755","IAR_LU_subtracted","spleen",200,0.2,0.03,0.00129999999999999,0.199585281953296,0.0302681533889609,0.00130002911399547,0.45,0.45,0.45,0.45,0.45,0.45,0.00835864747465978,0.00272874833953629,2.19877335574001e-05,299,299,299 +"756","IAR_LU_subtracted","st wall",10,0.3,0.012,0.0015,0.262694585680195,0.0319185653801386,0.00157773932710541,0.45,0.45,0.45,0.45,0.45,0.45,0.172890946488421,0.0349074029422235,0.000614593950499859,299,299,299 +"757","IAR_LU_subtracted","st wall",30,0.3,0.012,0.0015,0.271112584934838,0.0157552797151743,0.00155214816764873,0.45,0.45,0.45,0.45,0.45,0.45,0.0670076659202155,0.0109054102082447,0.00019551156370717,299,299,299 +"758","IAR_LU_subtracted","st wall",50,0.3,0.012,0.0015,0.273986799953669,0.013806573219354,0.00154952132488848,0.45,0.45,0.45,0.45,0.45,0.45,0.0398746950657118,0.00322902951392831,0.00011668052444887,299,299,299 +"759","IAR_LU_subtracted","st wall",100,0.3,0.012,0.0015,0.275412083141614,0.0133114999997825,0.0015486735829641,0.45,0.45,0.45,0.45,0.45,0.45,0.0199011338224045,0.00132338051992791,5.81996976856253e-05,299,299,299 +"760","IAR_LU_subtracted","st wall",200,0.3,0.012,0.0015,0.275903272911037,0.0131993048909566,0.00154860379618769,0.45,0.45,0.45,0.45,0.45,0.45,0.00994694081242093,0.000634013714884041,2.90796048726369e-05,299,299,299 +"761","IAR_LU_subtracted","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.649071571567166,0.037464324385318,0.00128397090178629,0.45,0.45,0.45,0.45,0.45,0.45,0.187010915027799,0.0225038113468096,0.00103107503559299,299,299,299 +"762","IAR_LU_subtracted","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.681939176203752,0.0302945345463009,0.00132700874615982,0.45,0.45,0.45,0.45,0.45,0.45,0.0603891142173648,0.00615614452231295,0.000393814791967693,299,299,299 +"763","IAR_LU_subtracted","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.686488325340787,0.0294805288049083,0.00131674147788471,0.45,0.45,0.45,0.45,0.45,0.45,0.0350265291502769,0.00317717209269235,0.000231513954838717,299,299,299 +"764","IAR_LU_subtracted","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.688499643316927,0.0291663813609283,0.00131311787679501,0.45,0.45,0.45,0.45,0.45,0.45,0.0172978748928733,0.00151214165340536,0.000114727932099834,299,299,299 +"765","IAR_LU_subtracted","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689091142135544,0.0290838262954833,0.0013125956066485,0.45,0.45,0.45,0.45,0.45,0.45,0.0086247111300983,0.000746769041458226,5.72226395704009e-05,299,299,299 +"766","IAR_LU_subtracted","Vein",10,1,0.1,0.00299999999999999,0.868045922383658,0.0985985293150582,0.000602377539365262,0.45,0.45,0.45,0.45,0.45,0.45,0.112435321603995,0.00440048348201647,0.000954240122974581,299,299,299 +"767","IAR_LU_subtracted","Vein",30,1,0.1,0.00299999999999999,0.957942477946852,0.0996184418326707,0.00060239305244365,0.45,0.45,0.45,0.45,0.45,0.45,0.0334473349561743,0.00133438593435031,0.000954268289514292,299,299,299 +"768","IAR_LU_subtracted","Vein",50,1,0.1,0.00299999999999999,0.974974772688412,0.0997749955436001,0.000602405603200741,0.45,0.45,0.45,0.45,0.45,0.45,0.0196506919525737,0.000799331221169125,0.000954266532348308,299,299,299 +"769","IAR_LU_subtracted","Vein",100,1,0.1,0.00299999999999999,0.987563371296023,0.0998909406437419,0.000602442811986694,0.45,0.45,0.45,0.45,0.45,0.45,0.00967550352550441,0.000393844437618856,0.000954286483399826,299,299,299 +"770","IAR_LU_subtracted","Vein",200,1,0.1,0.00299999999999999,0.993800432483541,0.0999475578951229,0.000602417326124585,0.45,0.45,0.45,0.45,0.45,0.45,0.00480131473453758,0.000192683440678621,0.000954060412685357,299,299,299 +"771","OGC_AmsterdamUMC_Bayesian_biexp","Artery",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.45,0.45,0.45,0.45,0.45,0.45,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 +"772","OGC_AmsterdamUMC_Bayesian_biexp","Artery",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.45,0.45,0.45,0.45,0.45,0.45,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 +"773","OGC_AmsterdamUMC_Bayesian_biexp","Artery",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.45,0.45,0.45,0.45,0.45,0.45,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 +"774","OGC_AmsterdamUMC_Bayesian_biexp","Artery",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.45,0.45,0.45,0.45,0.45,0.45,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 +"775","OGC_AmsterdamUMC_Bayesian_biexp","Artery",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.45,0.45,0.45,0.45,0.45,0.45,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 +"776","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694246808778769,0.0332124281614618,0.00115662969455558,0.45,0.45,0.45,0.45,0.45,0.45,0.110159746203623,0.0193048930533793,0.000818020501222016,299,299,299 +"777","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.690033147644459,0.0293545237816436,0.00129905886269543,0.45,0.45,0.45,0.45,0.45,0.45,0.036083088630791,0.00362951393892406,0.000284878762206832,299,299,299 +"778","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.689921467398159,0.029138651533785,0.00130314910724909,0.45,0.45,0.45,0.45,0.45,0.45,0.0213772215849651,0.00213834289461457,0.00016610479346135,299,299,299 +"779","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689705414601575,0.0291477643601371,0.0013080534895242,0.45,0.45,0.45,0.45,0.45,0.45,0.0108249806858387,0.00129122051220513,8.27804115283052e-05,299,299,299 +"780","OGC_AmsterdamUMC_Bayesian_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689676530218629,0.0290763054841384,0.00130801784811619,0.45,0.45,0.45,0.45,0.45,0.45,0.00583323341091172,0.000767401324572525,4.21804967296496e-05,299,299,299 +"781","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.914296491555338,0.124951038793113,0.000341385836346878,0.45,0.45,0.45,0.45,0.45,0.45,0.0338708793554179,0.0264916209809969,0.000759817538796138,299,299,299 +"782","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973099807358183,0.107393310942733,0.000232219877437837,0.45,0.45,0.45,0.45,0.45,0.45,0.00780496299937427,0.0074829521952279,0.00043041785307833,299,299,299 +"783","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984111285718873,0.104286408561905,0.000213374220328371,0.45,0.45,0.45,0.45,0.45,0.45,0.00467667444727816,0.00434410118359876,0.000410079720796856,299,299,299 +"784","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992309612905833,0.102048030144424,0.000179453382811866,0.45,0.45,0.45,0.45,0.45,0.45,0.00230378284786357,0.0021258030726679,0.000377336398764356,299,299,299 +"785","OGC_AmsterdamUMC_Bayesian_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996293986630143,0.100989063013544,0.00015368212515944,0.45,0.45,0.45,0.45,0.45,0.45,0.00114638308696868,0.00105306099406643,0.000356019702228346,299,299,299 +"786","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",10,1,0.1,0.003,0.914297401004746,0.124952391582887,0.000341385315837157,0.45,0.45,0.45,0.45,0.45,0.45,0.0338704200880721,0.0264919309675768,0.000759817497225985,299,299,299 +"787","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",30,1,0.1,0.003,0.973099598376866,0.107393352119341,0.000232219992515836,0.45,0.45,0.45,0.45,0.45,0.45,0.00780473426493649,0.00748303413275565,0.000430417814946813,299,299,299 +"788","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",50,1,0.1,0.003,0.984110980162476,0.104286733344672,0.000213374085275976,0.45,0.45,0.45,0.45,0.45,0.45,0.00467665532925233,0.00434422535404416,0.000410079794992667,299,299,299 +"789","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",100,1,0.1,0.003,0.992309672842335,0.102048011852143,0.000179453249523488,0.45,0.45,0.45,0.45,0.45,0.45,0.00230376286511362,0.00212585312384098,0.0003773364651911,299,299,299 +"790","OGC_AmsterdamUMC_Bayesian_biexp","Blood RV",200,1,0.1,0.003,0.996293917212231,0.100989102049737,0.000153682190571484,0.45,0.45,0.45,0.45,0.45,0.45,0.0011463180878882,0.00105305653525395,0.000356019214536034,299,299,299 +"791","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694246845378351,0.0332125427670004,0.00115663122095504,0.45,0.45,0.45,0.45,0.45,0.45,0.110160150700988,0.0193048206014305,0.000818021742499563,299,299,299 +"792","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.690033102633023,0.0293545254824597,0.00129905896131927,0.45,0.45,0.45,0.45,0.45,0.45,0.0360830639131271,0.00362951206875517,0.000284879125083764,299,299,299 +"793","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689855673695442,0.0291428811190877,0.00130360554367507,0.45,0.45,0.45,0.45,0.45,0.45,0.0213154090326844,0.0021325877974294,0.000165776474780529,299,299,299 +"794","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689705423019645,0.029147764170286,0.0013080534599478,0.45,0.45,0.45,0.45,0.45,0.45,0.0108249733952305,0.00129122098709657,8.27803296124957e-05,299,299,299 +"795","OGC_AmsterdamUMC_Bayesian_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689676538098746,0.0290763056742895,0.00130801775791647,0.45,0.45,0.45,0.45,0.45,0.45,0.00583319664850218,0.000767398183974445,4.21801838019575e-05,299,299,299 +"796","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.45,0.45,0.45,0.45,0.45,0.45,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 +"797","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.45,0.45,0.45,0.45,0.45,0.45,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 +"798","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.45,0.45,0.45,0.45,0.45,0.45,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 +"799","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.45,0.45,0.45,0.45,0.45,0.45,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 +"800","OGC_AmsterdamUMC_Bayesian_biexp","esophagus",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.45,0.45,0.45,0.45,0.45,0.45,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 +"801","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",10,0.32,0.03,0.00167,0.360637899450531,0.150015035300945,0.00154163012889772,0.45,0.45,0.45,0.45,0.45,0.45,0.145804400624309,0.408781901041917,0.000573900089132158,299,299,299 +"802","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",30,0.32,0.03,0.00167,0.324529872967669,0.0317518374749041,0.00165212464195461,0.45,0.45,0.45,0.45,0.45,0.45,0.0414528790987675,0.0103045951447145,0.000164116794767313,299,299,299 +"803","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321549234493634,0.0304971461578369,0.00166183273930351,0.45,0.45,0.45,0.45,0.45,0.45,0.0241327106085618,0.00522281089218448,9.5709457545869e-05,299,299,299 +"804","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320358986396952,0.0301033633872045,0.00166686163779349,0.45,0.45,0.45,0.45,0.45,0.45,0.0118402073184446,0.0024750605047479,4.70827199323266e-05,299,299,299 +"805","OGC_AmsterdamUMC_Bayesian_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320077349575714,0.0300206336245331,0.00166866751965742,0.45,0.45,0.45,0.45,0.45,0.45,0.00588722515360254,0.00122081272855179,2.34329155568217e-05,299,299,299 +"806","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.45,0.45,0.45,0.45,0.45,0.45,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 +"807","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.45,0.45,0.45,0.45,0.45,0.45,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 +"808","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.45,0.45,0.45,0.45,0.45,0.45,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 +"809","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.45,0.45,0.45,0.45,0.45,0.45,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 +"810","OGC_AmsterdamUMC_Bayesian_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.45,0.45,0.45,0.45,0.45,0.45,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 +"811","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.45,0.45,0.45,0.45,0.45,0.45,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 +"812","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.45,0.45,0.45,0.45,0.45,0.45,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 +"813","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.45,0.45,0.45,0.45,0.45,0.45,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 +"814","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.45,0.45,0.45,0.45,0.45,0.45,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 +"815","OGC_AmsterdamUMC_Bayesian_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.45,0.45,0.45,0.45,0.45,0.45,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 +"816","OGC_AmsterdamUMC_Bayesian_biexp","Liver",10,0.11,0.1,0.0015,0.170376564882108,0.469616209489762,0.00136302767202211,0.45,0.45,0.45,0.45,0.45,0.45,0.138211368776015,0.731976840414104,0.000361913909318564,299,299,299 +"817","OGC_AmsterdamUMC_Bayesian_biexp","Liver",30,0.11,0.1,0.0015,0.11810940657777,0.227068026042997,0.0014860402075791,0.45,0.45,0.45,0.45,0.45,0.45,0.0342593875584427,0.390847594433051,9.96091018932598e-05,299,299,299 +"818","OGC_AmsterdamUMC_Bayesian_biexp","Liver",50,0.11,0.1,0.0015,0.112169947194152,0.131862486304358,0.00149587941679805,0.45,0.45,0.45,0.45,0.45,0.45,0.0153976558796226,0.168625986104975,5.11568481112502e-05,299,299,299 +"819","OGC_AmsterdamUMC_Bayesian_biexp","Liver",100,0.11,0.1,0.0015,0.110516960663717,0.104566165417941,0.00149817275530986,0.45,0.45,0.45,0.45,0.45,0.45,0.00752550525764433,0.0281966308117207,2.46815644447154e-05,299,299,299 +"820","OGC_AmsterdamUMC_Bayesian_biexp","Liver",200,0.11,0.1,0.0015,0.110097109059224,0.101175495734664,0.00149922432315367,0.45,0.45,0.45,0.45,0.45,0.45,0.00376626520198992,0.0116170123481358,1.22063280870859e-05,299,299,299 +"821","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.45,0.45,0.45,0.45,0.45,0.45,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 +"822","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.45,0.45,0.45,0.45,0.45,0.45,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 +"823","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.45,0.45,0.45,0.45,0.45,0.45,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 +"824","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.45,0.45,0.45,0.45,0.45,0.45,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 +"825","OGC_AmsterdamUMC_Bayesian_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.45,0.45,0.45,0.45,0.45,0.45,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 +"826","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",10,0.07,0.07,0.0015,0.132992854081483,0.461997483376288,0.00136831570972518,0.45,0.45,0.45,0.45,0.45,0.45,0.140522743944648,0.734010313718581,0.000346091519424476,299,299,299 +"827","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0884517939449098,0.289658964780844,0.0014676259819499,0.45,0.45,0.45,0.45,0.45,0.45,0.0508441257041168,0.529373222441277,0.000119387045545757,299,299,299 +"828","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0761265927150077,0.156862196421825,0.00148987685522847,0.45,0.45,0.45,0.45,0.45,0.45,0.0242266882566584,0.309458478938769,6.34852979630936e-05,299,299,299 +"829","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0709638888897991,0.0784496324481009,0.00149743190633742,0.45,0.45,0.45,0.45,0.45,0.45,0.00811747399978573,0.0469212398862685,2.52774164583531e-05,299,299,299 +"830","OGC_AmsterdamUMC_Bayesian_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701854186634233,0.0715583354856421,0.00149905296281753,0.45,0.45,0.45,0.45,0.45,0.45,0.00403493989933669,0.0129671102252917,1.23364517371494e-05,299,299,299 +"831","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",10,0.15,0.08,0.0024,0.246528057993086,0.348133573670134,0.00209292204576382,0.45,0.45,0.45,0.45,0.45,0.45,0.181136487063064,0.627154956139103,0.000656664356996355,299,299,299 +"832","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158668838613204,0.150740461102485,0.00238012869761748,0.45,0.45,0.45,0.45,0.45,0.45,0.0443353824331391,0.290507087513729,0.000184759298657244,299,299,299 +"833","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",50,0.15,0.08,0.0024,0.151909831264822,0.0991014776301079,0.00239319000458008,0.45,0.45,0.45,0.45,0.45,0.45,0.0178980966389395,0.159015209142849,9.10430294136255e-05,299,299,299 +"834","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150454060272023,0.0818373819943648,0.00239709009607841,0.45,0.45,0.45,0.45,0.45,0.45,0.00854549598591259,0.0146137633049668,4.39787671840434e-05,299,299,299 +"835","OGC_AmsterdamUMC_Bayesian_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150083028962968,0.0805213406256401,0.00239877336481973,0.45,0.45,0.45,0.45,0.45,0.45,0.00424830284517062,0.00705220839059697,2.18885732842309e-05,299,299,299 +"836","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.177581724321138,0.43065718969884,0.00125654974398315,0.45,0.45,0.45,0.45,0.45,0.45,0.165637117410062,0.745081523961432,0.000402663506351594,299,299,299 +"837","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.176565399528607,0.0605254346275223,0.00126098577319189,0.45,0.45,0.45,0.45,0.45,0.45,0.0941306062972586,0.26112658574032,0.000185523030805802,299,299,299 +"838","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.169797776388179,0.0172281215928433,0.00126914664260273,0.45,0.45,0.45,0.45,0.45,0.45,0.0691911662849515,0.0530402156979167,0.000129620496323605,299,299,299 +"839","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.156843915754002,0.0102744645346462,0.00128825630219321,0.45,0.45,0.45,0.45,0.45,0.45,0.0330983274466555,0.00280593527748534,6.19639236378919e-05,299,299,299 +"840","OGC_AmsterdamUMC_Bayesian_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151525028767084,0.0100578225668435,0.00129696544759154,0.45,0.45,0.45,0.45,0.45,0.45,0.0150042143805674,0.00127728832085491,2.90654102466401e-05,299,299,299 +"841","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.211255537581016,0.249229775871576,0.00250125413556506,0.45,0.45,0.45,0.45,0.45,0.45,0.261211569379197,0.559657730577179,0.000882896050374514,299,299,299 +"842","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.129163583048985,0.267009677446907,0.00288255604574022,0.45,0.45,0.45,0.45,0.45,0.45,0.17935605322893,0.595048801434633,0.000417501553796525,299,299,299 +"843","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.117317522254229,0.229011081795502,0.0029314606487806,0.45,0.45,0.45,0.45,0.45,0.45,0.148570783679304,0.554095364539563,0.000298907038283006,299,299,299 +"844","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.116118730669429,0.0999844203861992,0.00294503908419238,0.45,0.45,0.45,0.45,0.45,0.45,0.115927313526193,0.331589357967683,0.000200447722297107,299,299,299 +"845","OGC_AmsterdamUMC_Bayesian_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0985240401785247,0.0153444939154568,0.00296476284362889,0.45,0.45,0.45,0.45,0.45,0.45,0.0771271956803151,0.0234254542116207,0.000123398388298247,299,299,299 +"846","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.253952864002308,0.304950429151423,0.00184048044876738,0.45,0.45,0.45,0.45,0.45,0.45,0.214213197637933,0.626011038245362,0.000641541700037926,299,299,299 +"847","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.190171130178663,0.0511649495124037,0.00202203579587968,0.45,0.45,0.45,0.45,0.45,0.45,0.10459577771387,0.179584363579514,0.00027313693132376,299,299,299 +"848","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.168047576006992,0.0329672911242216,0.00206752781385879,0.45,0.45,0.45,0.45,0.45,0.45,0.0512709641268927,0.126949727330615,0.000142980386093099,299,299,299 +"849","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.160311837881477,0.0195051664051028,0.0020832233100509,0.45,0.45,0.45,0.45,0.45,0.45,0.0220990967930741,0.00402428297219528,6.45335266457197e-05,299,299,299 +"850","OGC_AmsterdamUMC_Bayesian_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158557258249577,0.0191206454505599,0.00208778234601869,0.45,0.45,0.45,0.45,0.45,0.45,0.0107178685553389,0.00195416181473647,3.17220496353745e-05,299,299,299 +"851","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.188596572685199,0.385831039883312,0.00189897609609498,0.45,0.45,0.45,0.45,0.45,0.45,0.198632494096536,0.722936113519617,0.000578513574841219,299,299,299 +"852","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.141555513319658,0.17712340325286,0.00204073967739921,0.45,0.45,0.45,0.45,0.45,0.45,0.111543619821617,0.465680625794026,0.000257701453860321,299,299,299 +"853","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.118643922081606,0.0421244291772527,0.00207969517502297,0.45,0.45,0.45,0.45,0.45,0.45,0.0678075161062481,0.14086594416881,0.000152120320312512,299,299,299 +"854","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100892171431045,0.0228352809862843,0.00211127104503827,0.45,0.45,0.45,0.45,0.45,0.45,0.0233124510593522,0.0197315452249424,6.31243655675189e-05,299,299,299 +"855","OGC_AmsterdamUMC_Bayesian_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0979494403439556,0.0203223996833872,0.00211717788580963,0.45,0.45,0.45,0.45,0.45,0.45,0.0105263254249096,0.00334817852355355,2.95709044563407e-05,299,299,299 +"856","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",10,0.69,0.029,0.00131,0.694246360658053,0.0332125553132146,0.00115663016547754,0.45,0.45,0.45,0.45,0.45,0.45,0.110159259316649,0.0193048143897897,0.000818020512686296,299,299,299 +"857","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",30,0.69,0.029,0.00131,0.690033088055209,0.0293545333482025,0.00129905906199326,0.45,0.45,0.45,0.45,0.45,0.45,0.0360830894438484,0.00362952375376617,0.000284878708553556,299,299,299 +"858","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",50,0.69,0.029,0.00131,0.689921486203945,0.0291386488646149,0.00130314885737654,0.45,0.45,0.45,0.45,0.45,0.45,0.0213772482384634,0.00213834833191147,0.00016610478799147,299,299,299 +"859","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",100,0.69,0.029,0.00131,0.689787379406689,0.0291336831256088,0.00130679586340067,0.45,0.45,0.45,0.45,0.45,0.45,0.0108805102554908,0.0012833541569494,8.28438476605137e-05,299,299,299 +"860","OGC_AmsterdamUMC_Bayesian_biexp","small intestine",200,0.69,0.029,0.00131,0.689676541245555,0.0290763054757247,0.00130801778345195,0.45,0.45,0.45,0.45,0.45,0.45,0.00583322921862559,0.000767400913297244,4.21803596038404e-05,299,299,299 +"861","OGC_AmsterdamUMC_Bayesian_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.252378410002267,0.233718646050262,0.00119059786898657,0.45,0.45,0.45,0.45,0.45,0.45,0.143855248399429,0.502476062586288,0.000408972864282049,299,299,299 +"862","OGC_AmsterdamUMC_Bayesian_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.206891201646101,0.0391651098808692,0.00128264117770245,0.45,0.45,0.45,0.45,0.45,0.45,0.0390714113206133,0.0577794578547973,0.000116384817598468,299,299,299 +"863","OGC_AmsterdamUMC_Bayesian_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.202242372508398,0.0312880376598558,0.00129258240323802,0.45,0.45,0.45,0.45,0.45,0.45,0.0221743225017492,0.00880333853639113,6.60228502625122e-05,299,299,299 +"864","OGC_AmsterdamUMC_Bayesian_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200493108698575,0.0302484422333146,0.00129737230400495,0.45,0.45,0.45,0.45,0.45,0.45,0.0107432935350786,0.00383175326077784,3.20545640691115e-05,299,299,299 +"865","OGC_AmsterdamUMC_Bayesian_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.2000920443937,0.0300527202364231,0.00129896878525322,0.45,0.45,0.45,0.45,0.45,0.45,0.00532447796635576,0.00186704596028927,1.58938321517461e-05,299,299,299 +"866","OGC_AmsterdamUMC_Bayesian_biexp","st wall",10,0.3,0.012,0.0015,0.342171653732148,0.169021111769008,0.00137658979771026,0.45,0.45,0.45,0.45,0.45,0.45,0.209121239054118,0.464911517650575,0.000634230099480539,299,299,299 +"867","OGC_AmsterdamUMC_Bayesian_biexp","st wall",30,0.3,0.012,0.0015,0.322622542108482,0.0163119559447378,0.00144210772050894,0.45,0.45,0.45,0.45,0.45,0.45,0.0995249294874889,0.0358945966856197,0.000264951211719173,299,299,299 +"868","OGC_AmsterdamUMC_Bayesian_biexp","st wall",50,0.3,0.012,0.0015,0.307380239713298,0.0123840142302169,0.00147963560215619,0.45,0.45,0.45,0.45,0.45,0.45,0.0543986230945646,0.00311908608212234,0.000143578936921841,299,299,299 +"869","OGC_AmsterdamUMC_Bayesian_biexp","st wall",100,0.3,0.012,0.0015,0.301693691231062,0.0120871111509783,0.00149429686700861,0.45,0.45,0.45,0.45,0.45,0.45,0.0263415216139092,0.00143226934515234,6.96702203754273e-05,299,299,299 +"870","OGC_AmsterdamUMC_Bayesian_biexp","st wall",200,0.3,0.012,0.0015,0.300260349126461,0.0120289058061544,0.00149847883633801,0.45,0.45,0.45,0.45,0.45,0.45,0.0131909252941061,0.000701134900800486,3.49408339753062e-05,299,299,299 +"871","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694259683027242,0.0332121262581744,0.00115651817908036,0.45,0.45,0.45,0.45,0.45,0.45,0.11017656415909,0.0193052051533991,0.000818178301615205,299,299,299 +"872","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.690033167699518,0.0293545217522552,0.00129905853784076,0.45,0.45,0.45,0.45,0.45,0.45,0.036083058729084,0.00362951389776666,0.000284878311839241,299,299,299 +"873","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689921506074573,0.0291386465936453,0.0013031486571486,0.45,0.45,0.45,0.45,0.45,0.45,0.0213772426772885,0.00213834747992634,0.000166104827306889,299,299,299 +"874","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689705435319841,0.0291477639759397,0.00130805336484234,0.45,0.45,0.45,0.45,0.45,0.45,0.0108250110017957,0.0012912220707904,8.27806112880171e-05,299,299,299 +"875","OGC_AmsterdamUMC_Bayesian_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689703364774609,0.0290729200975083,0.0013079275799941,0.45,0.45,0.45,0.45,0.45,0.45,0.0057973136397047,0.000764637348817088,4.20153078500508e-05,299,299,299 +"876","OGC_AmsterdamUMC_Bayesian_biexp","Vein",10,1,0.1,0.00299999999999999,0.914295867026791,0.124952449208066,0.000341386376995397,0.45,0.45,0.45,0.45,0.45,0.45,0.033870556357192,0.0264921360903649,0.000759818054968653,299,299,299 +"877","OGC_AmsterdamUMC_Bayesian_biexp","Vein",30,1,0.1,0.00299999999999999,0.973099780568972,0.107393408056422,0.000232219949442385,0.45,0.45,0.45,0.45,0.45,0.45,0.00780476201787954,0.00748295051395532,0.000430417878162574,299,299,299 +"878","OGC_AmsterdamUMC_Bayesian_biexp","Vein",50,1,0.1,0.00299999999999999,0.984111118518383,0.104286700344162,0.000213374328770124,0.45,0.45,0.45,0.45,0.45,0.45,0.00467685321257514,0.00434424421111718,0.000410079679040286,299,299,299 +"879","OGC_AmsterdamUMC_Bayesian_biexp","Vein",100,1,0.1,0.00299999999999999,0.992309696276133,0.102047954866857,0.000179453478078494,0.45,0.45,0.45,0.45,0.45,0.45,0.00230377417751352,0.00212580311791353,0.000377336365917817,299,299,299 +"880","OGC_AmsterdamUMC_Bayesian_biexp","Vein",200,1,0.1,0.00299999999999999,0.996293961868916,0.100989052773125,0.000153682306312602,0.45,0.45,0.45,0.45,0.45,0.45,0.00114635413380225,0.0010530293970243,0.000356019850089775,299,299,299 +"881","OGC_AmsterdamUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.45,0.45,0.45,0.45,0.45,0.45,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 +"882","OGC_AmsterdamUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.45,0.45,0.45,0.45,0.45,0.45,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 +"883","OGC_AmsterdamUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.45,0.45,0.45,0.45,0.45,0.45,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 +"884","OGC_AmsterdamUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.45,0.45,0.45,0.45,0.45,0.45,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 +"885","OGC_AmsterdamUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 +"886","OGC_AmsterdamUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.694830688531838,0.0326249863604666,0.00114655138542055,0.45,0.45,0.45,0.45,0.45,0.45,0.0978007798077074,0.0170421542867141,0.00074426190292453,299,299,299 +"887","OGC_AmsterdamUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.689570850554634,0.0293846834593745,0.00130099623058546,0.45,0.45,0.45,0.45,0.45,0.45,0.0358332140742521,0.00328309904723427,0.000279782024748395,299,299,299 +"888","OGC_AmsterdamUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.68982569362266,0.0291500977518991,0.00130432508924539,0.45,0.45,0.45,0.45,0.45,0.45,0.0213881941208833,0.0019024829657527,0.000166083415100297,299,299,299 +"889","OGC_AmsterdamUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689946565171096,0.0290467790735175,0.00130699632921778,0.45,0.45,0.45,0.45,0.45,0.45,0.0106631625297783,0.000938640327346139,8.26562863313582e-05,299,299,299 +"890","OGC_AmsterdamUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689981335122987,0.0290165319422673,0.00130845678093965,0.45,0.45,0.45,0.45,0.45,0.45,0.00532704595643484,0.00046772177618261,4.12831236659919e-05,299,299,299 +"891","OGC_AmsterdamUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.916551204416989,0.122369011945018,0.000273066806868795,0.45,0.45,0.45,0.45,0.45,0.45,0.0227251910785163,0.0234330402970799,0.000525988236826141,299,299,299 +"892","OGC_AmsterdamUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.973161260978649,0.10654669843169,0.000228130802991582,0.45,0.45,0.45,0.45,0.45,0.45,0.00782859221131808,0.00645782892908593,0.000431214165202723,299,299,299 +"893","OGC_AmsterdamUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.984189738175199,0.103791606376352,0.000208198211823357,0.45,0.45,0.45,0.45,0.45,0.45,0.0046830337641484,0.00375278688446861,0.000406133269658223,299,299,299 +"894","OGC_AmsterdamUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.992359928068325,0.10181117133177,0.000175728220305858,0.45,0.45,0.45,0.45,0.45,0.45,0.00229602457471637,0.0018352080684285,0.000373115272077105,299,299,299 +"895","OGC_AmsterdamUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.996323154092639,0.100873285145009,0.000149761277399738,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622008026348,0.000908483034149541,0.0003523857739893,299,299,299 +"896","OGC_AmsterdamUMC_biexp","Blood RV",10,1,0.1,0.003,0.916551204477061,0.122369011950598,0.000273066803012016,0.45,0.45,0.45,0.45,0.45,0.45,0.0227251914120853,0.0234330403592379,0.000525988248231766,299,299,299 +"897","OGC_AmsterdamUMC_biexp","Blood RV",30,1,0.1,0.003,0.973161260787835,0.106546698466594,0.000228130843033075,0.45,0.45,0.45,0.45,0.45,0.45,0.0078285922138933,0.00645782890351296,0.000431214372101425,299,299,299 +"898","OGC_AmsterdamUMC_biexp","Blood RV",50,1,0.1,0.003,0.984189738173453,0.103791606376294,0.000208198245221205,0.45,0.45,0.45,0.45,0.45,0.45,0.00468303351061325,0.00375278684341751,0.000406133457828171,299,299,299 +"899","OGC_AmsterdamUMC_biexp","Blood RV",100,1,0.1,0.003,0.992359928406606,0.101811171259488,0.000175728107883654,0.45,0.45,0.45,0.45,0.45,0.45,0.00229602425602299,0.00183520810771947,0.000373114811370238,299,299,299 +"900","OGC_AmsterdamUMC_biexp","Blood RV",200,1,0.1,0.003,0.996323154043503,0.100873285154226,0.000149761334226485,0.45,0.45,0.45,0.45,0.45,0.45,0.0011362202179319,0.000908483065035726,0.000352386145881468,299,299,299 +"901","OGC_AmsterdamUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.694830688306291,0.0326249863621617,0.00114655138827578,0.45,0.45,0.45,0.45,0.45,0.45,0.0978007793640295,0.0170421542714422,0.000744261900488319,299,299,299 +"902","OGC_AmsterdamUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.689570850526864,0.029384683464532,0.0013009962306133,0.45,0.45,0.45,0.45,0.45,0.45,0.0358332145166679,0.00328309907506283,0.000279782027560119,299,299,299 +"903","OGC_AmsterdamUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.689825693551577,0.0291500977561171,0.00130432508986481,0.45,0.45,0.45,0.45,0.45,0.45,0.0213881941750843,0.00190248296579918,0.00016608341577808,299,299,299 +"904","OGC_AmsterdamUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689946565084964,0.0290467790793416,0.00130699633001302,0.45,0.45,0.45,0.45,0.45,0.45,0.0106631624492495,0.000938640323571297,8.26562859037306e-05,299,299,299 +"905","OGC_AmsterdamUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689981335136009,0.0290165319415151,0.00130845678084101,0.45,0.45,0.45,0.45,0.45,0.45,0.0053270460155283,0.000467721779019385,4.12831240551719e-05,299,299,299 +"906","OGC_AmsterdamUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.45,0.45,0.45,0.45,0.45,0.45,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 +"907","OGC_AmsterdamUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.45,0.45,0.45,0.45,0.45,0.45,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 +"908","OGC_AmsterdamUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.45,0.45,0.45,0.45,0.45,0.45,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 +"909","OGC_AmsterdamUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.45,0.45,0.45,0.45,0.45,0.45,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 +"910","OGC_AmsterdamUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.45,0.45,0.45,0.45,0.45,0.45,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 +"911","OGC_AmsterdamUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.354705480389262,0.0473833476608593,0.00153198019182536,0.45,0.45,0.45,0.45,0.45,0.45,0.137749939788292,0.0472409043102502,0.000533877598583494,299,299,299 +"912","OGC_AmsterdamUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.323201589358344,0.0315809860579912,0.00165554120515616,0.45,0.45,0.45,0.45,0.45,0.45,0.0403072185419254,0.00893525483720027,0.00015820636234845,299,299,299 +"913","OGC_AmsterdamUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.321129497580445,0.030548639640733,0.00166345901917572,0.45,0.45,0.45,0.45,0.45,0.45,0.0237323439776132,0.00468168235212985,9.37147518572373e-05,299,299,299 +"914","OGC_AmsterdamUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.320280006138234,0.0301512754913706,0.00166747654598143,0.45,0.45,0.45,0.45,0.45,0.45,0.0117336921411727,0.00221904834434368,4.65224800482904e-05,299,299,299 +"915","OGC_AmsterdamUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.320069642648256,0.030047939733871,0.00166892194429283,0.45,0.45,0.45,0.45,0.45,0.45,0.00584712392635801,0.00109546564782228,2.32146303289027e-05,299,299,299 +"916","OGC_AmsterdamUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.45,0.45,0.45,0.45,0.45,0.45,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 +"917","OGC_AmsterdamUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.45,0.45,0.45,0.45,0.45,0.45,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 +"918","OGC_AmsterdamUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.45,0.45,0.45,0.45,0.45,0.45,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 +"919","OGC_AmsterdamUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.45,0.45,0.45,0.45,0.45,0.45,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 +"920","OGC_AmsterdamUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.45,0.45,0.45,0.45,0.45,0.45,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 +"921","OGC_AmsterdamUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.45,0.45,0.45,0.45,0.45,0.45,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 +"922","OGC_AmsterdamUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.45,0.45,0.45,0.45,0.45,0.45,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 +"923","OGC_AmsterdamUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.45,0.45,0.45,0.45,0.45,0.45,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 +"924","OGC_AmsterdamUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.45,0.45,0.45,0.45,0.45,0.45,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 +"925","OGC_AmsterdamUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.45,0.45,0.45,0.45,0.45,0.45,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 +"926","OGC_AmsterdamUMC_biexp","Liver",10,0.11,0.1,0.0015,0.168781483710098,0.0998946664266393,0.0013498050183832,0.45,0.45,0.45,0.45,0.45,0.45,0.122995139274488,0.0772265009198665,0.000337252957986261,299,299,299 +"927","OGC_AmsterdamUMC_biexp","Liver",30,0.11,0.1,0.0015,0.114188731736888,0.115331619534224,0.00148632594936495,0.45,0.45,0.45,0.45,0.45,0.45,0.0216959423795506,0.0557579468019812,8.43750873327471e-05,299,299,299 +"928","OGC_AmsterdamUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111084793289577,0.110147712355781,0.00149517257250774,0.45,0.45,0.45,0.45,0.45,0.45,0.01183413282986,0.0399148213895639,4.8761702300905e-05,299,299,299 +"929","OGC_AmsterdamUMC_biexp","Liver",100,0.11,0.1,0.0015,0.110231190403675,0.103476574388879,0.0014982923573173,0.45,0.45,0.45,0.45,0.45,0.45,0.00588808517047419,0.0205159283218359,2.43744136435469e-05,299,299,299 +"930","OGC_AmsterdamUMC_biexp","Liver",200,0.11,0.1,0.0015,0.1100470782725,0.101125031030003,0.00149929708375471,0.45,0.45,0.45,0.45,0.45,0.45,0.00293209185601329,0.00988546801948204,1.21465617474882e-05,299,299,299 +"931","OGC_AmsterdamUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.45,0.45,0.45,0.45,0.45,0.45,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 +"932","OGC_AmsterdamUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.45,0.45,0.45,0.45,0.45,0.45,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 +"933","OGC_AmsterdamUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.45,0.45,0.45,0.45,0.45,0.45,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 +"934","OGC_AmsterdamUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.45,0.45,0.45,0.45,0.45,0.45,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 +"935","OGC_AmsterdamUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.45,0.45,0.45,0.45,0.45,0.45,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 +"936","OGC_AmsterdamUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.140842582474029,0.0815154419321809,0.00133683779290497,0.45,0.45,0.45,0.45,0.45,0.45,0.133651654726981,0.0787637500133576,0.000337383058598956,299,299,299 +"937","OGC_AmsterdamUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0829284043873291,0.0925385612868686,0.00146970569880693,0.45,0.45,0.45,0.45,0.45,0.45,0.040894147264683,0.0669997325413034,0.00010234659109373,299,299,299 +"938","OGC_AmsterdamUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.072923245672355,0.086543488787249,0.00149141826884349,0.45,0.45,0.45,0.45,0.45,0.45,0.0155435838870278,0.050860948922495,5.15890939821251e-05,299,299,299 +"939","OGC_AmsterdamUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.070524437875184,0.0753318595008239,0.00149772019600704,0.45,0.45,0.45,0.45,0.45,0.45,0.00682514888448031,0.025139239611477,2.45968000885053e-05,299,299,299 +"940","OGC_AmsterdamUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.0701212467432704,0.0714929242888122,0.00149916064828103,0.45,0.45,0.45,0.45,0.45,0.45,0.00338190541112971,0.0111832331213025,1.22606190149771e-05,299,299,299 +"941","OGC_AmsterdamUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.231050934614615,0.0918109124612231,0.00210156488326174,0.45,0.45,0.45,0.45,0.45,0.45,0.16328457467878,0.0740143427520423,0.000597823975653223,299,299,299 +"942","OGC_AmsterdamUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.154139538104581,0.0938792386194375,0.00238288874920667,0.45,0.45,0.45,0.45,0.45,0.45,0.0290480598568536,0.0455341861546974,0.000152632768816471,299,299,299 +"943","OGC_AmsterdamUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.15115355891339,0.0860986665681959,0.00239348258776536,0.45,0.45,0.45,0.45,0.45,0.45,0.0156713928831147,0.0272104113084599,8.8104507105354e-05,299,299,299 +"944","OGC_AmsterdamUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150283499713373,0.0817402508977409,0.00239745921048469,0.45,0.45,0.45,0.45,0.45,0.45,0.0077061027385642,0.0125940079355904,4.36999482749641e-05,299,299,299 +"945","OGC_AmsterdamUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150069318927198,0.0805473449808135,0.00239890817229748,0.45,0.45,0.45,0.45,0.45,0.45,0.00382375516428169,0.00608744535227897,2.17541336207165e-05,299,299,299 +"946","OGC_AmsterdamUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.184853535610611,0.0474378705656416,0.00120984216661857,0.45,0.45,0.45,0.45,0.45,0.45,0.161104187646429,0.0669702421956942,0.000392891369414266,299,299,299 +"947","OGC_AmsterdamUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.1758987150233,0.0213648978673952,0.0012561175701719,0.45,0.45,0.45,0.45,0.45,0.45,0.0959617612998877,0.0372699012998766,0.00018463821702496,299,299,299 +"948","OGC_AmsterdamUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.166798142533227,0.0139339848239637,0.00127239422373439,0.45,0.45,0.45,0.45,0.45,0.45,0.0681687338425591,0.0204281200559457,0.000125570308752639,299,299,299 +"949","OGC_AmsterdamUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.155050447560094,0.0103148716578063,0.00129097893352421,0.45,0.45,0.45,0.45,0.45,0.45,0.0319693578528234,0.00247522256148057,5.97694054006783e-05,299,299,299 +"950","OGC_AmsterdamUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.151155511078491,0.0100771654020746,0.00129758916819627,0.45,0.45,0.45,0.45,0.45,0.45,0.01486591983984,0.00114131889925594,2.84629910683132e-05,299,299,299 +"951","OGC_AmsterdamUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.262616475802028,0.0308625180597483,0.00230293995321135,0.45,0.45,0.45,0.45,0.45,0.45,0.288611721740561,0.0557288601070258,0.000959963395181612,299,299,299 +"952","OGC_AmsterdamUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.171752736546838,0.0258191200871392,0.00279901103476943,0.45,0.45,0.45,0.45,0.45,0.45,0.188837545487512,0.0473569013409168,0.000422023702062297,299,299,299 +"953","OGC_AmsterdamUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.154585152777794,0.0269701085601376,0.00286376703903012,0.45,0.45,0.45,0.45,0.45,0.45,0.156425793643098,0.0489644773433195,0.000304246897964977,299,299,299 +"954","OGC_AmsterdamUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.130337929311287,0.0221023076365671,0.00291708995451447,0.45,0.45,0.45,0.45,0.45,0.45,0.119422596085694,0.0390373666690182,0.000200857412897068,299,299,299 +"955","OGC_AmsterdamUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0981124920664315,0.01363368266491,0.00296220821462304,0.45,0.45,0.45,0.45,0.45,0.45,0.0749749651464143,0.0203675508518603,0.000119612766836194,299,299,299 +"956","OGC_AmsterdamUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.277052826290319,0.0434335812083184,0.00174987911491906,0.45,0.45,0.45,0.45,0.45,0.45,0.215413208541891,0.0610132755885743,0.000654646483328416,299,299,299 +"957","OGC_AmsterdamUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.185983092632004,0.0302582799936771,0.00202389214446307,0.45,0.45,0.45,0.45,0.45,0.45,0.103473937799966,0.0376625252245158,0.000263126852971238,299,299,299 +"958","OGC_AmsterdamUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.165498695949482,0.0224982445301877,0.00207086299443277,0.45,0.45,0.45,0.45,0.45,0.45,0.0477938940481895,0.0166104586174518,0.00013310763237306,299,299,299 +"959","OGC_AmsterdamUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.159741157526869,0.0195635450173089,0.00208454849886483,0.45,0.45,0.45,0.45,0.45,0.45,0.0217945168049873,0.00378660527925079,6.31887376202441e-05,299,299,299 +"960","OGC_AmsterdamUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.158391248282066,0.0191546653722228,0.00208829309020907,0.45,0.45,0.45,0.45,0.45,0.45,0.0106514311539535,0.0017870044264751,3.11905633716254e-05,299,299,299 +"961","OGC_AmsterdamUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.2148105377081,0.0487963568495767,0.00180421269859133,0.45,0.45,0.45,0.45,0.45,0.45,0.209309135268436,0.0669015647143579,0.000588336343347944,299,299,299 +"962","OGC_AmsterdamUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.146123885205131,0.0373755524225729,0.00202046535882605,0.45,0.45,0.45,0.45,0.45,0.45,0.110848492366364,0.04877666816789,0.000246047390509527,299,299,299 +"963","OGC_AmsterdamUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.114091178865341,0.0306272982674573,0.00208475182665721,0.45,0.45,0.45,0.45,0.45,0.45,0.064994913794702,0.0366758241940987,0.000145885088018764,299,299,299 +"964","OGC_AmsterdamUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.100082483097346,0.0217012846057203,0.00211233362767267,0.45,0.45,0.45,0.45,0.45,0.45,0.022263981665253,0.00829489525871493,5.9911493759657e-05,299,299,299 +"965","OGC_AmsterdamUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0977201096113241,0.0203704427744955,0.00211773849426202,0.45,0.45,0.45,0.45,0.45,0.45,0.0103898391865378,0.00309514793102558,2.89432490155649e-05,299,299,299 +"966","OGC_AmsterdamUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.694830687906111,0.0326249863850724,0.001146551391007,0.45,0.45,0.45,0.45,0.45,0.45,0.0978007791606039,0.0170421543207036,0.000744261895530268,299,299,299 +"967","OGC_AmsterdamUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.689570850315831,0.0293846834755066,0.00130099623277285,0.45,0.45,0.45,0.45,0.45,0.45,0.0358332141325587,0.00328309905455554,0.000279782025078523,299,299,299 +"968","OGC_AmsterdamUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.689825693573063,0.0291500977548317,0.0013043250896893,0.45,0.45,0.45,0.45,0.45,0.45,0.0213881941310553,0.00190248296633076,0.000166083414640446,299,299,299 +"969","OGC_AmsterdamUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.68994656517302,0.0290467790735891,0.00130699632918918,0.45,0.45,0.45,0.45,0.45,0.45,0.0106631625130881,0.000938640325588028,8.26562859975714e-05,299,299,299 +"970","OGC_AmsterdamUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.689981335140809,0.0290165319414175,0.00130845678076352,0.45,0.45,0.45,0.45,0.45,0.45,0.00532704601832268,0.000467721780395998,4.1283123962599e-05,299,299,299 +"971","OGC_AmsterdamUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.248565345872263,0.0568790590809539,0.00117109082310806,0.45,0.45,0.45,0.45,0.45,0.45,0.138108152592245,0.0614284067605453,0.000385048669212005,299,299,299 +"972","OGC_AmsterdamUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.204799212322826,0.0344032230756975,0.00128537474230259,0.45,0.45,0.45,0.45,0.45,0.45,0.0373889502807019,0.0196932990153424,0.000109827153921283,299,299,299 +"973","OGC_AmsterdamUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201678467795085,0.0312420978469793,0.00129383894795446,0.45,0.45,0.45,0.45,0.45,0.45,0.0214546726422535,0.0077523763498131,6.40824451508019e-05,299,299,299 +"974","OGC_AmsterdamUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.20040747359065,0.0303107930918353,0.00129785077922554,0.45,0.45,0.45,0.45,0.45,0.45,0.0104719587309842,0.00342852469585086,3.15725299307934e-05,299,299,299 +"975","OGC_AmsterdamUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.200098827653497,0.0300920084049103,0.00129915169076204,0.45,0.45,0.45,0.45,0.45,0.45,0.00519380978047521,0.00166907680512249,1.57069706717535e-05,299,299,299 +"976","OGC_AmsterdamUMC_biexp","st wall",10,0.3,0.012,0.0015,0.361593393686145,0.0323328748012714,0.00130132220666322,0.45,0.45,0.45,0.45,0.45,0.45,0.208350215148267,0.0514342217408351,0.000612311819072441,299,299,299 +"977","OGC_AmsterdamUMC_biexp","st wall",30,0.3,0.012,0.0015,0.316719659160763,0.0137022551884621,0.00145359061242711,0.45,0.45,0.45,0.45,0.45,0.45,0.0970529464093194,0.00856485498776069,0.000254686991328844,299,299,299 +"978","OGC_AmsterdamUMC_biexp","st wall",50,0.3,0.012,0.0015,0.305193533818909,0.0124323700210719,0.00148436640149277,0.45,0.45,0.45,0.45,0.45,0.45,0.053613759973711,0.00282298876439099,0.000140362193961726,299,299,299 +"979","OGC_AmsterdamUMC_biexp","st wall",100,0.3,0.012,0.0015,0.3011193322049,0.0121135942239775,0.00149571619204976,0.45,0.45,0.45,0.45,0.45,0.45,0.0261843319002159,0.00129074569132032,6.85575356626846e-05,299,299,299 +"980","OGC_AmsterdamUMC_biexp","st wall",200,0.3,0.012,0.0015,0.300225825318409,0.0120334534978712,0.00149864155647832,0.45,0.45,0.45,0.45,0.45,0.45,0.0130262845926758,0.000630340215988195,3.40956211098914e-05,299,299,299 +"981","OGC_AmsterdamUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.694830688564467,0.032624986312475,0.00114655138620799,0.45,0.45,0.45,0.45,0.45,0.45,0.0978007790483066,0.017042154071943,0.000744261894497508,299,299,299 +"982","OGC_AmsterdamUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689570850550309,0.0293846834605323,0.00130099623067048,0.45,0.45,0.45,0.45,0.45,0.45,0.03583321437894,0.00328309906489773,0.000279782027780018,299,299,299 +"983","OGC_AmsterdamUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689825693412246,0.0291500977660697,0.00130432509126435,0.45,0.45,0.45,0.45,0.45,0.45,0.0213881942331915,0.00190248296909735,0.000166083415658577,299,299,299 +"984","OGC_AmsterdamUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689946565157839,0.0290467790741476,0.00130699632927992,0.45,0.45,0.45,0.45,0.45,0.45,0.0106631624923704,0.000938640325039952,8.2656285973903e-05,299,299,299 +"985","OGC_AmsterdamUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689981335112322,0.0290165319430504,0.00130845678104043,0.45,0.45,0.45,0.45,0.45,0.45,0.00532704598651555,0.000467721780481497,4.1283123603074e-05,299,299,299 +"986","OGC_AmsterdamUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.916551204244533,0.122369011974545,0.000273066816835779,0.45,0.45,0.45,0.45,0.45,0.45,0.022725191121915,0.0234330403198178,0.000525988259691735,299,299,299 +"987","OGC_AmsterdamUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.973161261240563,0.106546698361441,0.000228130761062279,0.45,0.45,0.45,0.45,0.45,0.45,0.00782859243617106,0.0064578289415521,0.000431214198209649,299,299,299 +"988","OGC_AmsterdamUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.984189738028885,0.103791606406811,0.000208198255818229,0.45,0.45,0.45,0.45,0.45,0.45,0.00468303362319796,0.00375278684718259,0.000406133264965843,299,299,299 +"989","OGC_AmsterdamUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.992359928276546,0.101811171283772,0.000175728187662851,0.45,0.45,0.45,0.45,0.45,0.45,0.00229602432637319,0.00183520806791812,0.000373115337318807,299,299,299 +"990","OGC_AmsterdamUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996323153986104,0.100873285167583,0.000149761440764175,0.45,0.45,0.45,0.45,0.45,0.45,0.00113622001644103,0.00090848307766313,0.000352385760028282,299,299,299 +"991","OGC_AmsterdamUMC_biexp_segmented","Artery",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.45,0.45,0.45,0.45,0.45,0.45,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 +"992","OGC_AmsterdamUMC_biexp_segmented","Artery",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.45,0.45,0.45,0.45,0.45,0.45,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 +"993","OGC_AmsterdamUMC_biexp_segmented","Artery",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.45,0.45,0.45,0.45,0.45,0.45,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 +"994","OGC_AmsterdamUMC_biexp_segmented","Artery",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.45,0.45,0.45,0.45,0.45,0.45,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 +"995","OGC_AmsterdamUMC_biexp_segmented","Artery",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.45,0.45,0.45,0.45,0.45,0.45,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 +"996","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390180236,0.00131067694624179,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359410903,0.00746591757058437,0.000965452623261198,299,299,299 +"997","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091792,0.00136286457292459,0.45,0.45,0.45,0.45,0.45,0.45,0.0442643529688101,0.000185589786252479,0.000322790073010869,299,299,299 +"998","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.45,0.45,0.45,0.45,0.45,0.45,0.0260317923438205,1.40320085058926e-10,0.000190041408090366,299,299,299 +"999","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.45,0.45,0.45,0.45,0.45,0.45,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 +"1000","OGC_AmsterdamUMC_biexp_segmented","asc lower intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.45,0.45,0.45,0.45,0.45,0.45,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 +"1001","OGC_AmsterdamUMC_biexp_segmented","Blood RA",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770516281,0.000532739646128184,0.45,0.45,0.45,0.45,0.45,0.45,0.0603329212170224,0.0338595994748754,0.000876166916139467,299,299,299 +"1002","OGC_AmsterdamUMC_biexp_segmented","Blood RA",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163987,0.000532747467797313,0.45,0.45,0.45,0.45,0.45,0.45,0.0201116860529649,0.00814087200682786,0.000876181456030473,299,299,299 +"1003","OGC_AmsterdamUMC_biexp_segmented","Blood RA",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114017,0.000549427490684811,0.45,0.45,0.45,0.45,0.45,0.45,0.0125526161570658,0.00468981671653349,0.000912813853531625,299,299,299 +"1004","OGC_AmsterdamUMC_biexp_segmented","Blood RA",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060781948,0.000549477159445701,0.45,0.45,0.45,0.45,0.45,0.45,0.00627640558821837,0.00226259175006359,0.000912855515978945,299,299,299 +"1005","OGC_AmsterdamUMC_biexp_segmented","Blood RA",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864892,0.000549569685652002,0.45,0.45,0.45,0.45,0.45,0.45,0.00313858362490246,0.00111235352017906,0.000913010145476883,299,299,299 +"1006","OGC_AmsterdamUMC_biexp_segmented","Blood RV",10,1,0.1,0.003,0.89187652895809,0.130371770521945,0.000532739646128184,0.45,0.45,0.45,0.45,0.45,0.45,0.0603329212170224,0.0338595995146847,0.000876166916139467,299,299,299 +"1007","OGC_AmsterdamUMC_biexp_segmented","Blood RV",30,1,0.1,0.003,0.963958649017849,0.108709609162974,0.000532747467797313,0.45,0.45,0.45,0.45,0.45,0.45,0.0201116860529649,0.00814087200609997,0.000876181456030473,299,299,299 +"1008","OGC_AmsterdamUMC_biexp_segmented","Blood RV",50,1,0.1,0.003,0.97816921696173,0.105139058114271,0.000549427490684811,0.45,0.45,0.45,0.45,0.45,0.45,0.0125526161570658,0.0046898167166192,0.000912813853531625,299,299,299 +"1009","OGC_AmsterdamUMC_biexp_segmented","Blood RV",100,1,0.1,0.003,0.989084383490558,0.102522060782086,0.000549477159445701,0.45,0.45,0.45,0.45,0.45,0.45,0.00627640558821837,0.00226259175040105,0.000912855515978945,299,299,299 +"1010","OGC_AmsterdamUMC_biexp_segmented","Blood RV",200,1,0.1,0.003,0.994541921036986,0.10125504286489,0.000549569685652002,0.45,0.45,0.45,0.45,0.45,0.45,0.00313858362490246,0.00111235352008543,0.000913010145476883,299,299,299 +"1011","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",10,0.69,0.029,0.00131,0.661034109543676,0.0519537390427511,0.00131067694617946,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359483562,0.00746591763226972,0.000965452623351917,299,299,299 +"1012","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",30,0.69,0.029,0.00131,0.677766188255513,0.0500107152093789,0.00136286457330544,0.45,0.45,0.45,0.45,0.45,0.45,0.0442643529054461,0.00018558978971045,0.000322790072591844,299,299,299 +"1013","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",50,0.69,0.029,0.00131,0.68022868657494,0.0500000000118474,0.00135564782184761,0.45,0.45,0.45,0.45,0.45,0.45,0.0260317923174537,1.4032007815239e-10,0.000190041407906453,299,299,299 +"1014","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",100,0.69,0.029,0.00131,0.6813744273752,0.0500000000003099,0.00135334951488224,0.45,0.45,0.45,0.45,0.45,0.45,0.0128991835089443,1.00907554152635e-12,9.41499540600846e-05,299,299,299 +"1015","OGC_AmsterdamUMC_biexp_segmented","desc lower intestine",200,0.69,0.029,0.00131,0.681731199292581,0.0500000000001251,0.0013531962138951,0.45,0.45,0.45,0.45,0.45,0.45,0.0064313384229787,1.04042230662964e-13,4.6928581419636e-05,299,299,299 +"1016","OGC_AmsterdamUMC_biexp_segmented","esophagus",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.45,0.45,0.45,0.45,0.45,0.45,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 +"1017","OGC_AmsterdamUMC_biexp_segmented","esophagus",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.45,0.45,0.45,0.45,0.45,0.45,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 +"1018","OGC_AmsterdamUMC_biexp_segmented","esophagus",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.45,0.45,0.45,0.45,0.45,0.45,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 +"1019","OGC_AmsterdamUMC_biexp_segmented","esophagus",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.45,0.45,0.45,0.45,0.45,0.45,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 +"1020","OGC_AmsterdamUMC_biexp_segmented","esophagus",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.45,0.45,0.45,0.45,0.45,0.45,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 +"1021","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",10,0.32,0.03,0.00167,0.299578686896399,0.132769823712057,0.00168980800820372,0.45,0.45,0.45,0.45,0.45,0.45,0.149762288927687,0.32984986456084,0.000548090902016987,299,299,299 +"1022","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",30,0.32,0.03,0.00167,0.313170236463335,0.0516203124175616,0.00168195485542747,0.45,0.45,0.45,0.45,0.45,0.45,0.0486290067293564,0.01501020130752,0.000178975234852931,299,299,299 +"1023","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",50,0.32,0.03,0.00167,0.31488847851361,0.0500821437323555,0.00167998254113713,0.45,0.45,0.45,0.45,0.45,0.45,0.02898245005215,0.000997701518239156,0.000106701729986798,299,299,299 +"1024","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",100,0.32,0.03,0.00167,0.315755920776668,0.0500000015315932,0.00167952947907849,0.45,0.45,0.45,0.45,0.45,0.45,0.0144405690372401,4.49183117367308e-09,5.31665315365844e-05,299,299,299 +"1025","OGC_AmsterdamUMC_biexp_segmented","esophagus cont",200,0.32,0.03,0.00167,0.316057259131808,0.0500000001130876,0.00167962601706896,0.45,0.45,0.45,0.45,0.45,0.45,0.0072110136583362,1.36073541825413e-09,2.65481541866544e-05,299,299,299 +"1026","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.45,0.45,0.45,0.45,0.45,0.45,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 +"1027","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.45,0.45,0.45,0.45,0.45,0.45,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 +"1028","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.45,0.45,0.45,0.45,0.45,0.45,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 +"1029","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.45,0.45,0.45,0.45,0.45,0.45,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 +"1030","OGC_AmsterdamUMC_biexp_segmented","Left kidney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.45,0.45,0.45,0.45,0.45,0.45,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 +"1031","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.45,0.45,0.45,0.45,0.45,0.45,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 +"1032","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.45,0.45,0.45,0.45,0.45,0.45,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 +"1033","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.45,0.45,0.45,0.45,0.45,0.45,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 +"1034","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.45,0.45,0.45,0.45,0.45,0.45,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 +"1035","OGC_AmsterdamUMC_biexp_segmented","left kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.45,0.45,0.45,0.45,0.45,0.45,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 +"1036","OGC_AmsterdamUMC_biexp_segmented","Liver",10,0.11,0.1,0.0015,0.0972321801659825,0.35559843435101,0.00150859052204052,0.45,0.45,0.45,0.45,0.45,0.45,0.134839808929966,0.632502439816993,0.000367327987709817,299,299,299 +"1037","OGC_AmsterdamUMC_biexp_segmented","Liver",30,0.11,0.1,0.0015,0.107694887153018,0.226173724263367,0.00150016928920599,0.45,0.45,0.45,0.45,0.45,0.45,0.0451472711617818,0.380098790845709,0.000121950650671429,299,299,299 +"1038","OGC_AmsterdamUMC_biexp_segmented","Liver",50,0.11,0.1,0.0015,0.108918954664912,0.137632134381599,0.00149957574189822,0.45,0.45,0.45,0.45,0.45,0.45,0.0269925765528699,0.173220331526938,7.29050804512238e-05,299,299,299 +"1039","OGC_AmsterdamUMC_biexp_segmented","Liver",100,0.11,0.1,0.0015,0.109571576926182,0.10728000421186,0.00149959253645644,0.45,0.45,0.45,0.45,0.45,0.45,0.0134700792856065,0.0365535919006858,3.63764396721475e-05,299,299,299 +"1040","OGC_AmsterdamUMC_biexp_segmented","Liver",200,0.11,0.1,0.0015,0.109813662467211,0.102101719440497,0.00149974766327095,0.45,0.45,0.45,0.45,0.45,0.45,0.00672998368978822,0.0157372078248851,1.81728271900004e-05,299,299,299 +"1041","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.45,0.45,0.45,0.45,0.45,0.45,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 +"1042","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.45,0.45,0.45,0.45,0.45,0.45,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 +"1043","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.45,0.45,0.45,0.45,0.45,0.45,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 +"1044","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.45,0.45,0.45,0.45,0.45,0.45,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 +"1045","OGC_AmsterdamUMC_biexp_segmented","Myocardium LV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.45,0.45,0.45,0.45,0.45,0.45,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 +"1046","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",10,0.07,0.07,0.0015,0.0578936886535005,0.331287936090609,0.00150745703740933,0.45,0.45,0.45,0.45,0.45,0.45,0.133663508201973,0.620007223240229,0.000349561522849492,299,299,299 +"1047","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",30,0.07,0.07,0.0015,0.0677475633979726,0.252860531918122,0.00150007469297444,0.45,0.45,0.45,0.45,0.45,0.45,0.0451277322847106,0.462488933259553,0.000116654443267633,299,299,299 +"1048","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",50,0.07,0.07,0.0015,0.068936524801532,0.153221079980056,0.00149956512826645,0.45,0.45,0.45,0.45,0.45,0.45,0.0269874814666128,0.288290130918818,6.97554513344443e-05,299,299,299 +"1049","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",100,0.07,0.07,0.0015,0.0695745982637905,0.0851832608134713,0.00149960544347793,0.45,0.45,0.45,0.45,0.45,0.45,0.0134691574388598,0.0574276101213015,3.48091848323947e-05,299,299,299 +"1050","OGC_AmsterdamUMC_biexp_segmented","myocardium ra",200,0.07,0.07,0.0015,0.0698130767438865,0.0732437488492484,0.00149975991644965,0.45,0.45,0.45,0.45,0.45,0.45,0.00672980083126172,0.0176595729765593,1.73906364708644e-05,299,299,299 +"1051","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",10,0.15,0.08,0.0024,0.138704738853772,0.29533039001213,0.00236585206256623,0.45,0.45,0.45,0.45,0.45,0.45,0.183735146154628,0.574050740063509,0.000643157597359619,299,299,299 +"1052","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",30,0.15,0.08,0.0024,0.145604279544077,0.179147800604903,0.00240394816245491,0.45,0.45,0.45,0.45,0.45,0.45,0.063461484601297,0.317296307372968,0.000220884399725328,299,299,299 +"1053","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",50,0.15,0.08,0.0024,0.148050213963908,0.111074470877663,0.00240084656501886,0.45,0.45,0.45,0.45,0.45,0.45,0.0377614890581242,0.164533235328792,0.00013167032202768,299,299,299 +"1054","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",100,0.15,0.08,0.0024,0.149292946222617,0.0853647552024634,0.00239978981206487,0.45,0.45,0.45,0.45,0.45,0.45,0.0187958126455879,0.0272583269087562,6.55998923448369e-05,299,299,299 +"1055","OGC_AmsterdamUMC_biexp_segmented","myocardium RV",200,0.15,0.08,0.0024,0.149712430350138,0.0814472116112704,0.00239973845264743,0.45,0.45,0.45,0.45,0.45,0.45,0.00938188303282705,0.011367113115482,3.27555805181391e-05,299,299,299 +"1056","OGC_AmsterdamUMC_biexp_segmented","pancreas",10,0.15,0.01,0.00129999999999999,0.100244765420066,0.266741520832647,0.00137548084876521,0.45,0.45,0.45,0.45,0.45,0.45,0.129912389751765,0.562164105737666,0.000344116696880167,299,299,299 +"1057","OGC_AmsterdamUMC_biexp_segmented","pancreas",30,0.15,0.01,0.00129999999999999,0.110360760973366,0.0661716722087468,0.00136667398578444,0.45,0.45,0.45,0.45,0.45,0.45,0.0433110167586883,0.140789670312433,0.000113720557310474,299,299,299 +"1058","OGC_AmsterdamUMC_biexp_segmented","pancreas",50,0.15,0.01,0.00129999999999999,0.111480583752563,0.0539705038259079,0.00136624929746589,0.45,0.45,0.45,0.45,0.45,0.45,0.0259040670714904,0.0479429254670281,6.80011412344266e-05,299,299,299 +"1059","OGC_AmsterdamUMC_biexp_segmented","pancreas",100,0.15,0.01,0.00129999999999999,0.112080763535825,0.0500000065580185,0.00136632895052346,0.45,0.45,0.45,0.45,0.45,0.45,0.0129294848715759,1.69774639357237e-08,3.39338191967857e-05,299,299,299 +"1060","OGC_AmsterdamUMC_biexp_segmented","pancreas",200,0.15,0.01,0.00129999999999999,0.112304748300198,0.050000000728181,0.0013664952449501,0.45,0.45,0.45,0.45,0.45,0.45,0.00646040206372423,6.32502873391021e-09,1.69533243857183e-05,299,299,299 +"1061","OGC_AmsterdamUMC_biexp_segmented","pericardium",10,0.07,0.00999999999999999,0.003,0.0520383050852133,0.17871463052579,0.00290810073173622,0.45,0.45,0.45,0.45,0.45,0.45,0.209231800764477,0.422831401538199,0.000739849912636431,299,299,299 +"1062","OGC_AmsterdamUMC_biexp_segmented","pericardium",30,0.07,0.00999999999999999,0.003,0.0344582030632704,0.193439082301208,0.00306329837568757,0.45,0.45,0.45,0.45,0.45,0.45,0.0804795684271075,0.466549615994945,0.000279719698417709,299,299,299 +"1063","OGC_AmsterdamUMC_biexp_segmented","pericardium",50,0.07,0.00999999999999999,0.003,0.0370860589999383,0.183326258829341,0.00306223557955883,0.45,0.45,0.45,0.45,0.45,0.45,0.0479655490509802,0.442363330135666,0.000167660569102541,299,299,299 +"1064","OGC_AmsterdamUMC_biexp_segmented","pericardium",100,0.07,0.00999999999999999,0.003,0.0387485065804243,0.106024067573401,0.00306070920381438,0.45,0.45,0.45,0.45,0.45,0.45,0.023849433162107,0.267496955607805,8.35301202824561e-05,299,299,299 +"1065","OGC_AmsterdamUMC_biexp_segmented","pericardium",200,0.07,0.00999999999999999,0.003,0.0393008418149469,0.0500135454072159,0.00306053200851328,0.45,0.45,0.45,0.45,0.45,0.45,0.0118997768390481,0.000219338674816968,4.17111224394722e-05,299,299,299 +"1066","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",10,0.158,0.019,0.00209,0.131137655472228,0.23929273655041,0.00211294106858926,0.45,0.45,0.45,0.45,0.45,0.45,0.168355074392517,0.51806573149938,0.000552807844610286,299,299,299 +"1067","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",30,0.158,0.019,0.00209,0.142171494963177,0.0695125128780473,0.00212004729340849,0.45,0.45,0.45,0.45,0.45,0.45,0.0573389805736233,0.134611155772767,0.000187357474017551,299,299,299 +"1068","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",50,0.158,0.019,0.00209,0.144230450313924,0.0602733335257936,0.0021176750832144,0.45,0.45,0.45,0.45,0.45,0.45,0.0341675563935529,0.12341684421226,0.00011175436277293,299,299,299 +"1069","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",100,0.158,0.019,0.00209,0.145267407398938,0.0500000044107411,0.00211702242995272,0.45,0.45,0.45,0.45,0.45,0.45,0.0170205002442602,2.78908812166402e-08,5.56977222247853e-05,299,299,299 +"1070","OGC_AmsterdamUMC_biexp_segmented","right kidney medulla",200,0.158,0.019,0.00209,0.145626005001748,0.0500000006964344,0.00211705269269561,0.45,0.45,0.45,0.45,0.45,0.45,0.00849828677625711,3.37636833357999e-09,2.78144870865059e-05,299,299,299 +"1071","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",10,0.097,0.02,0.00212,0.0770289257365628,0.290009001953962,0.00212883317155661,0.45,0.45,0.45,0.45,0.45,0.45,0.166304018024042,0.603644499495657,0.00051616801847906,299,299,299 +"1072","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",30,0.097,0.02,0.00212,0.0870000968545719,0.151929914388419,0.0021359301733605,0.45,0.45,0.45,0.45,0.45,0.45,0.0574976409055934,0.364025907839904,0.000176993129917423,299,299,299 +"1073","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",50,0.097,0.02,0.00212,0.0889780037469703,0.061805558817787,0.00213387593192174,0.45,0.45,0.45,0.45,0.45,0.45,0.0342843737704229,0.0818597418959281,0.000105632673759659,299,299,299 +"1074","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",100,0.097,0.02,0.00212,0.0899830331937219,0.0513588295468723,0.00213333518395996,0.45,0.45,0.45,0.45,0.45,0.45,0.0170840339210639,0.0173947389701512,5.26615544157948e-05,299,299,299 +"1075","OGC_AmsterdamUMC_biexp_segmented","Right kydney cortex",200,0.097,0.02,0.00212,0.0903344617802364,0.0500000042404332,0.00213338192941296,0.45,0.45,0.45,0.45,0.45,0.45,0.00853089075327522,1.84990926686926e-08,2.63008101231868e-05,299,299,299 +"1076","OGC_AmsterdamUMC_biexp_segmented","small intestine",10,0.69,0.029,0.00131,0.661034109551995,0.0519537390164872,0.00131067694624179,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359410903,0.0074659175711477,0.000965452623261198,299,299,299 +"1077","OGC_AmsterdamUMC_biexp_segmented","small intestine",30,0.69,0.029,0.00131,0.677766188296272,0.0500107152091894,0.00136286457292459,0.45,0.45,0.45,0.45,0.45,0.45,0.0442643529688101,0.000185589786428744,0.000322790073010869,299,299,299 +"1078","OGC_AmsterdamUMC_biexp_segmented","small intestine",50,0.69,0.029,0.00131,0.680228686572044,0.0500000000118474,0.00135564782187268,0.45,0.45,0.45,0.45,0.45,0.45,0.0260317923438205,1.40320084211226e-10,0.000190041408090366,299,299,299 +"1079","OGC_AmsterdamUMC_biexp_segmented","small intestine",100,0.69,0.029,0.00131,0.681374427365553,0.0500000000003099,0.00135334951496678,0.45,0.45,0.45,0.45,0.45,0.45,0.0128991835119707,1.00907554152635e-12,9.41499541476281e-05,299,299,299 +"1080","OGC_AmsterdamUMC_biexp_segmented","small intestine",200,0.69,0.029,0.00131,0.681731199287339,0.0500000000001251,0.0013531962139409,0.45,0.45,0.45,0.45,0.45,0.45,0.00643133843394598,1.04042199865913e-13,4.69285815264881e-05,299,299,299 +"1081","OGC_AmsterdamUMC_biexp_segmented","spleen",10,0.2,0.03,0.00129999999999999,0.18520392281551,0.209255851356637,0.00131436647515706,0.45,0.45,0.45,0.45,0.45,0.45,0.128284620714988,0.43795050055203,0.000366856183513939,299,299,299 +"1082","OGC_AmsterdamUMC_biexp_segmented","spleen",30,0.2,0.03,0.00129999999999999,0.195921638044614,0.0570791154895169,0.00130408703951844,0.45,0.45,0.45,0.45,0.45,0.45,0.0419884764569373,0.0531685484918258,0.000119667429133032,299,299,299 +"1083","OGC_AmsterdamUMC_biexp_segmented","spleen",50,0.2,0.03,0.00129999999999999,0.197041413325606,0.0504893716375674,0.00130363013865361,0.45,0.45,0.45,0.45,0.45,0.45,0.0251082366944411,0.00383960153192709,7.15383551583112e-05,299,299,299 +"1084","OGC_AmsterdamUMC_biexp_segmented","spleen",100,0.2,0.03,0.00129999999999999,0.197638649057216,0.0500000097397441,0.0013037149142624,0.45,0.45,0.45,0.45,0.45,0.45,0.0125312243299692,1.90669760189101e-08,3.5694004704467e-05,299,299,299 +"1085","OGC_AmsterdamUMC_biexp_segmented","spleen",200,0.2,0.03,0.00129999999999999,0.197860311649606,0.050000009538866,0.00130389290756918,0.45,0.45,0.45,0.45,0.45,0.45,0.00626126043010556,1.66111763089958e-08,1.78317987728703e-05,299,299,299 +"1086","OGC_AmsterdamUMC_biexp_segmented","st wall",10,0.3,0.012,0.0015,0.224968563584563,0.152728411143095,0.00164792160735107,0.45,0.45,0.45,0.45,0.45,0.45,0.147842246989045,0.375057604026138,0.000489535231234454,299,299,299 +"1087","OGC_AmsterdamUMC_biexp_segmented","st wall",30,0.3,0.012,0.0015,0.238787520936113,0.0523502353354238,0.00163390334662365,0.45,0.45,0.45,0.45,0.45,0.45,0.048525316538426,0.0309648568654976,0.000160157639209458,299,299,299 +"1088","OGC_AmsterdamUMC_biexp_segmented","st wall",50,0.3,0.012,0.0015,0.240378264028766,0.0500000002507408,0.00163237397051999,0.45,0.45,0.45,0.45,0.45,0.45,0.0289474376095694,2.28400922500028e-09,9.5559900702868e-05,299,299,299 +"1089","OGC_AmsterdamUMC_biexp_segmented","st wall",100,0.3,0.012,0.0015,0.241188415913859,0.0500000000085327,0.00163207076247144,0.45,0.45,0.45,0.45,0.45,0.45,0.0144296581809571,2.55196631854657e-11,4.76338814555705e-05,299,299,299 +"1090","OGC_AmsterdamUMC_biexp_segmented","st wall",200,0.3,0.012,0.0015,0.241472821664073,0.050000000003392,0.00163218547366257,0.45,0.45,0.45,0.45,0.45,0.45,0.00720667286447567,2.68542354759096e-12,2.37887610442069e-05,299,299,299 +"1091","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.661034109428733,0.051953739032677,0.00131067694715308,0.45,0.45,0.45,0.45,0.45,0.45,0.143273359446166,0.00746591768148673,0.000965452622732951,299,299,299 +"1092","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.677766188297563,0.0500107152094703,0.00136286457295964,0.45,0.45,0.45,0.45,0.45,0.45,0.0442643528902771,0.000185589791293374,0.000322790072283088,299,299,299 +"1093","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.680228686551908,0.0500000000118474,0.00135564782204329,0.45,0.45,0.45,0.45,0.45,0.45,0.0260317923637547,1.40320090168179e-10,0.000190041408458065,299,299,299 +"1094","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.681374427368473,0.0500000000003099,0.00135334951494511,0.45,0.45,0.45,0.45,0.45,0.45,0.0128991835128633,1.00907554152635e-12,9.41499541220862e-05,299,299,299 +"1095","OGC_AmsterdamUMC_biexp_segmented","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.681731199274704,0.0500000000001251,0.00135319621405087,0.45,0.45,0.45,0.45,0.45,0.45,0.00643133843132689,1.04042199865913e-13,4.69285814418112e-05,299,299,299 +"1096","OGC_AmsterdamUMC_biexp_segmented","Vein",10,1,0.1,0.00299999999999999,0.89187652895809,0.130371770524695,0.000532739646128184,0.45,0.45,0.45,0.45,0.45,0.45,0.0603329212170224,0.0338595995383155,0.000876166916139467,299,299,299 +"1097","OGC_AmsterdamUMC_biexp_segmented","Vein",30,1,0.1,0.00299999999999999,0.963958649017849,0.108709609163886,0.000532747467797313,0.45,0.45,0.45,0.45,0.45,0.45,0.0201116860529649,0.00814087200746512,0.000876181456030473,299,299,299 +"1098","OGC_AmsterdamUMC_biexp_segmented","Vein",50,1,0.1,0.00299999999999999,0.97816921696173,0.105139058114482,0.000549427490684811,0.45,0.45,0.45,0.45,0.45,0.45,0.0125526161570658,0.00468981671679721,0.000912813853531625,299,299,299 +"1099","OGC_AmsterdamUMC_biexp_segmented","Vein",100,1,0.1,0.00299999999999999,0.989084383490558,0.102522060782067,0.000549477159445701,0.45,0.45,0.45,0.45,0.45,0.45,0.00627640558821837,0.00226259175037519,0.000912855515978945,299,299,299 +"1100","OGC_AmsterdamUMC_biexp_segmented","Vein",200,1,0.1,0.00299999999999999,0.994541921036986,0.101255042864984,0.000549569685652002,0.45,0.45,0.45,0.45,0.45,0.45,0.00313858362490246,0.00111235352002846,0.000913010145476883,299,299,299 +"1101","PV_MUMC_biexp","Artery",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.45,0.45,0.45,0.45,0.45,0.45,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 +"1102","PV_MUMC_biexp","Artery",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.45,0.45,0.45,0.45,0.45,0.45,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 +"1103","PV_MUMC_biexp","Artery",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.45,0.45,0.45,0.45,0.45,0.45,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 +"1104","PV_MUMC_biexp","Artery",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.45,0.45,0.45,0.45,0.45,0.45,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 +"1105","PV_MUMC_biexp","Artery",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.45,0.45,0.45,0.45,0.45,0.45,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 +"1106","PV_MUMC_biexp","asc lower intestine",10,0.69,0.029,0.00131,0.691470348442192,0.0320827827770493,0.00124871997099421,0.45,0.45,0.45,0.45,0.45,0.45,0.105711327862916,0.0160018733645475,0.000901831520780432,299,299,299 +"1107","PV_MUMC_biexp","asc lower intestine",30,0.69,0.029,0.00131,0.688093183614171,0.0294562213763849,0.00132700814797154,0.45,0.45,0.45,0.45,0.45,0.45,0.0452600702218041,0.00371662172542782,0.00039381399431472,299,299,299 +"1108","PV_MUMC_biexp","asc lower intestine",50,0.69,0.029,0.00131,0.688966038440429,0.029199601596073,0.00131674145667986,0.45,0.45,0.45,0.45,0.45,0.45,0.0271841976242685,0.0021834868114162,0.000231514013534254,299,299,299 +"1109","PV_MUMC_biexp","asc lower intestine",100,0.69,0.029,0.00131,0.689413085208427,0.0290804523150075,0.00131311782214893,0.45,0.45,0.45,0.45,0.45,0.45,0.0135989073526535,0.00108324352490203,0.000114727925771987,299,299,299 +"1110","PV_MUMC_biexp","asc lower intestine",200,0.69,0.029,0.00131,0.689573180926678,0.0290430944880149,0.00131259557708985,0.45,0.45,0.45,0.45,0.45,0.45,0.00680047675905179,0.000540559071221946,5.72226175968247e-05,299,299,299 +"1111","PV_MUMC_biexp","Blood RA",10,1,0.1,0.00299999999999999,0.911157661208258,0.123643660010133,0.000607355415641274,0.45,0.45,0.45,0.45,0.45,0.45,0.026370429591592,0.0234808191450651,0.000781512767273926,299,299,299 +"1112","PV_MUMC_biexp","Blood RA",30,1,0.1,0.00299999999999999,0.971237368286232,0.106940870680017,0.000607372598717673,0.45,0.45,0.45,0.45,0.45,0.45,0.00908754536836415,0.00648210009381864,0.000781528535341981,299,299,299 +"1113","PV_MUMC_biexp","Blood RA",50,1,0.1,0.00299999999999999,0.982984250169882,0.104032609128781,0.000607380534286713,0.45,0.45,0.45,0.45,0.45,0.45,0.00546001928066582,0.00376732124518195,0.000781521963607196,299,299,299 +"1114","PV_MUMC_biexp","Blood RA",100,1,0.1,0.00299999999999999,0.991733932625788,0.101934073426922,0.000607404386458529,0.45,0.45,0.45,0.45,0.45,0.45,0.00268925596160975,0.00184607816692797,0.000781542209010902,299,299,299 +"1115","PV_MUMC_biexp","Blood RA",200,1,0.1,0.00299999999999999,0.99602265687933,0.100931454917891,0.000607227933379224,0.45,0.45,0.45,0.45,0.45,0.45,0.00133610299033914,0.000915147387853727,0.000780813589540255,299,299,299 +"1116","PV_MUMC_biexp","Blood RV",10,1,0.1,0.003,0.911157661205427,0.123643660013595,0.000607355415641274,0.45,0.45,0.45,0.45,0.45,0.45,0.0263704296062989,0.0234808191539726,0.000781512767273926,299,299,299 +"1117","PV_MUMC_biexp","Blood RV",30,1,0.1,0.003,0.971237368284705,0.106940870680865,0.000607372598717673,0.45,0.45,0.45,0.45,0.45,0.45,0.00908754537244282,0.00648210009371694,0.000781528535341981,299,299,299 +"1118","PV_MUMC_biexp","Blood RV",50,1,0.1,0.003,0.982984250166763,0.104032609128906,0.000607380534286713,0.45,0.45,0.45,0.45,0.45,0.45,0.00546001928424493,0.00376732124561751,0.000781521963607196,299,299,299 +"1119","PV_MUMC_biexp","Blood RV",100,1,0.1,0.003,0.991733932625732,0.101934073427047,0.000607404386458529,0.45,0.45,0.45,0.45,0.45,0.45,0.00268925596027005,0.00184607816688224,0.000781542209010902,299,299,299 +"1120","PV_MUMC_biexp","Blood RV",200,1,0.1,0.003,0.996022656879395,0.100931454917885,0.000607227933379224,0.45,0.45,0.45,0.45,0.45,0.45,0.00133610299058227,0.00091514738792123,0.000780813589540255,299,299,299 +"1121","PV_MUMC_biexp","desc lower intestine",10,0.69,0.029,0.00131,0.691470348438474,0.0320827827803892,0.00124871997066846,0.45,0.45,0.45,0.45,0.45,0.45,0.105711327913523,0.0160018733571079,0.000901831520760143,299,299,299 +"1122","PV_MUMC_biexp","desc lower intestine",30,0.69,0.029,0.00131,0.688093183608034,0.029456221376894,0.0013270081480873,0.45,0.45,0.45,0.45,0.45,0.45,0.0452600702369857,0.00371662172759421,0.000393813994419125,299,299,299 +"1123","PV_MUMC_biexp","desc lower intestine",50,0.69,0.029,0.00131,0.688966038440901,0.0291996015957491,0.00131674145666527,0.45,0.45,0.45,0.45,0.45,0.45,0.0271841976084912,0.00218348680950215,0.000231514013492556,299,299,299 +"1124","PV_MUMC_biexp","desc lower intestine",100,0.69,0.029,0.00131,0.689413085205758,0.0290804523152126,0.00131311782216352,0.45,0.45,0.45,0.45,0.45,0.45,0.0135989073563255,0.00108324352514479,0.00011472792578306,299,299,299 +"1125","PV_MUMC_biexp","desc lower intestine",200,0.69,0.029,0.00131,0.689573180931052,0.0290430944877037,0.00131259557707978,0.45,0.45,0.45,0.45,0.45,0.45,0.00680047675835751,0.000540559071153575,5.72226175969141e-05,299,299,299 +"1126","PV_MUMC_biexp","esophagus",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.45,0.45,0.45,0.45,0.45,0.45,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 +"1127","PV_MUMC_biexp","esophagus",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.45,0.45,0.45,0.45,0.45,0.45,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 +"1128","PV_MUMC_biexp","esophagus",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.45,0.45,0.45,0.45,0.45,0.45,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 +"1129","PV_MUMC_biexp","esophagus",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.45,0.45,0.45,0.45,0.45,0.45,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 +"1130","PV_MUMC_biexp","esophagus",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.45,0.45,0.45,0.45,0.45,0.45,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 +"1131","PV_MUMC_biexp","esophagus cont",10,0.32,0.03,0.00167,0.341951256652346,0.0443082102156922,0.00165164120861557,0.45,0.45,0.45,0.45,0.45,0.45,0.136646889254368,0.0422238468182239,0.000613120728096095,299,299,299 +"1132","PV_MUMC_biexp","esophagus cont",30,0.32,0.03,0.00167,0.321738000238034,0.0318901122330195,0.00167589391557833,0.45,0.45,0.45,0.45,0.45,0.45,0.0512324652322236,0.0100071517612241,0.000225181513106075,299,299,299 +"1133","PV_MUMC_biexp","esophagus cont",50,0.32,0.03,0.00167,0.320438404116627,0.0306881621515803,0.0016720578247672,0.45,0.45,0.45,0.45,0.45,0.45,0.0308272011734793,0.00536029641161523,0.000134201495889235,299,299,299 +"1134","PV_MUMC_biexp","esophagus cont",100,0.32,0.03,0.00167,0.319901550187616,0.0302186887532524,0.00167069892645762,0.45,0.45,0.45,0.45,0.45,0.45,0.0154217190168373,0.00260173291987668,6.69010926615098e-05,299,299,299 +"1135","PV_MUMC_biexp","esophagus cont",200,0.32,0.03,0.00167,0.319817809868591,0.0300872710754051,0.00167049620333745,0.45,0.45,0.45,0.45,0.45,0.45,0.00771274352229113,0.00129345861655773,3.34227542018821e-05,299,299,299 +"1136","PV_MUMC_biexp","Left kidney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.45,0.45,0.45,0.45,0.45,0.45,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 +"1137","PV_MUMC_biexp","Left kidney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.45,0.45,0.45,0.45,0.45,0.45,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 +"1138","PV_MUMC_biexp","Left kidney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.45,0.45,0.45,0.45,0.45,0.45,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 +"1139","PV_MUMC_biexp","Left kidney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.45,0.45,0.45,0.45,0.45,0.45,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 +"1140","PV_MUMC_biexp","Left kidney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.45,0.45,0.45,0.45,0.45,0.45,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 +"1141","PV_MUMC_biexp","left kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.45,0.45,0.45,0.45,0.45,0.45,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 +"1142","PV_MUMC_biexp","left kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.45,0.45,0.45,0.45,0.45,0.45,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 +"1143","PV_MUMC_biexp","left kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.45,0.45,0.45,0.45,0.45,0.45,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 +"1144","PV_MUMC_biexp","left kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.45,0.45,0.45,0.45,0.45,0.45,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 +"1145","PV_MUMC_biexp","left kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.45,0.45,0.45,0.45,0.45,0.45,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 +"1146","PV_MUMC_biexp","Liver",10,0.11,0.1,0.0015,0.156096041950495,0.103004334953046,0.00143196282270513,0.45,0.45,0.45,0.45,0.45,0.45,0.110349251520112,0.0779961628143732,0.000358196217736956,299,299,299 +"1147","PV_MUMC_biexp","Liver",30,0.11,0.1,0.0015,0.116101779636099,0.1138229593791,0.00149777113036028,0.45,0.45,0.45,0.45,0.45,0.45,0.034776317507387,0.0600988513603365,0.000144925790948956,299,299,299 +"1148","PV_MUMC_biexp","Liver",50,0.11,0.1,0.0015,0.111612534570894,0.109841008435211,0.00150002526959645,0.45,0.45,0.45,0.45,0.45,0.45,0.0190068115405264,0.0441056576363389,9.05346431726557e-05,299,299,299 +"1149","PV_MUMC_biexp","Liver",100,0.11,0.1,0.0015,0.11025104441505,0.103810736875319,0.00149980894457395,0.45,0.45,0.45,0.45,0.45,0.45,0.00905977798222036,0.0236768256802226,4.54189359484425e-05,299,299,299 +"1150","PV_MUMC_biexp","Liver",200,0.11,0.1,0.0015,0.110022352713976,0.101269696328069,0.0014998347111719,0.45,0.45,0.45,0.45,0.45,0.45,0.0044943742719744,0.0114224658712206,2.26988794968306e-05,299,299,299 +"1151","PV_MUMC_biexp","Myocardium LV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.45,0.45,0.45,0.45,0.45,0.45,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 +"1152","PV_MUMC_biexp","Myocardium LV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.45,0.45,0.45,0.45,0.45,0.45,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 +"1153","PV_MUMC_biexp","Myocardium LV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.45,0.45,0.45,0.45,0.45,0.45,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 +"1154","PV_MUMC_biexp","Myocardium LV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.45,0.45,0.45,0.45,0.45,0.45,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 +"1155","PV_MUMC_biexp","Myocardium LV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.45,0.45,0.45,0.45,0.45,0.45,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 +"1156","PV_MUMC_biexp","myocardium ra",10,0.07,0.07,0.0015,0.128345687194747,0.0825316505228132,0.00140833862248053,0.45,0.45,0.45,0.45,0.45,0.45,0.114737913407162,0.0798040133006487,0.000322847727404802,299,299,299 +"1157","PV_MUMC_biexp","myocardium ra",30,0.07,0.07,0.0015,0.0808769411594791,0.093179188822108,0.00149089305452715,0.45,0.45,0.45,0.45,0.45,0.45,0.0404412487711946,0.0680662255269266,0.000129511673752725,299,299,299 +"1158","PV_MUMC_biexp","myocardium ra",50,0.07,0.07,0.0015,0.0738186548068268,0.0870087926746789,0.00149857823558983,0.45,0.45,0.45,0.45,0.45,0.45,0.023244544317497,0.0544978802925074,8.40169485215999e-05,299,299,299 +"1159","PV_MUMC_biexp","myocardium ra",100,0.07,0.07,0.0015,0.0707073237714697,0.0759757339514294,0.0014998056841726,0.45,0.45,0.45,0.45,0.45,0.45,0.0105581939281603,0.0292975136083979,4.34633510601474e-05,299,299,299 +"1160","PV_MUMC_biexp","myocardium ra",200,0.07,0.07,0.0015,0.070115739623736,0.0717332279515257,0.00149983895466135,0.45,0.45,0.45,0.45,0.45,0.45,0.00507917209030401,0.0131396922117831,2.17222451683666e-05,299,299,299 +"1161","PV_MUMC_biexp","myocardium RV",10,0.15,0.08,0.0024,0.23174539274573,0.0906384604791835,0.00217540162548494,0.45,0.45,0.45,0.45,0.45,0.45,0.153842017133662,0.0756179003253372,0.000591423054588914,299,299,299 +"1162","PV_MUMC_biexp","myocardium RV",30,0.15,0.08,0.0024,0.158168138690538,0.0933063148802885,0.00239930181407727,0.45,0.45,0.45,0.45,0.45,0.45,0.0489165297851719,0.049880735145211,0.000271077988216888,299,299,299 +"1163","PV_MUMC_biexp","myocardium RV",50,0.15,0.08,0.0024,0.152084744420527,0.0869119825645677,0.00240374888679818,0.45,0.45,0.45,0.45,0.45,0.45,0.0271201467982294,0.0328951026205723,0.000173096890311616,299,299,299 +"1164","PV_MUMC_biexp","myocardium RV",100,0.15,0.08,0.0024,0.150290059805964,0.0822822498107925,0.00240130466480788,0.45,0.45,0.45,0.45,0.45,0.45,0.0129706534619757,0.0161498294765764,8.77944422191819e-05,299,299,299 +"1165","PV_MUMC_biexp","myocardium RV",200,0.15,0.08,0.0024,0.150002427028265,0.0807405911439673,0.00240036233092014,0.45,0.45,0.45,0.45,0.45,0.45,0.00641679887217117,0.00769652091390619,4.38595540374184e-05,299,299,299 +"1166","PV_MUMC_biexp","pancreas",10,0.15,0.01,0.00129999999999999,0.170823203204389,0.0484396671293969,0.00128341130108195,0.45,0.45,0.45,0.45,0.45,0.45,0.135276785103213,0.0693648067906324,0.000342833111852961,299,299,299 +"1167","PV_MUMC_biexp","pancreas",30,0.15,0.01,0.00129999999999999,0.139357428753803,0.0211791605193582,0.00132956207649237,0.45,0.45,0.45,0.45,0.45,0.45,0.0600015004474031,0.0343714821910045,0.000136158605057219,299,299,299 +"1168","PV_MUMC_biexp","pancreas",50,0.15,0.01,0.00129999999999999,0.136832912331991,0.0133451533082555,0.00132993178960967,0.45,0.45,0.45,0.45,0.45,0.45,0.0378707541645237,0.0118353435907057,8.31807200994293e-05,299,299,299 +"1169","PV_MUMC_biexp","pancreas",100,0.15,0.01,0.00129999999999999,0.13591079011917,0.011464130733693,0.00132978574256788,0.45,0.45,0.45,0.45,0.45,0.45,0.019496680742444,0.00219037196718289,4.15321836208148e-05,299,299,299 +"1170","PV_MUMC_biexp","pancreas",200,0.15,0.01,0.00129999999999999,0.135796421465576,0.0111580957885994,0.00132987960122183,0.45,0.45,0.45,0.45,0.45,0.45,0.00982799371378257,0.000979299181915567,2.07569431281731e-05,299,299,299 +"1171","PV_MUMC_biexp","pericardium",10,0.07,0.00999999999999999,0.003,0.391019540038776,0.044643914104375,0.00245103379176744,0.45,0.45,0.45,0.45,0.45,0.45,0.345288990615877,0.0685553221727792,0.000589805944574225,299,299,299 +"1172","PV_MUMC_biexp","pericardium",30,0.07,0.00999999999999999,0.003,0.279254963167638,0.0272516182326572,0.00286523068505902,0.45,0.45,0.45,0.45,0.45,0.45,0.326984869731808,0.0497742750374417,0.000202391605500055,299,299,299 +"1173","PV_MUMC_biexp","pericardium",50,0.07,0.00999999999999999,0.003,0.197907121793284,0.0171779174735046,0.00292567942662698,0.45,0.45,0.45,0.45,0.45,0.45,0.257892241602723,0.0314712950254075,0.000122141208493828,299,299,299 +"1174","PV_MUMC_biexp","pericardium",100,0.07,0.00999999999999999,0.003,0.101454392147406,0.0102999034458522,0.0029683983156719,0.45,0.45,0.45,0.45,0.45,0.45,0.0986460636016255,0.00484404848123746,5.80586216740766e-05,299,299,299 +"1175","PV_MUMC_biexp","pericardium",200,0.07,0.00999999999999999,0.003,0.0764077555060485,0.0099589090676984,0.00298894164686365,0.45,0.45,0.45,0.45,0.45,0.45,0.016170934406564,0.00205930827894513,2.4606310997004e-05,299,299,299 +"1176","PV_MUMC_biexp","right kidney medulla",10,0.158,0.019,0.00209,0.24120386329387,0.0509911843093028,0.00196778935813256,0.45,0.45,0.45,0.45,0.45,0.45,0.193488008898608,0.0657191990616205,0.000536034428490282,299,299,299 +"1177","PV_MUMC_biexp","right kidney medulla",30,0.158,0.019,0.00209,0.164814850462982,0.0291251142303587,0.00209685190600965,0.45,0.45,0.45,0.45,0.45,0.45,0.0712489389975971,0.0332296869821639,0.000229607461650821,299,299,299 +"1178","PV_MUMC_biexp","right kidney medulla",50,0.158,0.019,0.00209,0.159241670908134,0.0229677251921808,0.00209748613587334,0.45,0.45,0.45,0.45,0.45,0.45,0.0452036482346777,0.0163302426902368,0.00014339747354893,299,299,299 +"1179","PV_MUMC_biexp","right kidney medulla",100,0.158,0.019,0.00209,0.156984698748645,0.0199561875274044,0.00209573123449385,0.45,0.45,0.45,0.45,0.45,0.45,0.0231479275981785,0.00415813495079401,7.20856548546837e-05,299,299,299 +"1180","PV_MUMC_biexp","right kidney medulla",200,0.158,0.019,0.00209,0.156461546723381,0.0194381289374098,0.00209523456298188,0.45,0.45,0.45,0.45,0.45,0.45,0.0116921889457988,0.00197122244647025,3.60164165725836e-05,299,299,299 +"1181","PV_MUMC_biexp","Right kydney cortex",10,0.097,0.02,0.00212,0.220417076000319,0.0571029768448487,0.00196142630039163,0.45,0.45,0.45,0.45,0.45,0.45,0.227476267626386,0.0729478358934064,0.000476707393277127,299,299,299 +"1182","PV_MUMC_biexp","Right kydney cortex",30,0.097,0.02,0.00212,0.111610836530415,0.0396706310262654,0.00211129988129422,0.45,0.45,0.45,0.45,0.45,0.45,0.0688152496428461,0.0495971560408634,0.000201428915040513,299,299,299 +"1183","PV_MUMC_biexp","Right kydney cortex",50,0.097,0.02,0.00212,0.102266476525456,0.0297379126182991,0.00212210157066183,0.45,0.45,0.45,0.45,0.45,0.45,0.0439513706234316,0.0327823563797905,0.000131842621606404,299,299,299 +"1184","PV_MUMC_biexp","Right kydney cortex",100,0.097,0.02,0.00212,0.0976935027412244,0.0221486147583032,0.00212288813907007,0.45,0.45,0.45,0.45,0.45,0.45,0.0228519196727884,0.008359825422111,6.85394224388675e-05,299,299,299 +"1185","PV_MUMC_biexp","Right kydney cortex",200,0.097,0.02,0.00212,0.0965382138667791,0.0206882791377273,0.00212243008601598,0.45,0.45,0.45,0.45,0.45,0.45,0.0115319784046807,0.00346321897263116,3.42475058530339e-05,299,299,299 +"1186","PV_MUMC_biexp","small intestine",10,0.69,0.029,0.00131,0.691470348425927,0.0320827827806415,0.00124871997099421,0.45,0.45,0.45,0.45,0.45,0.45,0.105711327887533,0.016001873378134,0.000901831520780432,299,299,299 +"1187","PV_MUMC_biexp","small intestine",30,0.69,0.029,0.00131,0.688093183610048,0.0294562213769231,0.00132700814797154,0.45,0.45,0.45,0.45,0.45,0.45,0.0452600702287884,0.0037166217265589,0.00039381399431472,299,299,299 +"1188","PV_MUMC_biexp","small intestine",50,0.69,0.029,0.00131,0.688966038442785,0.0291996015955794,0.00131674145667986,0.45,0.45,0.45,0.45,0.45,0.45,0.027184197603594,0.00218348680956759,0.000231514013534254,299,299,299 +"1189","PV_MUMC_biexp","small intestine",100,0.69,0.029,0.00131,0.689413085207519,0.0290804523150365,0.00131311782214893,0.45,0.45,0.45,0.45,0.45,0.45,0.0135989073510044,0.00108324352463396,0.000114727925771987,299,299,299 +"1190","PV_MUMC_biexp","small intestine",200,0.69,0.029,0.00131,0.68957318092911,0.0290430944878304,0.00131259557708985,0.45,0.45,0.45,0.45,0.45,0.45,0.0068004767604521,0.000540559071379342,5.72226175968247e-05,299,299,299 +"1191","PV_MUMC_biexp","spleen",10,0.2,0.03,0.00129999999999999,0.225876447681667,0.0575696359776324,0.00127966060384555,0.45,0.45,0.45,0.45,0.45,0.45,0.118602073944037,0.062520158480083,0.000393628482668222,299,299,299 +"1192","PV_MUMC_biexp","spleen",30,0.2,0.03,0.00129999999999999,0.203121072306131,0.0348456914497528,0.00130102510958467,0.45,0.45,0.45,0.45,0.45,0.45,0.0446268922956713,0.0210587094438441,0.000147164603791659,299,299,299 +"1193","PV_MUMC_biexp","spleen",50,0.2,0.03,0.00129999999999999,0.201082893667275,0.0314005146720823,0.00130009513988208,0.45,0.45,0.45,0.45,0.45,0.45,0.0267655318154766,0.0084356309709076,8.81308491758965e-05,299,299,299 +"1194","PV_MUMC_biexp","spleen",100,0.2,0.03,0.00129999999999999,0.200152032734671,0.0303879420503012,0.00129992844970833,0.45,0.45,0.45,0.45,0.45,0.45,0.0133442316652335,0.00389581230793204,4.39969606570532e-05,299,299,299 +"1195","PV_MUMC_biexp","spleen",200,0.2,0.03,0.00129999999999999,0.199941650919663,0.0301350345500522,0.00130002908549186,0.45,0.45,0.45,0.45,0.45,0.45,0.00666620755141141,0.00192377586272549,2.19877190353903e-05,299,299,299 +"1196","PV_MUMC_biexp","st wall",10,0.3,0.012,0.0015,0.298023904016928,0.0321774338838152,0.00153452580530155,0.45,0.45,0.45,0.45,0.45,0.45,0.161634014328888,0.0492747590086314,0.000533257004546953,299,299,299 +"1197","PV_MUMC_biexp","st wall",30,0.3,0.012,0.0015,0.282564165732307,0.0143589906421383,0.0015521476980438,0.45,0.45,0.45,0.45,0.45,0.45,0.0672954043174911,0.00604975921241117,0.000195511671547606,299,299,299 +"1198","PV_MUMC_biexp","st wall",50,0.3,0.012,0.0015,0.282485950207945,0.0132910251735412,0.00154952110824206,0.45,0.45,0.45,0.45,0.45,0.45,0.0414670585791545,0.00269394728308602,0.000116680545563146,299,299,299 +"1199","PV_MUMC_biexp","st wall",100,0.3,0.012,0.0015,0.282721607034729,0.0128953989042575,0.00154867348929894,0.45,0.45,0.45,0.45,0.45,0.45,0.0210071304061686,0.00120056802082814,5.81997124889235e-05,299,299,299 +"1200","PV_MUMC_biexp","st wall",200,0.3,0.012,0.0015,0.282901507396517,0.0127926313384841,0.00154860370649833,0.45,0.45,0.45,0.45,0.45,0.45,0.0105397038722219,0.000580337571786342,2.9079611017769e-05,299,299,299 +"1201","PV_MUMC_biexp","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.69147034850835,0.0320827827705391,0.00124871997062398,0.45,0.45,0.45,0.45,0.45,0.45,0.105711327778677,0.0160018733594873,0.000901831520052427,299,299,299 +"1202","PV_MUMC_biexp","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.688093183592201,0.0294562213780215,0.0013270081480987,0.45,0.45,0.45,0.45,0.45,0.45,0.0452600702314974,0.0037166217263804,0.00039381399452838,299,299,299 +"1203","PV_MUMC_biexp","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.688966038447113,0.0291996015955392,0.00131674145662316,0.45,0.45,0.45,0.45,0.45,0.45,0.0271841976254947,0.00218348681124656,0.000231514013569066,299,299,299 +"1204","PV_MUMC_biexp","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689413085205192,0.0290804523152176,0.00131311782217142,0.45,0.45,0.45,0.45,0.45,0.45,0.0135989073535134,0.00108324352525754,0.000114727925798872,299,299,299 +"1205","PV_MUMC_biexp","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689573180928788,0.0290430944879027,0.00131259557706545,0.45,0.45,0.45,0.45,0.45,0.45,0.00680047676072954,0.000540559071296888,5.72226175924109e-05,299,299,299 +"1206","PV_MUMC_biexp","Vein",10,1,0.1,0.00299999999999999,0.911157661201933,0.123643660019881,0.000607355415641274,0.45,0.45,0.45,0.45,0.45,0.45,0.0263704296071724,0.0234808191547324,0.000781512767273926,299,299,299 +"1207","PV_MUMC_biexp","Vein",30,1,0.1,0.00299999999999999,0.971237368284223,0.106940870680377,0.000607372598717673,0.45,0.45,0.45,0.45,0.45,0.45,0.00908754536827744,0.00648210009257791,0.000781528535341981,299,299,299 +"1208","PV_MUMC_biexp","Vein",50,1,0.1,0.00299999999999999,0.982984250165467,0.104032609129434,0.000607380534286713,0.45,0.45,0.45,0.45,0.45,0.45,0.00546001928016874,0.00376732124549515,0.000781521963607196,299,299,299 +"1209","PV_MUMC_biexp","Vein",100,1,0.1,0.00299999999999999,0.991733932627642,0.101934073426748,0.000607404386458529,0.45,0.45,0.45,0.45,0.45,0.45,0.00268925596046031,0.00184607816687764,0.000781542209010902,299,299,299 +"1210","PV_MUMC_biexp","Vein",200,1,0.1,0.00299999999999999,0.996022656879185,0.100931454917881,0.000607227933379224,0.45,0.45,0.45,0.45,0.45,0.45,0.00133610299004237,0.00091514738790242,0.000780813589540255,299,299,299 +"1211","PvH_KB_NKI_IVIMfit","Artery",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1212","PvH_KB_NKI_IVIMfit","Artery",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1213","PvH_KB_NKI_IVIMfit","Artery",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1214","PvH_KB_NKI_IVIMfit","Artery",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1215","PvH_KB_NKI_IVIMfit","Artery",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1216","PvH_KB_NKI_IVIMfit","asc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.45,0.45,0.45,0.45,0.45,0.45,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 +"1217","PvH_KB_NKI_IVIMfit","asc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.45,0.45,0.45,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 +"1218","PvH_KB_NKI_IVIMfit","asc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1219","PvH_KB_NKI_IVIMfit","asc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.45,0.45,0.45,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1220","PvH_KB_NKI_IVIMfit","asc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 +"1221","PvH_KB_NKI_IVIMfit","Blood RA",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1222","PvH_KB_NKI_IVIMfit","Blood RA",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1223","PvH_KB_NKI_IVIMfit","Blood RA",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1224","PvH_KB_NKI_IVIMfit","Blood RA",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1225","PvH_KB_NKI_IVIMfit","Blood RA",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1226","PvH_KB_NKI_IVIMfit","Blood RV",10,1,0.1,0.003,0.925854765740672,0.122594446175349,0.000574991619531873,0.45,0.45,0.45,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1227","PvH_KB_NKI_IVIMfit","Blood RV",30,1,0.1,0.003,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1228","PvH_KB_NKI_IVIMfit","Blood RV",50,1,0.1,0.003,0.985264177302766,0.103511662747401,0.000574987648133532,0.45,0.45,0.45,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1229","PvH_KB_NKI_IVIMfit","Blood RV",100,1,0.1,0.003,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1230","PvH_KB_NKI_IVIMfit","Blood RV",200,1,0.1,0.003,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 +"1231","PvH_KB_NKI_IVIMfit","desc lower intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494931,0.00145020569396961,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 +"1232","PvH_KB_NKI_IVIMfit","desc lower intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.45,0.45,0.45,0.0659651209936009,0.0695342477735909,0.000430833853766582,299,299,299 +"1233","PvH_KB_NKI_IVIMfit","desc lower intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1234","PvH_KB_NKI_IVIMfit","desc lower intestine",100,0.69,0.029,0.00131,0.685021723698742,0.030464931163596,0.00132963191638665,0.45,0.45,0.45,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1235","PvH_KB_NKI_IVIMfit","desc lower intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.2174106371215e-05,299,299,299 +"1236","PvH_KB_NKI_IVIMfit","esophagus",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.45,0.45,0.45,0.45,0.45,0.45,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 +"1237","PvH_KB_NKI_IVIMfit","esophagus",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.45,0.45,0.45,0.45,0.45,0.45,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 +"1238","PvH_KB_NKI_IVIMfit","esophagus",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.45,0.45,0.45,0.45,0.45,0.45,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 +"1239","PvH_KB_NKI_IVIMfit","esophagus",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.45,0.45,0.45,0.45,0.45,0.45,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 +"1240","PvH_KB_NKI_IVIMfit","esophagus",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.45,0.45,0.45,0.45,0.45,0.45,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 +"1241","PvH_KB_NKI_IVIMfit","esophagus cont",10,0.32,0.03,0.00167,0.29841059274169,0.0442917245746802,0.00187408166083415,0.45,0.45,0.45,0.45,0.45,0.45,0.184008516163715,0.548526724845917,0.000802631212510903,299,299,299 +"1242","PvH_KB_NKI_IVIMfit","esophagus cont",30,0.32,0.03,0.00167,0.313531066218477,0.0430413742767113,0.00168684044245015,0.45,0.45,0.45,0.45,0.45,0.45,0.0710064243302227,0.170195578630213,0.000230630539852498,299,299,299 +"1243","PvH_KB_NKI_IVIMfit","esophagus cont",50,0.32,0.03,0.00167,0.317578815938024,0.0366509096410508,0.00167311412934981,0.45,0.45,0.45,0.45,0.45,0.45,0.0404456721798995,0.0899370095778668,0.000132104288440074,299,299,299 +"1244","PvH_KB_NKI_IVIMfit","esophagus cont",100,0.32,0.03,0.00167,0.318448941931438,0.0330389958676046,0.00167079957042429,0.45,0.45,0.45,0.45,0.45,0.45,0.0199938893842113,0.0441125999132166,6.52412848437791e-05,299,299,299 +"1245","PvH_KB_NKI_IVIMfit","esophagus cont",200,0.32,0.03,0.00167,0.318325957819888,0.0315293748842576,0.00167183204686577,0.45,0.45,0.45,0.45,0.45,0.45,0.00999687327785092,0.0220004280760452,3.25799640736595e-05,299,299,299 +"1246","PvH_KB_NKI_IVIMfit","Left kidney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.45,0.45,0.45,0.45,0.45,0.45,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 +"1247","PvH_KB_NKI_IVIMfit","Left kidney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.45,0.45,0.45,0.45,0.45,0.45,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 +"1248","PvH_KB_NKI_IVIMfit","Left kidney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.45,0.45,0.45,0.45,0.45,0.45,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 +"1249","PvH_KB_NKI_IVIMfit","Left kidney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.45,0.45,0.45,0.45,0.45,0.45,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 +"1250","PvH_KB_NKI_IVIMfit","Left kidney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.45,0.45,0.45,0.45,0.45,0.45,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 +"1251","PvH_KB_NKI_IVIMfit","left kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.45,0.45,0.45,0.45,0.45,0.45,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 +"1252","PvH_KB_NKI_IVIMfit","left kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.45,0.45,0.45,0.45,0.45,0.45,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 +"1253","PvH_KB_NKI_IVIMfit","left kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.45,0.45,0.45,0.45,0.45,0.45,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 +"1254","PvH_KB_NKI_IVIMfit","left kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.45,0.45,0.45,0.45,0.45,0.45,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 +"1255","PvH_KB_NKI_IVIMfit","left kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.45,0.45,0.45,0.45,0.45,0.45,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 +"1256","PvH_KB_NKI_IVIMfit","Liver",10,0.11,0.1,0.0015,0.130553125135909,0.0509693625828437,0.0016065178196472,0.45,0.45,0.45,0.45,0.45,0.45,0.129706715815292,0.792719308738518,0.000572920768415419,299,299,299 +"1257","PvH_KB_NKI_IVIMfit","Liver",30,0.11,0.1,0.0015,0.110278145674883,0.149442129088004,0.00150011017405457,0.45,0.45,0.45,0.45,0.45,0.45,0.0601392900256081,0.625749782983355,0.000145272381840614,299,299,299 +"1258","PvH_KB_NKI_IVIMfit","Liver",50,0.11,0.1,0.0015,0.110399658585875,0.156527047310139,0.00149684450774862,0.45,0.45,0.45,0.45,0.45,0.45,0.0376036872310902,0.425066413433666,8.60313303494503e-05,299,299,299 +"1259","PvH_KB_NKI_IVIMfit","Liver",100,0.11,0.1,0.0015,0.110613242728435,0.113081530764667,0.00149725968516574,0.45,0.45,0.45,0.45,0.45,0.45,0.0187819737007067,0.139029982910973,4.28771429001848e-05,299,299,299 +"1260","PvH_KB_NKI_IVIMfit","Liver",200,0.11,0.1,0.0015,0.110409079705549,0.104936964791345,0.00149834160010346,0.45,0.45,0.45,0.45,0.45,0.45,0.00940444951440735,0.0672001936578303,2.14439959817085e-05,299,299,299 +"1261","PvH_KB_NKI_IVIMfit","Myocardium LV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.45,0.45,0.45,0.45,0.45,0.45,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 +"1262","PvH_KB_NKI_IVIMfit","Myocardium LV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.45,0.45,0.45,0.45,0.45,0.45,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 +"1263","PvH_KB_NKI_IVIMfit","Myocardium LV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.45,0.45,0.45,0.45,0.45,0.45,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 +"1264","PvH_KB_NKI_IVIMfit","Myocardium LV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.45,0.45,0.45,0.45,0.45,0.45,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 +"1265","PvH_KB_NKI_IVIMfit","Myocardium LV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.45,0.45,0.45,0.45,0.45,0.45,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 +"1266","PvH_KB_NKI_IVIMfit","myocardium ra",10,0.07,0.07,0.0015,0.104891587924175,0.00607975763165955,0.0016006526233169,0.45,0.45,0.45,0.45,0.45,0.45,0.118242882720712,0.784263691811179,0.000552215395037113,299,299,299 +"1267","PvH_KB_NKI_IVIMfit","myocardium ra",30,0.07,0.07,0.0015,0.0739083859817402,0.0645768275334392,0.0014995372849829,0.45,0.45,0.45,0.45,0.45,0.45,0.0552732082517841,0.772165078977779,0.000138751825608962,299,299,299 +"1268","PvH_KB_NKI_IVIMfit","myocardium ra",50,0.07,0.07,0.0015,0.0708663136362167,0.123754667071953,0.00149678850563412,0.45,0.45,0.45,0.45,0.45,0.45,0.0370810778303522,0.731555137917985,8.22913661782403e-05,299,299,299 +"1269","PvH_KB_NKI_IVIMfit","myocardium ra",100,0.07,0.07,0.0015,0.0706249468151481,0.0952858250331106,0.00149733160718627,0.45,0.45,0.45,0.45,0.45,0.45,0.0189664010793653,0.232113078306709,4.10318998599181e-05,299,299,299 +"1270","PvH_KB_NKI_IVIMfit","myocardium ra",200,0.07,0.07,0.0015,0.0704117897329917,0.0782860101683691,0.00149840262255921,0.45,0.45,0.45,0.45,0.45,0.45,0.00949705354554412,0.104550226230099,2.052244821904e-05,299,299,299 +"1271","PvH_KB_NKI_IVIMfit","myocardium RV",10,0.15,0.08,0.0024,0.192025856189917,-0.0116385614260143,0.00259907377107704,0.45,0.45,0.45,0.45,0.45,0.45,0.179951896755359,0.653285559753479,0.000985415011828634,299,299,299 +"1272","PvH_KB_NKI_IVIMfit","myocardium RV",30,0.15,0.08,0.0024,0.147972386415508,0.0861165427607028,0.0024674944945235,0.45,0.45,0.45,0.45,0.45,0.45,0.0975517459309261,0.440738077963084,0.000442366071987323,299,299,299 +"1273","PvH_KB_NKI_IVIMfit","myocardium RV",50,0.15,0.08,0.0024,0.14844758544319,0.117368159099586,0.00240902650835479,0.45,0.45,0.45,0.45,0.45,0.45,0.0677149969447882,0.347462871948298,0.000216738591253995,299,299,299 +"1274","PvH_KB_NKI_IVIMfit","myocardium RV",100,0.15,0.08,0.0024,0.150826921782195,0.0925669085492539,0.00239596194867005,0.45,0.45,0.45,0.45,0.45,0.45,0.0350209589736281,0.111206592869965,0.000102587631606259,299,299,299 +"1275","PvH_KB_NKI_IVIMfit","myocardium RV",200,0.15,0.08,0.0024,0.151062767866115,0.0836181213359814,0.0023960480342215,0.45,0.45,0.45,0.45,0.45,0.45,0.0173407897911808,0.0492417148911839,5.08898087046965e-05,299,299,299 +"1276","PvH_KB_NKI_IVIMfit","pancreas",10,0.15,0.01,0.00129999999999999,0.136937978548182,0.00740651793198569,0.0014215214212872,0.45,0.45,0.45,0.45,0.45,0.45,0.127266105496299,0.732213635772408,0.000486503747187268,299,299,299 +"1277","PvH_KB_NKI_IVIMfit","pancreas",30,0.15,0.01,0.00129999999999999,0.121887930651615,0.0763137640180288,0.00133959929142515,0.45,0.45,0.45,0.45,0.45,0.45,0.0568364469705239,0.636807478517948,0.000126780491704173,299,299,299 +"1278","PvH_KB_NKI_IVIMfit","pancreas",50,0.15,0.01,0.00129999999999999,0.122753935187266,0.0341776204631551,0.00133777754178323,0.45,0.45,0.45,0.45,0.45,0.45,0.0342667143936854,0.25609885196659,7.54325143220183e-05,299,299,299 +"1279","PvH_KB_NKI_IVIMfit","pancreas",100,0.15,0.01,0.00129999999999999,0.122866903165779,0.0198817713875208,0.00133844951393785,0.45,0.45,0.45,0.45,0.45,0.45,0.0171420721199015,0.115209943762463,3.76500896537364e-05,299,299,299 +"1280","PvH_KB_NKI_IVIMfit","pancreas",200,0.15,0.01,0.00129999999999999,0.122698908969178,0.0153586053551514,0.00133941675752602,0.45,0.45,0.45,0.45,0.45,0.45,0.00858477069866618,0.0566470440677396,1.8833704996794e-05,299,299,299 +"1281","PvH_KB_NKI_IVIMfit","pericardium",10,0.07,0.00999999999999999,0.003,0.200345432832572,0.0186626001573525,0.00287291963623568,0.45,0.45,0.45,0.45,0.45,0.45,0.191226965934387,0.511499382712566,0.000944685697624608,299,299,299 +"1282","PvH_KB_NKI_IVIMfit","pericardium",30,0.07,0.00999999999999999,0.003,0.0875410442211974,0.0439264206482478,0.00319637616853394,0.45,0.45,0.45,0.45,0.45,0.45,0.0985206186954527,0.520788624543118,0.000739212332980352,299,299,299 +"1283","PvH_KB_NKI_IVIMfit","pericardium",50,0.07,0.00999999999999999,0.003,0.0713588507505067,0.0343763501514692,0.0030838364312501,0.45,0.45,0.45,0.45,0.45,0.45,0.0723755425130893,0.468187571504604,0.000430508407815945,299,299,299 +"1284","PvH_KB_NKI_IVIMfit","pericardium",100,0.07,0.00999999999999999,0.003,0.0593432428582622,0.0319897344925359,0.00302450453014257,0.45,0.45,0.45,0.45,0.45,0.45,0.0457502568825803,0.346527742871074,0.000170492747418252,299,299,299 +"1285","PvH_KB_NKI_IVIMfit","pericardium",200,0.07,0.00999999999999999,0.003,0.0541407860947715,0.0270422083825517,0.00301893623987703,0.45,0.45,0.45,0.45,0.45,0.45,0.0277552901447244,0.292432776404661,8.24583932743335e-05,299,299,299 +"1286","PvH_KB_NKI_IVIMfit","right kidney medulla",10,0.158,0.019,0.00209,0.172769410759528,-0.0129025903180061,0.00231850649703214,0.45,0.45,0.45,0.45,0.45,0.45,0.167588199078237,0.881872268074511,0.000848804581955418,299,299,299 +"1287","PvH_KB_NKI_IVIMfit","right kidney medulla",30,0.158,0.019,0.00209,0.149260396785261,0.0838122057649798,0.00212653844272449,0.45,0.45,0.45,0.45,0.45,0.45,0.0846050158116964,0.756780752576388,0.000292908118231183,299,299,299 +"1288","PvH_KB_NKI_IVIMfit","right kidney medulla",50,0.158,0.019,0.00209,0.150537693871634,0.0320429234340867,0.00210117866439973,0.45,0.45,0.45,0.45,0.45,0.45,0.0558407026206822,0.238929110798656,0.00015795927517406,299,299,299 +"1289","PvH_KB_NKI_IVIMfit","right kidney medulla",100,0.158,0.019,0.00209,0.152330432578386,0.0263377429259093,0.00209634314665668,0.45,0.45,0.45,0.45,0.45,0.45,0.0275597380910475,0.0953262700118966,7.72066050910961e-05,299,299,299 +"1290","PvH_KB_NKI_IVIMfit","right kidney medulla",200,0.158,0.019,0.00209,0.152214803867475,0.0226013390728155,0.00209731568778259,0.45,0.45,0.45,0.45,0.45,0.45,0.0137429741491781,0.0460334488348233,3.84859139679403e-05,299,299,299 +"1291","PvH_KB_NKI_IVIMfit","Right kydney cortex",10,0.097,0.02,0.00212,0.137208356725514,0.0328556971324846,0.00234326664289797,0.45,0.45,0.45,0.45,0.45,0.45,0.15082347496435,0.709808610584414,0.000864240976087832,299,299,299 +"1292","PvH_KB_NKI_IVIMfit","Right kydney cortex",30,0.097,0.02,0.00212,0.0992412318439564,0.0541673413725415,0.00214700894107657,0.45,0.45,0.45,0.45,0.45,0.45,0.0755136199052382,0.714891073500594,0.000274973775845307,299,299,299 +"1293","PvH_KB_NKI_IVIMfit","Right kydney cortex",50,0.097,0.02,0.00212,0.0949976583740269,0.0352799627988735,0.00212503830893963,0.45,0.45,0.45,0.45,0.45,0.45,0.05273380889146,0.514843545827012,0.000151034004693661,299,299,299 +"1294","PvH_KB_NKI_IVIMfit","Right kydney cortex",100,0.097,0.02,0.00212,0.0945738449819955,0.0377584763249772,0.00212098430091707,0.45,0.45,0.45,0.45,0.45,0.45,0.0282686751362,0.195276335283525,7.39915972157195e-05,299,299,299 +"1295","PvH_KB_NKI_IVIMfit","Right kydney cortex",200,0.097,0.02,0.00212,0.09440985913665,0.0257008245150506,0.00212206065941023,0.45,0.45,0.45,0.45,0.45,0.45,0.0141025883395057,0.0756451362928356,3.68974365660527e-05,299,299,299 +"1296","PvH_KB_NKI_IVIMfit","small intestine",10,0.69,0.029,0.00131,0.680218362444095,0.0500663182494933,0.00145020569396961,0.45,0.45,0.45,0.45,0.45,0.45,0.18320141147568,0.238940197069378,0.00107227605518526,299,299,299 +"1297","PvH_KB_NKI_IVIMfit","small intestine",30,0.69,0.029,0.00131,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.45,0.45,0.45,0.065965120993601,0.0695342477735909,0.000430833853766582,299,299,299 +"1298","PvH_KB_NKI_IVIMfit","small intestine",50,0.69,0.029,0.00131,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832125,299,299,299 +"1299","PvH_KB_NKI_IVIMfit","small intestine",100,0.69,0.029,0.00131,0.685021723698742,0.0304649311635959,0.00132963191638665,0.45,0.45,0.45,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1300","PvH_KB_NKI_IVIMfit","small intestine",200,0.69,0.029,0.00131,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.45,0.45,0.45,0.00755023567893948,0.0102124659620521,5.21741063712151e-05,299,299,299 +"1301","PvH_KB_NKI_IVIMfit","spleen",10,0.2,0.03,0.00129999999999999,0.19599662156176,0.0613021299109845,0.00140454927731428,0.45,0.45,0.45,0.45,0.45,0.45,0.142733288723022,0.865447287904048,0.000582749143091828,299,299,299 +"1302","PvH_KB_NKI_IVIMfit","spleen",30,0.2,0.03,0.00129999999999999,0.197871845000451,0.0577937712781124,0.00130150037459746,0.45,0.45,0.45,0.45,0.45,0.45,0.055408133031037,0.277217446552304,0.00013547179107877,299,299,299 +"1303","PvH_KB_NKI_IVIMfit","spleen",50,0.2,0.03,0.00129999999999999,0.199033284978018,0.0416870355859719,0.00129916879604953,0.45,0.45,0.45,0.45,0.45,0.45,0.0330237742731732,0.145965289641754,8.0485438606961e-05,299,299,299 +"1304","PvH_KB_NKI_IVIMfit","spleen",100,0.2,0.03,0.00129999999999999,0.19917657455647,0.0350155098095822,0.00129971733953303,0.45,0.45,0.45,0.45,0.45,0.45,0.0165151433454204,0.0707993903611688,4.01541066264376e-05,299,299,299 +"1305","PvH_KB_NKI_IVIMfit","spleen",200,0.2,0.03,0.00129999999999999,0.199026311814169,0.0324096874623236,0.00130069837749038,0.45,0.45,0.45,0.45,0.45,0.45,0.00827092761229601,0.0352168114201335,2.00852625417637e-05,299,299,299 +"1306","PvH_KB_NKI_IVIMfit","st wall",10,0.3,0.012,0.0015,0.248638297229233,0.036411695424523,0.00172921114226417,0.45,0.45,0.45,0.45,0.45,0.45,0.166347389770017,0.707332243192263,0.000685672723936133,299,299,299 +"1307","PvH_KB_NKI_IVIMfit","st wall",30,0.3,0.012,0.0015,0.258772026363496,0.0293822581865603,0.00157517600100472,0.45,0.45,0.45,0.45,0.45,0.45,0.0644388435309329,0.202407559113073,0.000186844089466446,299,299,299 +"1308","PvH_KB_NKI_IVIMfit","st wall",50,0.3,0.012,0.0015,0.261282486348394,0.0209857397911496,0.00156758941794651,0.45,0.45,0.45,0.45,0.45,0.45,0.0377177202881088,0.108793385587951,0.000109279996332855,299,299,299 +"1309","PvH_KB_NKI_IVIMfit","st wall",100,0.3,0.012,0.0015,0.261756786309685,0.0167953481082953,0.00156685824436581,0.45,0.45,0.45,0.45,0.45,0.45,0.0187674242305055,0.0531745626261237,5.42621275679737e-05,299,299,299 +"1310","PvH_KB_NKI_IVIMfit","st wall",200,0.3,0.012,0.0015,0.261595673443184,0.0150031541093374,0.00156794185426091,0.45,0.45,0.45,0.45,0.45,0.45,0.00939312930329243,0.0264999219499804,2.71220994549821e-05,299,299,299 +"1311","PvH_KB_NKI_IVIMfit","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.680218362444095,0.0500663182494929,0.00145020569396961,0.45,0.45,0.45,0.45,0.45,0.45,0.183201411475679,0.238940197069379,0.00107227605518525,299,299,299 +"1312","PvH_KB_NKI_IVIMfit","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.676680511546324,0.03411776348862,0.00139504564681615,0.45,0.45,0.45,0.45,0.45,0.45,0.0659651209936008,0.0695342477735909,0.000430833853766582,299,299,299 +"1313","PvH_KB_NKI_IVIMfit","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.683651184865244,0.0318790831019141,0.00134158593671561,0.45,0.45,0.45,0.45,0.45,0.45,0.031483838344407,0.0409943521607107,0.000218127540832124,299,299,299 +"1314","PvH_KB_NKI_IVIMfit","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.685021723698742,0.030464931163596,0.00132963191638665,0.45,0.45,0.45,0.45,0.45,0.45,0.0151528426021628,0.0204282695180872,0.00010491631501074,299,299,299 +"1315","PvH_KB_NKI_IVIMfit","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.685125407692503,0.0298136345250442,0.00132919801634713,0.45,0.45,0.45,0.45,0.45,0.45,0.00755023567893948,0.0102124659620522,5.2174106371215e-05,299,299,299 +"1316","PvH_KB_NKI_IVIMfit","Vein",10,1,0.1,0.00299999999999999,0.925854765740672,0.122594446175348,0.000574991619531873,0.45,0.45,0.45,0.45,0.45,0.45,0.0581968702826341,0.16338266599376,0.000860131480490684,299,299,299 +"1317","PvH_KB_NKI_IVIMfit","Vein",30,1,0.1,0.00299999999999999,0.975434046263813,0.106084352342321,0.000574989635117283,0.45,0.45,0.45,0.45,0.45,0.45,0.0193986641365219,0.0502272821523288,0.000860129451432506,299,299,299 +"1318","PvH_KB_NKI_IVIMfit","Vein",50,1,0.1,0.00299999999999999,0.985264177302766,0.1035116627474,0.000574987648133532,0.45,0.45,0.45,0.45,0.45,0.45,0.0116639576048978,0.0297635282059204,0.000860127422073134,299,299,299 +"1319","PvH_KB_NKI_IVIMfit","Vein",100,1,0.1,0.00299999999999999,0.992631985415158,0.101706371823852,0.000574982669398246,0.45,0.45,0.45,0.45,0.45,0.45,0.00584397242277973,0.0147530238753376,0.000860122347364691,299,299,299 +"1320","PvH_KB_NKI_IVIMfit","Vein",200,1,0.1,0.00299999999999999,0.996315722324709,0.10084120596656,0.000574972663309995,0.45,0.45,0.45,0.45,0.45,0.45,0.00292541862788362,0.00734598250269145,0.000860112192396902,299,299,299 From 9536aa03c78959ca7c89a21dc3f203c0d4c58663 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 14:10:54 -0800 Subject: [PATCH 27/87] Allow more variability in IAR_LU_modified_mix --- .../unit_tests/reference_output.csv | 220 +++++++++--------- 1 file changed, 110 insertions(+), 110 deletions(-) diff --git a/tests/IVIMmodels/unit_tests/reference_output.csv b/tests/IVIMmodels/unit_tests/reference_output.csv index 81674d7..1e71988 100644 --- a/tests/IVIMmodels/unit_tests/reference_output.csv +++ b/tests/IVIMmodels/unit_tests/reference_output.csv @@ -219,116 +219,116 @@ "218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 "219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 "220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 -"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933570848988992,0.0981805068105781,9.69093889944883e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.0215342543426893,0.00482098138907883,0.00027316568035834,299,299,299 -"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660010508155,0.0989277747511537,0.000105702347593366,0.35,0.35,0.35,0.0,0.0,0.0,0.00717456694962925,0.00255925461853962,0.000390576167740346,299,299,299 -"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987513355852953,0.0993146630813435,0.000111537271968229,0.35,0.35,0.35,0.0,0.0,0.0,0.00425068598657669,0.00163747345989128,0.000425759593662501,299,299,299 -"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993798822519854,0.0996341503627457,0.00067451351062631,0.35,0.35,0.35,0.0,0.0,0.0,0.00224169924060188,0.000833637613746272,0.00083359048680711,299,299,299 -"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996837881526941,0.0998131234824984,0.000952042039241386,0.35,0.35,0.35,0.0,0.0,0.0,0.001249893170354,0.000417998146329635,0.000912905291908255,299,299,299 -"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701098146999056,0.0376846384692992,0.00123584558723118,0.35,0.35,0.35,0.0,0.0,0.0,0.0838529625204976,0.0142711329792211,0.000699901421058509,299,299,299 -"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689270433829804,0.0305702921292171,0.00132592004287042,0.35,0.35,0.35,0.0,0.0,0.0,0.0343145030426862,0.00387902864928047,0.000274527203038461,299,299,299 -"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689092920587044,0.0296106102396988,0.00131644357044935,0.35,0.35,0.35,0.0,0.0,0.0,0.0211233604764238,0.00231402306217761,0.000165698487313645,299,299,299 -"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689244198890322,0.029166295196685,0.00131232083976971,0.35,0.35,0.35,0.0,0.0,0.0,0.0106229535802193,0.00118522391515315,8.31980645449237e-05,299,299,299 -"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566686914887,0.0290651339498258,0.00131119343859749,0.35,0.35,0.35,0.0,0.0,0.0,0.00530833271107002,0.000595638106375174,4.1614521102759e-05,299,299,299 -"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933575987374375,0.0981725574835951,9.69018377906745e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.0215257895568654,0.00483113629901814,0.000274130265421953,299,299,299 -"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978662969533537,0.0989260889052865,0.000105300000732639,0.35,0.35,0.35,0.0,0.0,0.0,0.00717485114839342,0.00255795325769655,0.000390275453056785,299,299,299 -"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987511739004263,0.0993298157024425,0.000132794280083072,0.35,0.35,0.35,0.0,0.0,0.0,0.00425069060397439,0.0015911575611717,0.000504854482002304,299,299,299 -"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790416523141,0.0996310212865855,0.000668232661096037,0.35,0.35,0.35,0.0,0.0,0.0,0.00225360117674088,0.000839393019600417,0.000811535376588593,299,299,299 -"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996855535493298,0.0998158125367873,0.000899368064030819,0.35,0.35,0.35,0.0,0.0,0.0,0.00122656658519385,0.000422751162266688,0.000910077779013461,299,299,299 -"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933566610122185,0.0981787807085708,9.70611172703338e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.021530161874902,0.00482648728122416,0.000275314576455366,299,299,299 -"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662117043132,0.0989263773276916,0.000105450014645893,0.35,0.35,0.35,0.0,0.0,0.0,0.00717258006854822,0.00256082608071443,0.000390213653300988,299,299,299 -"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987501435172669,0.099328202590769,0.000143321105908456,0.35,0.35,0.35,0.0,0.0,0.0,0.0042494255353876,0.00160494769815741,0.000532773974790679,299,299,299 -"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993794323814746,0.0996364967198052,0.000621828868607648,0.35,0.35,0.35,0.0,0.0,0.0,0.00223204890758188,0.000833791395125412,0.000755680040057872,299,299,299 -"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996857901937908,0.0998074115641361,0.000932667960501076,0.35,0.35,0.35,0.0,0.0,0.0,0.00122897242482976,0.000426998046809806,0.000933797204745226,299,299,299 -"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701145535646085,0.0376638219718699,0.00123540721625722,0.35,0.35,0.35,0.0,0.0,0.0,0.083796930049459,0.0142347099361935,0.000699577458908831,299,299,299 -"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689263925418507,0.0305703664783724,0.00132595409827823,0.35,0.35,0.35,0.0,0.0,0.0,0.0343141207391388,0.00387514363578225,0.000274490525618896,299,299,299 -"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067045652208,0.0296139701994284,0.00131662404649655,0.35,0.35,0.35,0.0,0.0,0.0,0.021127494024743,0.00231722300632553,0.000165725358891943,299,299,299 -"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689264642734075,0.0291646963628323,0.00131222141168724,0.35,0.35,0.35,0.0,0.0,0.0,0.0106155989160487,0.00118572275886623,8.30923169693225e-05,299,299,299 -"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689578693620721,0.0290643988810149,0.00131114025379791,0.35,0.35,0.35,0.0,0.0,0.0,0.00533355200959244,0.000599004776094079,4.1718959275412e-05,299,299,299 -"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.400527830593273,0.0447949636977544,0.0015426629492717,0.35,0.35,0.35,0.0,0.0,0.0,0.102469226197977,0.0260824649486422,0.000435811877077636,299,299,299 -"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337529946987892,0.0333132633421435,0.00164831554033642,0.35,0.35,0.35,0.0,0.0,0.0,0.0404883972521689,0.0096608144222792,0.000155056043499648,299,299,299 -"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327757008760631,0.0312887913494121,0.00165940742671238,0.35,0.35,0.35,0.0,0.0,0.0,0.0251829987126239,0.00506274182546082,9.39501132013033e-05,299,299,299 -"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.32155824311201,0.0303795816066876,0.00166722178568304,0.35,0.35,0.35,0.0,0.0,0.0,0.0130040941720539,0.00246263456737367,4.72367409344804e-05,299,299,299 -"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.320006741416008,0.0301152438308431,0.00166943707892514,0.35,0.35,0.35,0.0,0.0,0.0,0.00665600574442942,0.00124090994517614,2.37736615342511e-05,299,299,299 -"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400548979460758,0.0447739971059416,0.00154247856745977,0.35,0.35,0.35,0.0,0.0,0.0,0.102488763785933,0.0260631843402454,0.000435716369017007,299,299,299 -"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337471951892681,0.0333411057871392,0.00164849410210564,0.35,0.35,0.35,0.0,0.0,0.0,0.0404410994932849,0.0097339323009991,0.000155177312482306,299,299,299 -"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327773227014542,0.0312841862018564,0.00165938176779592,0.35,0.35,0.35,0.0,0.0,0.0,0.0252203796414001,0.00504667330126957,9.38841854255672e-05,299,299,299 -"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321628569189038,0.0303635496520416,0.00166699565123893,0.35,0.35,0.35,0.0,0.0,0.0,0.0130373570332147,0.00246481235226089,4.72845762933273e-05,299,299,299 -"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319962570453534,0.0301251544692642,0.00166958059421625,0.35,0.35,0.35,0.0,0.0,0.0,0.00664838833945276,0.00123023906420883,2.3632274966389e-05,299,299,299 -"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.249532616991952,0.0474117748334815,0.00188136159657005,0.35,0.35,0.35,0.0,0.0,0.0,0.149602692179695,0.0328948654285501,0.000502337861275099,299,299,299 -"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152034132289475,0.0340311002318332,0.00204254497936777,0.35,0.35,0.35,0.0,0.0,0.0,0.0760353011732551,0.0271313066670539,0.000193836017179154,299,299,299 -"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125470720185733,0.0289410754570493,0.00208094800215627,0.35,0.35,0.35,0.0,0.0,0.0,0.0473913747039697,0.0222710733980788,0.000119613146630861,299,299,299 -"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109265063750681,0.0209832399432036,0.00210024709823131,0.35,0.35,0.35,0.0,0.0,0.0,0.0202157581391851,0.00821099980510626,5.54276205660732e-05,299,299,299 -"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.10242582323802,0.0195951700506166,0.00210948179329922,0.35,0.35,0.35,0.0,0.0,0.0,0.00987254906396141,0.00307183611477733,2.73151096204985e-05,299,299,299 -"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.287742524780219,0.0469532718020942,0.00187799044025495,0.35,0.35,0.35,0.0,0.0,0.0,0.150597235131432,0.0330747939408189,0.000536819571838129,299,299,299 -"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194864152021357,0.0298505046160489,0.00204397403174536,0.35,0.35,0.35,0.0,0.0,0.0,0.0709550598231138,0.0218441626546138,0.000204049937474551,299,299,299 -"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174252668623799,0.0242567176575074,0.00207256455461566,0.35,0.35,0.35,0.0,0.0,0.0,0.0415254785739867,0.0130031350639763,0.000121538851820776,299,299,299 -"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163278703698389,0.0203070180368319,0.00208414982352122,0.35,0.35,0.35,0.0,0.0,0.0,0.0211047448900031,0.00391292939047346,6.11095948149501e-05,299,299,299 -"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158985685800923,0.0194178680288917,0.00208893183158285,0.35,0.35,0.35,0.0,0.0,0.0,0.0109797733360322,0.00193587711259381,3.13387637953475e-05,299,299,299 -"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.243028014795172,0.0624504804547779,0.00132518894905339,0.35,0.35,0.35,0.0,0.0,0.0,0.101060620928961,0.0343360464760076,0.00029607175246079,299,299,299 -"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140783521867315,0.0802197298499024,0.00145852258385073,0.35,0.35,0.35,0.0,0.0,0.0,0.0328019767778551,0.0260027022120638,8.81257244158894e-05,299,299,299 -"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.12309553288397,0.087011797073023,0.00148129461844818,0.35,0.35,0.35,0.0,0.0,0.0,0.0184665708897472,0.0178616038531672,4.84916318562723e-05,299,299,299 -"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113755042831202,0.092496271734274,0.00149247648359747,0.35,0.35,0.35,0.0,0.0,0.0,0.00969028027416998,0.0104792908886752,2.39190196817366e-05,299,299,299 -"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111173313381198,0.0956746358547584,0.00149653870928575,0.35,0.35,0.35,0.0,0.0,0.0,0.00523804664463599,0.00574596456915193,1.19327104574067e-05,299,299,299 -"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.292668635997344,0.062818829057458,0.0020705594140065,0.35,0.35,0.35,0.0,0.0,0.0,0.127024838077414,0.033695107022932,0.00051687296022501,299,299,299 -"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177738007442708,0.0766591400862628,0.00234659593498546,0.35,0.35,0.35,0.0,0.0,0.0,0.0363991942681653,0.0241051591436976,0.000152037081683733,299,299,299 -"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160901941269485,0.0792910768978142,0.00237826197663998,0.35,0.35,0.35,0.0,0.0,0.0,0.0207910806480581,0.0182575625585446,8.78672690632462e-05,299,299,299 -"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152028434882425,0.0806077342583237,0.00239450606346528,0.35,0.35,0.35,0.0,0.0,0.0,0.0108729706583398,0.0119809429203843,4.43777825041243e-05,299,299,299 -"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150206783416951,0.080458243656439,0.00239857495114568,0.35,0.35,0.35,0.0,0.0,0.0,0.00575132425848615,0.00692426031645694,2.25733166882019e-05,299,299,299 -"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217418919228325,0.0548070101998308,0.0013307451983828,0.35,0.35,0.35,0.0,0.0,0.0,0.106804799716803,0.0336618413187429,0.000296301741999445,299,299,299 -"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114208154078613,0.0608871232569255,0.00144631390638784,0.35,0.35,0.35,0.0,0.0,0.0,0.0411190421325667,0.0320676577141246,9.70886494479196e-05,299,299,299 -"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906970207097383,0.0663582796941316,0.00147515529989145,0.35,0.35,0.35,0.0,0.0,0.0,0.0229207872253836,0.0267997646460673,5.62258617109179e-05,299,299,299 -"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763172598938093,0.0703012594964821,0.00149220525025731,0.35,0.35,0.35,0.0,0.0,0.0,0.0110844027223029,0.0204183212269255,2.75853755534046e-05,299,299,299 -"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711873339802141,0.071012263736686,0.00149820353775491,0.35,0.35,0.35,0.0,0.0,0.0,0.0055185238958783,0.0123993133675178,1.32882110617675e-05,299,299,299 -"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29138759778007,0.0634523083963379,0.00207377386621988,0.35,0.35,0.35,0.0,0.0,0.0,0.127491855180917,0.0335129615024955,0.000515271773404712,299,299,299 -"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178536958838559,0.0761969761487833,0.00234416351526948,0.35,0.35,0.35,0.0,0.0,0.0,0.037118289610981,0.0245490154570805,0.000155277005363762,299,299,299 -"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160895174089521,0.079308982525226,0.00237829482641901,0.35,0.35,0.35,0.0,0.0,0.0,0.0207587562712371,0.018256477610219,8.78367262569577e-05,299,299,299 -"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152023667758396,0.080620281339839,0.00239451487846507,0.35,0.35,0.35,0.0,0.0,0.0,0.0108713546371183,0.0120024241632719,4.44037069107048e-05,299,299,299 -"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201811438555,0.0804679869018945,0.00239859266134557,0.35,0.35,0.35,0.0,0.0,0.0,0.00574915351494362,0.00693083741874004,2.25884434304873e-05,299,299,299 -"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.248344316684146,0.0432673370142827,0.00123766533339312,0.35,0.35,0.35,0.0,0.0,0.0,0.125891591299949,0.0329699372149749,0.000342302770815962,299,299,299 -"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.182978537498608,0.0218247024322462,0.00127868929024059,0.35,0.35,0.35,0.0,0.0,0.0,0.0710746088228192,0.0220253009430336,0.000150137678081883,299,299,299 -"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170181818027131,0.0142758354390592,0.00128445720433125,0.35,0.35,0.35,0.0,0.0,0.0,0.0496827374528674,0.010487391275323,9.93712033705176e-05,299,299,299 -"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156715737470036,0.0112668739528815,0.00129575655051772,0.35,0.35,0.35,0.0,0.0,0.0,0.0275536230334743,0.00280742108219625,5.36023135630817e-05,299,299,299 -"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151437121859861,0.0104424292043013,0.00129973244445252,0.35,0.35,0.35,0.0,0.0,0.0,0.0141327834577345,0.00130396809535004,2.73624064797803e-05,299,299,299 -"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.255261988113913,0.0476029149803136,0.00249957332698816,0.35,0.35,0.35,0.0,0.0,0.0,0.213516352912783,0.0336004006029444,0.000818256522450913,299,299,299 -"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149954394620714,0.0367555313016414,0.00284555491289821,0.35,0.35,0.35,0.0,0.0,0.0,0.157348120967762,0.0310398596126881,0.000395287731756426,299,299,299 -"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.1339534949829,0.0327862235217742,0.00289288395593041,0.35,0.35,0.35,0.0,0.0,0.0,0.136955415476539,0.0314142302912386,0.00029147245816474,299,299,299 -"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.122524582945071,0.0211547506974247,0.002924599490842,0.35,0.35,0.35,0.0,0.0,0.0,0.107189237240671,0.0251396358874472,0.000191708065414385,299,299,299 -"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0995911309067432,0.0126786513365091,0.00295805545905117,0.35,0.35,0.35,0.0,0.0,0.0,0.0716041461376219,0.0104213011105497,0.000118459951222743,299,299,299 -"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.28965165104317,0.0463222357611467,0.00186936701287237,0.35,0.35,0.35,0.0,0.0,0.0,0.154078461319228,0.0328064576871952,0.000545349997355686,299,299,299 -"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194854321754547,0.0298774402228633,0.00204406121670449,0.35,0.35,0.35,0.0,0.0,0.0,0.0710477064913935,0.021838658216508,0.000204362249447335,299,299,299 -"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174333154255163,0.0242263171075138,0.00207234463151042,0.35,0.35,0.35,0.0,0.0,0.0,0.0416722187207939,0.0129129541368736,0.000121772941577827,299,299,299 -"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163226072290611,0.0203261755563394,0.00208431407512289,0.35,0.35,0.35,0.0,0.0,0.0,0.0212053684989626,0.0039277104912548,6.13121337896188e-05,299,299,299 -"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.159049278283893,0.0194069652468105,0.00208876391735952,0.35,0.35,0.35,0.0,0.0,0.0,0.0109419949541128,0.00194875599532487,3.12972557845455e-05,299,299,299 -"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248827535387845,0.048033430271864,0.00188349481680363,0.35,0.35,0.35,0.0,0.0,0.0,0.149269552893858,0.033107519813366,0.000503094490859781,299,299,299 -"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.151607823307439,0.0342364378609477,0.00204368795416302,0.35,0.35,0.35,0.0,0.0,0.0,0.0762064458544891,0.0274568438882678,0.000194776269611553,299,299,299 -"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125960981401414,0.0286867772578075,0.00207984351985909,0.35,0.35,0.35,0.0,0.0,0.0,0.0477410849778633,0.0220333334458629,0.000119565433226195,299,299,299 -"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109362773523813,0.0209818010211308,0.00210003319968129,0.35,0.35,0.35,0.0,0.0,0.0,0.0203094933614173,0.00819641576176799,5.52133247059982e-05,299,299,299 -"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102568055468329,0.0195499671391283,0.00210914474464573,0.35,0.35,0.35,0.0,0.0,0.0,0.00996242367557439,0.00303162336859383,2.73320529798663e-05,299,299,299 -"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701198745993371,0.0376646732319215,0.00123518735746814,0.35,0.35,0.35,0.0,0.0,0.0,0.0837909479652782,0.0142461690833718,0.000699424013110354,299,299,299 -"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689300841326672,0.0305668152861243,0.00132574584949807,0.35,0.35,0.35,0.0,0.0,0.0,0.0343183473999597,0.00387502876228319,0.000274594881305669,299,299,299 -"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689071387792248,0.0296139387993788,0.00131660701698079,0.35,0.35,0.35,0.0,0.0,0.0,0.0211282716804542,0.0023189052398669,0.000165773235811395,299,299,299 -"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689250067287498,0.0291660422905695,0.00131230086413988,0.35,0.35,0.35,0.0,0.0,0.0,0.0106146402663469,0.00118555620015251,8.30742237340875e-05,299,299,299 -"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689567485944398,0.0290651227894702,0.00131119397071469,0.35,0.35,0.35,0.0,0.0,0.0,0.00531401069854208,0.00059651399766035,4.16089073023098e-05,299,299,299 -"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307621156848986,0.0469076155274879,0.00118060377355725,0.35,0.35,0.35,0.0,0.0,0.0,0.0988607322094869,0.0292955180646468,0.000309765659919692,299,299,299 -"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226714852861466,0.0357507274073965,0.00127427679153086,0.35,0.35,0.35,0.0,0.0,0.0,0.0384383786913669,0.0165816848974677,0.000105970591118997,299,299,299 -"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212838874320091,0.0322032454380028,0.00128726842825159,0.35,0.35,0.35,0.0,0.0,0.0,0.0239815393630376,0.00841063284965137,6.46131376919829e-05,299,299,299 -"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203929273047352,0.0305801767530657,0.0012955980448668,0.35,0.35,0.35,0.0,0.0,0.0,0.0123598551177239,0.00374491573593368,3.22521110237516e-05,299,299,299 -"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200648735685256,0.0301543535588632,0.00129883471269564,0.35,0.35,0.35,0.0,0.0,0.0,0.00652106017908323,0.00187787952801339,1.62570791579883e-05,299,299,299 -"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.36558236650486,0.0335549189134318,0.00144208949425923,0.35,0.35,0.35,0.0,0.0,0.0,0.148377716167429,0.0277486623352778,0.000514732496951213,299,299,299 -"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308785205390333,0.0165956722196164,0.00151095355032825,0.35,0.35,0.35,0.0,0.0,0.0,0.072535645486854,0.00798484774825925,0.000207239260593192,299,299,299 -"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300767315042576,0.0141314102739456,0.00151398764425479,0.35,0.35,0.35,0.0,0.0,0.0,0.0460143131318849,0.00347183699601678,0.000127512452398774,299,299,299 -"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.29866515126707,0.0127455062410037,0.00150805628363623,0.35,0.35,0.35,0.0,0.0,0.0,0.024654596619276,0.00159193563761587,6.64482208125383e-05,299,299,299 -"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.29850635433234,0.0122508143217796,0.00150430836509382,0.35,0.35,0.35,0.0,0.0,0.0,0.0128440615061395,0.000753066031083087,3.39695397671074e-05,299,299,299 -"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701159101129457,0.0376796685724961,0.0012352715721896,0.35,0.35,0.35,0.0,0.0,0.0,0.0838446603479793,0.0142671505976251,0.000698586867626876,299,299,299 -"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689280990007572,0.0305681351269233,0.00132577267971387,0.35,0.35,0.35,0.0,0.0,0.0,0.0343443420505457,0.00387820063383894,0.000274661368602537,299,299,299 -"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689093861863916,0.0296110537390212,0.00131644237422315,0.35,0.35,0.35,0.0,0.0,0.0,0.0211285578989318,0.00231649664141576,0.000165651738363466,299,299,299 -"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689256854677127,0.0291649150740799,0.00131223585918137,0.35,0.35,0.35,0.0,0.0,0.0,0.0106130448865661,0.00118580102346143,8.31630810802384e-05,299,299,299 -"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689566841080693,0.0290653444493327,0.00131121026637596,0.35,0.35,0.35,0.0,0.0,0.0,0.00531405976841069,0.000594600258522409,4.16230901679743e-05,299,299,299 -"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933593761897754,0.0981489626394891,9.6152179391423e-05,0.35,0.35,0.35,0.0,0.0,0.0,0.0215254478073352,0.00483459319123489,0.00026949890522783,299,299,299 -"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978663125675657,0.0989257580393516,0.000105275523399884,0.35,0.35,0.35,0.0,0.0,0.0,0.00717703249976041,0.00256226754822786,0.000389459474472075,299,299,299 -"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987516401238551,0.0993225357711021,0.000147484971973629,0.35,0.35,0.35,0.0,0.0,0.0,0.00427788573686546,0.00162109623799643,0.000553365867077396,299,299,299 -"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993794422134329,0.0996324856702317,0.000656466531465015,0.35,0.35,0.35,0.0,0.0,0.0,0.00224062902080407,0.000844759432744937,0.000810756210816362,299,299,299 -"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996854528450748,0.099808203506191,0.000942189885356755,0.35,0.35,0.35,0.0,0.0,0.0,0.00122018417072544,0.000427560599255016,0.000905192804034703,299,299,299 +"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933570848988992,0.0981805068105781,9.69093889944883e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.0215342543426893,0.00482098138907883,0.00027316568035834,299,299,299 +"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660010508155,0.0989277747511537,0.000105702347593366,0.15,0.15,0.15,0.0,0.0,0.0,0.00717456694962925,0.00255925461853962,0.000390576167740346,299,299,299 +"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987513355852953,0.0993146630813435,0.000111537271968229,0.15,0.15,0.15,0.0,0.0,0.0,0.00425068598657669,0.00163747345989128,0.000425759593662501,299,299,299 +"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993798822519854,0.0996341503627457,0.00067451351062631,0.15,0.15,0.15,0.0,0.0,0.0,0.00224169924060188,0.000833637613746272,0.00083359048680711,299,299,299 +"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996837881526941,0.0998131234824984,0.000952042039241386,0.15,0.15,0.15,0.0,0.0,0.0,0.001249893170354,0.000417998146329635,0.000912905291908255,299,299,299 +"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701098146999056,0.0376846384692992,0.00123584558723118,0.15,0.15,0.15,0.0,0.0,0.0,0.0838529625204976,0.0142711329792211,0.000699901421058509,299,299,299 +"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689270433829804,0.0305702921292171,0.00132592004287042,0.15,0.15,0.15,0.0,0.0,0.0,0.0343145030426862,0.00387902864928047,0.000274527203038461,299,299,299 +"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689092920587044,0.0296106102396988,0.00131644357044935,0.15,0.15,0.15,0.0,0.0,0.0,0.0211233604764238,0.00231402306217761,0.000165698487313645,299,299,299 +"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689244198890322,0.029166295196685,0.00131232083976971,0.15,0.15,0.15,0.0,0.0,0.0,0.0106229535802193,0.00118522391515315,8.31980645449237e-05,299,299,299 +"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566686914887,0.0290651339498258,0.00131119343859749,0.15,0.15,0.15,0.0,0.0,0.0,0.00530833271107002,0.000595638106375174,4.1614521102759e-05,299,299,299 +"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933575987374375,0.0981725574835951,9.69018377906745e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.0215257895568654,0.00483113629901814,0.000274130265421953,299,299,299 +"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978662969533537,0.0989260889052865,0.000105300000732639,0.15,0.15,0.15,0.0,0.0,0.0,0.00717485114839342,0.00255795325769655,0.000390275453056785,299,299,299 +"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987511739004263,0.0993298157024425,0.000132794280083072,0.15,0.15,0.15,0.0,0.0,0.0,0.00425069060397439,0.0015911575611717,0.000504854482002304,299,299,299 +"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790416523141,0.0996310212865855,0.000668232661096037,0.15,0.15,0.15,0.0,0.0,0.0,0.00225360117674088,0.000839393019600417,0.000811535376588593,299,299,299 +"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996855535493298,0.0998158125367873,0.000899368064030819,0.15,0.15,0.15,0.0,0.0,0.0,0.00122656658519385,0.000422751162266688,0.000910077779013461,299,299,299 +"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933566610122185,0.0981787807085708,9.70611172703338e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.021530161874902,0.00482648728122416,0.000275314576455366,299,299,299 +"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662117043132,0.0989263773276916,0.000105450014645893,0.15,0.15,0.15,0.0,0.0,0.0,0.00717258006854822,0.00256082608071443,0.000390213653300988,299,299,299 +"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987501435172669,0.099328202590769,0.000143321105908456,0.15,0.15,0.15,0.0,0.0,0.0,0.0042494255353876,0.00160494769815741,0.000532773974790679,299,299,299 +"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993794323814746,0.0996364967198052,0.000621828868607648,0.15,0.15,0.15,0.0,0.0,0.0,0.00223204890758188,0.000833791395125412,0.000755680040057872,299,299,299 +"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996857901937908,0.0998074115641361,0.000932667960501076,0.15,0.15,0.15,0.0,0.0,0.0,0.00122897242482976,0.000426998046809806,0.000933797204745226,299,299,299 +"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701145535646085,0.0376638219718699,0.00123540721625722,0.15,0.15,0.15,0.0,0.0,0.0,0.083796930049459,0.0142347099361935,0.000699577458908831,299,299,299 +"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689263925418507,0.0305703664783724,0.00132595409827823,0.15,0.15,0.15,0.0,0.0,0.0,0.0343141207391388,0.00387514363578225,0.000274490525618896,299,299,299 +"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067045652208,0.0296139701994284,0.00131662404649655,0.15,0.15,0.15,0.0,0.0,0.0,0.021127494024743,0.00231722300632553,0.000165725358891943,299,299,299 +"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689264642734075,0.0291646963628323,0.00131222141168724,0.15,0.15,0.15,0.0,0.0,0.0,0.0106155989160487,0.00118572275886623,8.30923169693225e-05,299,299,299 +"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689578693620721,0.0290643988810149,0.00131114025379791,0.15,0.15,0.15,0.0,0.0,0.0,0.00533355200959244,0.000599004776094079,4.1718959275412e-05,299,299,299 +"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.400527830593273,0.0447949636977544,0.0015426629492717,0.15,0.15,0.15,0.0,0.0,0.0,0.102469226197977,0.0260824649486422,0.000435811877077636,299,299,299 +"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337529946987892,0.0333132633421435,0.00164831554033642,0.15,0.15,0.15,0.0,0.0,0.0,0.0404883972521689,0.0096608144222792,0.000155056043499648,299,299,299 +"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327757008760631,0.0312887913494121,0.00165940742671238,0.15,0.15,0.15,0.0,0.0,0.0,0.0251829987126239,0.00506274182546082,9.39501132013033e-05,299,299,299 +"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.32155824311201,0.0303795816066876,0.00166722178568304,0.15,0.15,0.15,0.0,0.0,0.0,0.0130040941720539,0.00246263456737367,4.72367409344804e-05,299,299,299 +"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.320006741416008,0.0301152438308431,0.00166943707892514,0.15,0.15,0.15,0.0,0.0,0.0,0.00665600574442942,0.00124090994517614,2.37736615342511e-05,299,299,299 +"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400548979460758,0.0447739971059416,0.00154247856745977,0.15,0.15,0.15,0.0,0.0,0.0,0.102488763785933,0.0260631843402454,0.000435716369017007,299,299,299 +"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337471951892681,0.0333411057871392,0.00164849410210564,0.15,0.15,0.15,0.0,0.0,0.0,0.0404410994932849,0.0097339323009991,0.000155177312482306,299,299,299 +"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327773227014542,0.0312841862018564,0.00165938176779592,0.15,0.15,0.15,0.0,0.0,0.0,0.0252203796414001,0.00504667330126957,9.38841854255672e-05,299,299,299 +"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321628569189038,0.0303635496520416,0.00166699565123893,0.15,0.15,0.15,0.0,0.0,0.0,0.0130373570332147,0.00246481235226089,4.72845762933273e-05,299,299,299 +"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319962570453534,0.0301251544692642,0.00166958059421625,0.15,0.15,0.15,0.0,0.0,0.0,0.00664838833945276,0.00123023906420883,2.3632274966389e-05,299,299,299 +"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.249532616991952,0.0474117748334815,0.00188136159657005,0.15,0.15,0.15,0.0,0.0,0.0,0.149602692179695,0.0328948654285501,0.000502337861275099,299,299,299 +"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152034132289475,0.0340311002318332,0.00204254497936777,0.15,0.15,0.15,0.0,0.0,0.0,0.0760353011732551,0.0271313066670539,0.000193836017179154,299,299,299 +"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125470720185733,0.0289410754570493,0.00208094800215627,0.15,0.15,0.15,0.0,0.0,0.0,0.0473913747039697,0.0222710733980788,0.000119613146630861,299,299,299 +"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109265063750681,0.0209832399432036,0.00210024709823131,0.15,0.15,0.15,0.0,0.0,0.0,0.0202157581391851,0.00821099980510626,5.54276205660732e-05,299,299,299 +"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.10242582323802,0.0195951700506166,0.00210948179329922,0.15,0.15,0.15,0.0,0.0,0.0,0.00987254906396141,0.00307183611477733,2.73151096204985e-05,299,299,299 +"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.287742524780219,0.0469532718020942,0.00187799044025495,0.15,0.15,0.15,0.0,0.0,0.0,0.150597235131432,0.0330747939408189,0.000536819571838129,299,299,299 +"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194864152021357,0.0298505046160489,0.00204397403174536,0.15,0.15,0.15,0.0,0.0,0.0,0.0709550598231138,0.0218441626546138,0.000204049937474551,299,299,299 +"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174252668623799,0.0242567176575074,0.00207256455461566,0.15,0.15,0.15,0.0,0.0,0.0,0.0415254785739867,0.0130031350639763,0.000121538851820776,299,299,299 +"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163278703698389,0.0203070180368319,0.00208414982352122,0.15,0.15,0.15,0.0,0.0,0.0,0.0211047448900031,0.00391292939047346,6.11095948149501e-05,299,299,299 +"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158985685800923,0.0194178680288917,0.00208893183158285,0.15,0.15,0.15,0.0,0.0,0.0,0.0109797733360322,0.00193587711259381,3.13387637953475e-05,299,299,299 +"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.243028014795172,0.0624504804547779,0.00132518894905339,0.15,0.15,0.15,0.0,0.0,0.0,0.101060620928961,0.0343360464760076,0.00029607175246079,299,299,299 +"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140783521867315,0.0802197298499024,0.00145852258385073,0.15,0.15,0.15,0.0,0.0,0.0,0.0328019767778551,0.0260027022120638,8.81257244158894e-05,299,299,299 +"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.12309553288397,0.087011797073023,0.00148129461844818,0.15,0.15,0.15,0.0,0.0,0.0,0.0184665708897472,0.0178616038531672,4.84916318562723e-05,299,299,299 +"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113755042831202,0.092496271734274,0.00149247648359747,0.15,0.15,0.15,0.0,0.0,0.0,0.00969028027416998,0.0104792908886752,2.39190196817366e-05,299,299,299 +"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111173313381198,0.0956746358547584,0.00149653870928575,0.15,0.15,0.15,0.0,0.0,0.0,0.00523804664463599,0.00574596456915193,1.19327104574067e-05,299,299,299 +"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.292668635997344,0.062818829057458,0.0020705594140065,0.15,0.15,0.15,0.0,0.0,0.0,0.127024838077414,0.033695107022932,0.00051687296022501,299,299,299 +"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177738007442708,0.0766591400862628,0.00234659593498546,0.15,0.15,0.15,0.0,0.0,0.0,0.0363991942681653,0.0241051591436976,0.000152037081683733,299,299,299 +"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160901941269485,0.0792910768978142,0.00237826197663998,0.15,0.15,0.15,0.0,0.0,0.0,0.0207910806480581,0.0182575625585446,8.78672690632462e-05,299,299,299 +"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152028434882425,0.0806077342583237,0.00239450606346528,0.15,0.15,0.15,0.0,0.0,0.0,0.0108729706583398,0.0119809429203843,4.43777825041243e-05,299,299,299 +"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150206783416951,0.080458243656439,0.00239857495114568,0.15,0.15,0.15,0.0,0.0,0.0,0.00575132425848615,0.00692426031645694,2.25733166882019e-05,299,299,299 +"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217418919228325,0.0548070101998308,0.0013307451983828,0.15,0.15,0.15,0.0,0.0,0.0,0.106804799716803,0.0336618413187429,0.000296301741999445,299,299,299 +"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114208154078613,0.0608871232569255,0.00144631390638784,0.15,0.15,0.15,0.0,0.0,0.0,0.0411190421325667,0.0320676577141246,9.70886494479196e-05,299,299,299 +"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906970207097383,0.0663582796941316,0.00147515529989145,0.15,0.15,0.15,0.0,0.0,0.0,0.0229207872253836,0.0267997646460673,5.62258617109179e-05,299,299,299 +"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763172598938093,0.0703012594964821,0.00149220525025731,0.15,0.15,0.15,0.0,0.0,0.0,0.0110844027223029,0.0204183212269255,2.75853755534046e-05,299,299,299 +"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711873339802141,0.071012263736686,0.00149820353775491,0.15,0.15,0.15,0.0,0.0,0.0,0.0055185238958783,0.0123993133675178,1.32882110617675e-05,299,299,299 +"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29138759778007,0.0634523083963379,0.00207377386621988,0.15,0.15,0.15,0.0,0.0,0.0,0.127491855180917,0.0335129615024955,0.000515271773404712,299,299,299 +"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178536958838559,0.0761969761487833,0.00234416351526948,0.15,0.15,0.15,0.0,0.0,0.0,0.037118289610981,0.0245490154570805,0.000155277005363762,299,299,299 +"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160895174089521,0.079308982525226,0.00237829482641901,0.15,0.15,0.15,0.0,0.0,0.0,0.0207587562712371,0.018256477610219,8.78367262569577e-05,299,299,299 +"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152023667758396,0.080620281339839,0.00239451487846507,0.15,0.15,0.15,0.0,0.0,0.0,0.0108713546371183,0.0120024241632719,4.44037069107048e-05,299,299,299 +"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201811438555,0.0804679869018945,0.00239859266134557,0.15,0.15,0.15,0.0,0.0,0.0,0.00574915351494362,0.00693083741874004,2.25884434304873e-05,299,299,299 +"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.248344316684146,0.0432673370142827,0.00123766533339312,0.15,0.15,0.15,0.0,0.0,0.0,0.125891591299949,0.0329699372149749,0.000342302770815962,299,299,299 +"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.182978537498608,0.0218247024322462,0.00127868929024059,0.15,0.15,0.15,0.0,0.0,0.0,0.0710746088228192,0.0220253009430336,0.000150137678081883,299,299,299 +"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170181818027131,0.0142758354390592,0.00128445720433125,0.15,0.15,0.15,0.0,0.0,0.0,0.0496827374528674,0.010487391275323,9.93712033705176e-05,299,299,299 +"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156715737470036,0.0112668739528815,0.00129575655051772,0.15,0.15,0.15,0.0,0.0,0.0,0.0275536230334743,0.00280742108219625,5.36023135630817e-05,299,299,299 +"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151437121859861,0.0104424292043013,0.00129973244445252,0.15,0.15,0.15,0.0,0.0,0.0,0.0141327834577345,0.00130396809535004,2.73624064797803e-05,299,299,299 +"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.255261988113913,0.0476029149803136,0.00249957332698816,0.15,0.15,0.15,0.0,0.0,0.0,0.213516352912783,0.0336004006029444,0.000818256522450913,299,299,299 +"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149954394620714,0.0367555313016414,0.00284555491289821,0.15,0.15,0.15,0.0,0.0,0.0,0.157348120967762,0.0310398596126881,0.000395287731756426,299,299,299 +"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.1339534949829,0.0327862235217742,0.00289288395593041,0.15,0.15,0.15,0.0,0.0,0.0,0.136955415476539,0.0314142302912386,0.00029147245816474,299,299,299 +"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.122524582945071,0.0211547506974247,0.002924599490842,0.15,0.15,0.15,0.0,0.0,0.0,0.107189237240671,0.0251396358874472,0.000191708065414385,299,299,299 +"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0995911309067432,0.0126786513365091,0.00295805545905117,0.15,0.15,0.15,0.0,0.0,0.0,0.0716041461376219,0.0104213011105497,0.000118459951222743,299,299,299 +"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.28965165104317,0.0463222357611467,0.00186936701287237,0.15,0.15,0.15,0.0,0.0,0.0,0.154078461319228,0.0328064576871952,0.000545349997355686,299,299,299 +"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194854321754547,0.0298774402228633,0.00204406121670449,0.15,0.15,0.15,0.0,0.0,0.0,0.0710477064913935,0.021838658216508,0.000204362249447335,299,299,299 +"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174333154255163,0.0242263171075138,0.00207234463151042,0.15,0.15,0.15,0.0,0.0,0.0,0.0416722187207939,0.0129129541368736,0.000121772941577827,299,299,299 +"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163226072290611,0.0203261755563394,0.00208431407512289,0.15,0.15,0.15,0.0,0.0,0.0,0.0212053684989626,0.0039277104912548,6.13121337896188e-05,299,299,299 +"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.159049278283893,0.0194069652468105,0.00208876391735952,0.15,0.15,0.15,0.0,0.0,0.0,0.0109419949541128,0.00194875599532487,3.12972557845455e-05,299,299,299 +"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248827535387845,0.048033430271864,0.00188349481680363,0.15,0.15,0.15,0.0,0.0,0.0,0.149269552893858,0.033107519813366,0.000503094490859781,299,299,299 +"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.151607823307439,0.0342364378609477,0.00204368795416302,0.15,0.15,0.15,0.0,0.0,0.0,0.0762064458544891,0.0274568438882678,0.000194776269611553,299,299,299 +"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125960981401414,0.0286867772578075,0.00207984351985909,0.15,0.15,0.15,0.0,0.0,0.0,0.0477410849778633,0.0220333334458629,0.000119565433226195,299,299,299 +"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109362773523813,0.0209818010211308,0.00210003319968129,0.15,0.15,0.15,0.0,0.0,0.0,0.0203094933614173,0.00819641576176799,5.52133247059982e-05,299,299,299 +"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102568055468329,0.0195499671391283,0.00210914474464573,0.15,0.15,0.15,0.0,0.0,0.0,0.00996242367557439,0.00303162336859383,2.73320529798663e-05,299,299,299 +"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701198745993371,0.0376646732319215,0.00123518735746814,0.15,0.15,0.15,0.0,0.0,0.0,0.0837909479652782,0.0142461690833718,0.000699424013110354,299,299,299 +"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689300841326672,0.0305668152861243,0.00132574584949807,0.15,0.15,0.15,0.0,0.0,0.0,0.0343183473999597,0.00387502876228319,0.000274594881305669,299,299,299 +"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689071387792248,0.0296139387993788,0.00131660701698079,0.15,0.15,0.15,0.0,0.0,0.0,0.0211282716804542,0.0023189052398669,0.000165773235811395,299,299,299 +"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689250067287498,0.0291660422905695,0.00131230086413988,0.15,0.15,0.15,0.0,0.0,0.0,0.0106146402663469,0.00118555620015251,8.30742237340875e-05,299,299,299 +"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689567485944398,0.0290651227894702,0.00131119397071469,0.15,0.15,0.15,0.0,0.0,0.0,0.00531401069854208,0.00059651399766035,4.16089073023098e-05,299,299,299 +"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307621156848986,0.0469076155274879,0.00118060377355725,0.15,0.15,0.15,0.0,0.0,0.0,0.0988607322094869,0.0292955180646468,0.000309765659919692,299,299,299 +"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226714852861466,0.0357507274073965,0.00127427679153086,0.15,0.15,0.15,0.0,0.0,0.0,0.0384383786913669,0.0165816848974677,0.000105970591118997,299,299,299 +"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212838874320091,0.0322032454380028,0.00128726842825159,0.15,0.15,0.15,0.0,0.0,0.0,0.0239815393630376,0.00841063284965137,6.46131376919829e-05,299,299,299 +"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203929273047352,0.0305801767530657,0.0012955980448668,0.15,0.15,0.15,0.0,0.0,0.0,0.0123598551177239,0.00374491573593368,3.22521110237516e-05,299,299,299 +"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200648735685256,0.0301543535588632,0.00129883471269564,0.15,0.15,0.15,0.0,0.0,0.0,0.00652106017908323,0.00187787952801339,1.62570791579883e-05,299,299,299 +"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.36558236650486,0.0335549189134318,0.00144208949425923,0.15,0.15,0.15,0.0,0.0,0.0,0.148377716167429,0.0277486623352778,0.000514732496951213,299,299,299 +"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308785205390333,0.0165956722196164,0.00151095355032825,0.15,0.15,0.15,0.0,0.0,0.0,0.072535645486854,0.00798484774825925,0.000207239260593192,299,299,299 +"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300767315042576,0.0141314102739456,0.00151398764425479,0.15,0.15,0.15,0.0,0.0,0.0,0.0460143131318849,0.00347183699601678,0.000127512452398774,299,299,299 +"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.29866515126707,0.0127455062410037,0.00150805628363623,0.15,0.15,0.15,0.0,0.0,0.0,0.024654596619276,0.00159193563761587,6.64482208125383e-05,299,299,299 +"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.29850635433234,0.0122508143217796,0.00150430836509382,0.15,0.15,0.15,0.0,0.0,0.0,0.0128440615061395,0.000753066031083087,3.39695397671074e-05,299,299,299 +"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701159101129457,0.0376796685724961,0.0012352715721896,0.15,0.15,0.15,0.0,0.0,0.0,0.0838446603479793,0.0142671505976251,0.000698586867626876,299,299,299 +"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689280990007572,0.0305681351269233,0.00132577267971387,0.15,0.15,0.15,0.0,0.0,0.0,0.0343443420505457,0.00387820063383894,0.000274661368602537,299,299,299 +"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689093861863916,0.0296110537390212,0.00131644237422315,0.15,0.15,0.15,0.0,0.0,0.0,0.0211285578989318,0.00231649664141576,0.000165651738363466,299,299,299 +"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689256854677127,0.0291649150740799,0.00131223585918137,0.15,0.15,0.15,0.0,0.0,0.0,0.0106130448865661,0.00118580102346143,8.31630810802384e-05,299,299,299 +"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689566841080693,0.0290653444493327,0.00131121026637596,0.15,0.15,0.15,0.0,0.0,0.0,0.00531405976841069,0.000594600258522409,4.16230901679743e-05,299,299,299 +"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933593761897754,0.0981489626394891,9.6152179391423e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.0215254478073352,0.00483459319123489,0.00026949890522783,299,299,299 +"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978663125675657,0.0989257580393516,0.000105275523399884,0.15,0.15,0.15,0.0,0.0,0.0,0.00717703249976041,0.00256226754822786,0.000389459474472075,299,299,299 +"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987516401238551,0.0993225357711021,0.000147484971973629,0.15,0.15,0.15,0.0,0.0,0.0,0.00427788573686546,0.00162109623799643,0.000553365867077396,299,299,299 +"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993794422134329,0.0996324856702317,0.000656466531465015,0.15,0.15,0.15,0.0,0.0,0.0,0.00224062902080407,0.000844759432744937,0.000810756210816362,299,299,299 +"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996854528450748,0.099808203506191,0.000942189885356755,0.15,0.15,0.15,0.0,0.0,0.0,0.00122018417072544,0.000427560599255016,0.000905192804034703,299,299,299 "331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 "332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 "333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 From 2e204b542ab0b2d62b660147d81740976dddb4c8 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 22 Dec 2023 16:51:26 -0800 Subject: [PATCH 28/87] Further ease restrictions on IAR_LU_modified_mix --- tests/IVIMmodels/unit_tests/compare.r | 24 +- .../unit_tests/reference_output.csv | 220 +++++++++--------- 2 files changed, 122 insertions(+), 122 deletions(-) diff --git a/tests/IVIMmodels/unit_tests/compare.r b/tests/IVIMmodels/unit_tests/compare.r index 49679cb..832a2ef 100644 --- a/tests/IVIMmodels/unit_tests/compare.r +++ b/tests/IVIMmodels/unit_tests/compare.r @@ -155,18 +155,18 @@ test_results <- test_results %>% write.csv(test_results, test_result_file, row.names=TRUE) # Fail if we had failures -test_results %>% verify(f_ftest_lower_null) -test_results %>% verify(f_ftest_upper_null) -test_results %>% verify(Dp_ftest_lower_null) -test_results %>% verify(Dp_ftest_upper_null) -test_results %>% verify(D_ftest_lower_null) -test_results %>% verify(D_ftest_upper_null) -test_results %>% verify(f_ttest_lower_null) -test_results %>% verify(f_ttest_upper_null) -test_results %>% verify(Dp_ttest_lower_null) -test_results %>% verify(Dp_ttest_upper_null) -test_results %>% verify(D_ttest_lower_null) -test_results %>% verify(D_ttest_upper_null) +test_results %>% verify(f_ftest_lower_null) %>% summarize(n=n()) +test_results %>% verify(f_ftest_upper_null) %>% summarize(n=n()) +test_results %>% verify(Dp_ftest_lower_null) %>% summarize(n=n()) +test_results %>% verify(Dp_ftest_upper_null) %>% summarize(n=n()) +test_results %>% verify(D_ftest_lower_null) %>% summarize(n=n()) +test_results %>% verify(D_ftest_upper_null) %>% summarize(n=n()) +test_results %>% verify(f_ttest_lower_null) %>% summarize(n=n()) +test_results %>% verify(f_ttest_upper_null) %>% summarize(n=n()) +test_results %>% verify(Dp_ttest_lower_null) %>% summarize(n=n()) +test_results %>% verify(Dp_ttest_upper_null) %>% summarize(n=n()) +test_results %>% verify(D_ttest_lower_null) %>% summarize(n=n()) +test_results %>% verify(D_ttest_upper_null) %>% summarize(n=n()) diff --git a/tests/IVIMmodels/unit_tests/reference_output.csv b/tests/IVIMmodels/unit_tests/reference_output.csv index 1e71988..1639d08 100644 --- a/tests/IVIMmodels/unit_tests/reference_output.csv +++ b/tests/IVIMmodels/unit_tests/reference_output.csv @@ -219,116 +219,116 @@ "218","IAR_LU_biexp","Vein",50,1,0.1,0.00299999999999999,0.986847787845757,0.0996578523982781,7.50360361710704e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.00411089364622236,0.00101750527774572,0.000278518470089847,299,299,299 "219","IAR_LU_biexp","Vein",100,1,0.1,0.00299999999999999,0.993665235854761,0.0998164880988224,5.78826115993397e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.0020037885113627,0.00052992688033651,0.000263826201803343,299,299,299 "220","IAR_LU_biexp","Vein",200,1,0.1,0.00299999999999999,0.996952138240823,0.0999023540965261,4.8214267558104e-05,0.45,0.45,0.45,0.45,0.45,0.45,0.000991618405463582,0.000274814551195418,0.000256559599724831,299,299,299 -"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933570848988992,0.0981805068105781,9.69093889944883e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.0215342543426893,0.00482098138907883,0.00027316568035834,299,299,299 -"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660010508155,0.0989277747511537,0.000105702347593366,0.15,0.15,0.15,0.0,0.0,0.0,0.00717456694962925,0.00255925461853962,0.000390576167740346,299,299,299 -"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987513355852953,0.0993146630813435,0.000111537271968229,0.15,0.15,0.15,0.0,0.0,0.0,0.00425068598657669,0.00163747345989128,0.000425759593662501,299,299,299 -"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993798822519854,0.0996341503627457,0.00067451351062631,0.15,0.15,0.15,0.0,0.0,0.0,0.00224169924060188,0.000833637613746272,0.00083359048680711,299,299,299 -"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996837881526941,0.0998131234824984,0.000952042039241386,0.15,0.15,0.15,0.0,0.0,0.0,0.001249893170354,0.000417998146329635,0.000912905291908255,299,299,299 -"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701098146999056,0.0376846384692992,0.00123584558723118,0.15,0.15,0.15,0.0,0.0,0.0,0.0838529625204976,0.0142711329792211,0.000699901421058509,299,299,299 -"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689270433829804,0.0305702921292171,0.00132592004287042,0.15,0.15,0.15,0.0,0.0,0.0,0.0343145030426862,0.00387902864928047,0.000274527203038461,299,299,299 -"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689092920587044,0.0296106102396988,0.00131644357044935,0.15,0.15,0.15,0.0,0.0,0.0,0.0211233604764238,0.00231402306217761,0.000165698487313645,299,299,299 -"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689244198890322,0.029166295196685,0.00131232083976971,0.15,0.15,0.15,0.0,0.0,0.0,0.0106229535802193,0.00118522391515315,8.31980645449237e-05,299,299,299 -"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566686914887,0.0290651339498258,0.00131119343859749,0.15,0.15,0.15,0.0,0.0,0.0,0.00530833271107002,0.000595638106375174,4.1614521102759e-05,299,299,299 -"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933575987374375,0.0981725574835951,9.69018377906745e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.0215257895568654,0.00483113629901814,0.000274130265421953,299,299,299 -"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978662969533537,0.0989260889052865,0.000105300000732639,0.15,0.15,0.15,0.0,0.0,0.0,0.00717485114839342,0.00255795325769655,0.000390275453056785,299,299,299 -"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987511739004263,0.0993298157024425,0.000132794280083072,0.15,0.15,0.15,0.0,0.0,0.0,0.00425069060397439,0.0015911575611717,0.000504854482002304,299,299,299 -"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790416523141,0.0996310212865855,0.000668232661096037,0.15,0.15,0.15,0.0,0.0,0.0,0.00225360117674088,0.000839393019600417,0.000811535376588593,299,299,299 -"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996855535493298,0.0998158125367873,0.000899368064030819,0.15,0.15,0.15,0.0,0.0,0.0,0.00122656658519385,0.000422751162266688,0.000910077779013461,299,299,299 -"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933566610122185,0.0981787807085708,9.70611172703338e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.021530161874902,0.00482648728122416,0.000275314576455366,299,299,299 -"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662117043132,0.0989263773276916,0.000105450014645893,0.15,0.15,0.15,0.0,0.0,0.0,0.00717258006854822,0.00256082608071443,0.000390213653300988,299,299,299 -"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987501435172669,0.099328202590769,0.000143321105908456,0.15,0.15,0.15,0.0,0.0,0.0,0.0042494255353876,0.00160494769815741,0.000532773974790679,299,299,299 -"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993794323814746,0.0996364967198052,0.000621828868607648,0.15,0.15,0.15,0.0,0.0,0.0,0.00223204890758188,0.000833791395125412,0.000755680040057872,299,299,299 -"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996857901937908,0.0998074115641361,0.000932667960501076,0.15,0.15,0.15,0.0,0.0,0.0,0.00122897242482976,0.000426998046809806,0.000933797204745226,299,299,299 -"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701145535646085,0.0376638219718699,0.00123540721625722,0.15,0.15,0.15,0.0,0.0,0.0,0.083796930049459,0.0142347099361935,0.000699577458908831,299,299,299 -"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689263925418507,0.0305703664783724,0.00132595409827823,0.15,0.15,0.15,0.0,0.0,0.0,0.0343141207391388,0.00387514363578225,0.000274490525618896,299,299,299 -"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067045652208,0.0296139701994284,0.00131662404649655,0.15,0.15,0.15,0.0,0.0,0.0,0.021127494024743,0.00231722300632553,0.000165725358891943,299,299,299 -"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689264642734075,0.0291646963628323,0.00131222141168724,0.15,0.15,0.15,0.0,0.0,0.0,0.0106155989160487,0.00118572275886623,8.30923169693225e-05,299,299,299 -"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689578693620721,0.0290643988810149,0.00131114025379791,0.15,0.15,0.15,0.0,0.0,0.0,0.00533355200959244,0.000599004776094079,4.1718959275412e-05,299,299,299 -"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.400527830593273,0.0447949636977544,0.0015426629492717,0.15,0.15,0.15,0.0,0.0,0.0,0.102469226197977,0.0260824649486422,0.000435811877077636,299,299,299 -"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337529946987892,0.0333132633421435,0.00164831554033642,0.15,0.15,0.15,0.0,0.0,0.0,0.0404883972521689,0.0096608144222792,0.000155056043499648,299,299,299 -"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327757008760631,0.0312887913494121,0.00165940742671238,0.15,0.15,0.15,0.0,0.0,0.0,0.0251829987126239,0.00506274182546082,9.39501132013033e-05,299,299,299 -"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.32155824311201,0.0303795816066876,0.00166722178568304,0.15,0.15,0.15,0.0,0.0,0.0,0.0130040941720539,0.00246263456737367,4.72367409344804e-05,299,299,299 -"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.320006741416008,0.0301152438308431,0.00166943707892514,0.15,0.15,0.15,0.0,0.0,0.0,0.00665600574442942,0.00124090994517614,2.37736615342511e-05,299,299,299 -"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400548979460758,0.0447739971059416,0.00154247856745977,0.15,0.15,0.15,0.0,0.0,0.0,0.102488763785933,0.0260631843402454,0.000435716369017007,299,299,299 -"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337471951892681,0.0333411057871392,0.00164849410210564,0.15,0.15,0.15,0.0,0.0,0.0,0.0404410994932849,0.0097339323009991,0.000155177312482306,299,299,299 -"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327773227014542,0.0312841862018564,0.00165938176779592,0.15,0.15,0.15,0.0,0.0,0.0,0.0252203796414001,0.00504667330126957,9.38841854255672e-05,299,299,299 -"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321628569189038,0.0303635496520416,0.00166699565123893,0.15,0.15,0.15,0.0,0.0,0.0,0.0130373570332147,0.00246481235226089,4.72845762933273e-05,299,299,299 -"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319962570453534,0.0301251544692642,0.00166958059421625,0.15,0.15,0.15,0.0,0.0,0.0,0.00664838833945276,0.00123023906420883,2.3632274966389e-05,299,299,299 -"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.249532616991952,0.0474117748334815,0.00188136159657005,0.15,0.15,0.15,0.0,0.0,0.0,0.149602692179695,0.0328948654285501,0.000502337861275099,299,299,299 -"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152034132289475,0.0340311002318332,0.00204254497936777,0.15,0.15,0.15,0.0,0.0,0.0,0.0760353011732551,0.0271313066670539,0.000193836017179154,299,299,299 -"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125470720185733,0.0289410754570493,0.00208094800215627,0.15,0.15,0.15,0.0,0.0,0.0,0.0473913747039697,0.0222710733980788,0.000119613146630861,299,299,299 -"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109265063750681,0.0209832399432036,0.00210024709823131,0.15,0.15,0.15,0.0,0.0,0.0,0.0202157581391851,0.00821099980510626,5.54276205660732e-05,299,299,299 -"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.10242582323802,0.0195951700506166,0.00210948179329922,0.15,0.15,0.15,0.0,0.0,0.0,0.00987254906396141,0.00307183611477733,2.73151096204985e-05,299,299,299 -"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.287742524780219,0.0469532718020942,0.00187799044025495,0.15,0.15,0.15,0.0,0.0,0.0,0.150597235131432,0.0330747939408189,0.000536819571838129,299,299,299 -"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194864152021357,0.0298505046160489,0.00204397403174536,0.15,0.15,0.15,0.0,0.0,0.0,0.0709550598231138,0.0218441626546138,0.000204049937474551,299,299,299 -"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174252668623799,0.0242567176575074,0.00207256455461566,0.15,0.15,0.15,0.0,0.0,0.0,0.0415254785739867,0.0130031350639763,0.000121538851820776,299,299,299 -"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163278703698389,0.0203070180368319,0.00208414982352122,0.15,0.15,0.15,0.0,0.0,0.0,0.0211047448900031,0.00391292939047346,6.11095948149501e-05,299,299,299 -"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158985685800923,0.0194178680288917,0.00208893183158285,0.15,0.15,0.15,0.0,0.0,0.0,0.0109797733360322,0.00193587711259381,3.13387637953475e-05,299,299,299 -"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.243028014795172,0.0624504804547779,0.00132518894905339,0.15,0.15,0.15,0.0,0.0,0.0,0.101060620928961,0.0343360464760076,0.00029607175246079,299,299,299 -"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140783521867315,0.0802197298499024,0.00145852258385073,0.15,0.15,0.15,0.0,0.0,0.0,0.0328019767778551,0.0260027022120638,8.81257244158894e-05,299,299,299 -"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.12309553288397,0.087011797073023,0.00148129461844818,0.15,0.15,0.15,0.0,0.0,0.0,0.0184665708897472,0.0178616038531672,4.84916318562723e-05,299,299,299 -"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113755042831202,0.092496271734274,0.00149247648359747,0.15,0.15,0.15,0.0,0.0,0.0,0.00969028027416998,0.0104792908886752,2.39190196817366e-05,299,299,299 -"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111173313381198,0.0956746358547584,0.00149653870928575,0.15,0.15,0.15,0.0,0.0,0.0,0.00523804664463599,0.00574596456915193,1.19327104574067e-05,299,299,299 -"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.292668635997344,0.062818829057458,0.0020705594140065,0.15,0.15,0.15,0.0,0.0,0.0,0.127024838077414,0.033695107022932,0.00051687296022501,299,299,299 -"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177738007442708,0.0766591400862628,0.00234659593498546,0.15,0.15,0.15,0.0,0.0,0.0,0.0363991942681653,0.0241051591436976,0.000152037081683733,299,299,299 -"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160901941269485,0.0792910768978142,0.00237826197663998,0.15,0.15,0.15,0.0,0.0,0.0,0.0207910806480581,0.0182575625585446,8.78672690632462e-05,299,299,299 -"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152028434882425,0.0806077342583237,0.00239450606346528,0.15,0.15,0.15,0.0,0.0,0.0,0.0108729706583398,0.0119809429203843,4.43777825041243e-05,299,299,299 -"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150206783416951,0.080458243656439,0.00239857495114568,0.15,0.15,0.15,0.0,0.0,0.0,0.00575132425848615,0.00692426031645694,2.25733166882019e-05,299,299,299 -"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217418919228325,0.0548070101998308,0.0013307451983828,0.15,0.15,0.15,0.0,0.0,0.0,0.106804799716803,0.0336618413187429,0.000296301741999445,299,299,299 -"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114208154078613,0.0608871232569255,0.00144631390638784,0.15,0.15,0.15,0.0,0.0,0.0,0.0411190421325667,0.0320676577141246,9.70886494479196e-05,299,299,299 -"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906970207097383,0.0663582796941316,0.00147515529989145,0.15,0.15,0.15,0.0,0.0,0.0,0.0229207872253836,0.0267997646460673,5.62258617109179e-05,299,299,299 -"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763172598938093,0.0703012594964821,0.00149220525025731,0.15,0.15,0.15,0.0,0.0,0.0,0.0110844027223029,0.0204183212269255,2.75853755534046e-05,299,299,299 -"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711873339802141,0.071012263736686,0.00149820353775491,0.15,0.15,0.15,0.0,0.0,0.0,0.0055185238958783,0.0123993133675178,1.32882110617675e-05,299,299,299 -"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29138759778007,0.0634523083963379,0.00207377386621988,0.15,0.15,0.15,0.0,0.0,0.0,0.127491855180917,0.0335129615024955,0.000515271773404712,299,299,299 -"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178536958838559,0.0761969761487833,0.00234416351526948,0.15,0.15,0.15,0.0,0.0,0.0,0.037118289610981,0.0245490154570805,0.000155277005363762,299,299,299 -"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160895174089521,0.079308982525226,0.00237829482641901,0.15,0.15,0.15,0.0,0.0,0.0,0.0207587562712371,0.018256477610219,8.78367262569577e-05,299,299,299 -"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152023667758396,0.080620281339839,0.00239451487846507,0.15,0.15,0.15,0.0,0.0,0.0,0.0108713546371183,0.0120024241632719,4.44037069107048e-05,299,299,299 -"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201811438555,0.0804679869018945,0.00239859266134557,0.15,0.15,0.15,0.0,0.0,0.0,0.00574915351494362,0.00693083741874004,2.25884434304873e-05,299,299,299 -"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.248344316684146,0.0432673370142827,0.00123766533339312,0.15,0.15,0.15,0.0,0.0,0.0,0.125891591299949,0.0329699372149749,0.000342302770815962,299,299,299 -"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.182978537498608,0.0218247024322462,0.00127868929024059,0.15,0.15,0.15,0.0,0.0,0.0,0.0710746088228192,0.0220253009430336,0.000150137678081883,299,299,299 -"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170181818027131,0.0142758354390592,0.00128445720433125,0.15,0.15,0.15,0.0,0.0,0.0,0.0496827374528674,0.010487391275323,9.93712033705176e-05,299,299,299 -"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156715737470036,0.0112668739528815,0.00129575655051772,0.15,0.15,0.15,0.0,0.0,0.0,0.0275536230334743,0.00280742108219625,5.36023135630817e-05,299,299,299 -"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151437121859861,0.0104424292043013,0.00129973244445252,0.15,0.15,0.15,0.0,0.0,0.0,0.0141327834577345,0.00130396809535004,2.73624064797803e-05,299,299,299 -"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.255261988113913,0.0476029149803136,0.00249957332698816,0.15,0.15,0.15,0.0,0.0,0.0,0.213516352912783,0.0336004006029444,0.000818256522450913,299,299,299 -"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149954394620714,0.0367555313016414,0.00284555491289821,0.15,0.15,0.15,0.0,0.0,0.0,0.157348120967762,0.0310398596126881,0.000395287731756426,299,299,299 -"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.1339534949829,0.0327862235217742,0.00289288395593041,0.15,0.15,0.15,0.0,0.0,0.0,0.136955415476539,0.0314142302912386,0.00029147245816474,299,299,299 -"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.122524582945071,0.0211547506974247,0.002924599490842,0.15,0.15,0.15,0.0,0.0,0.0,0.107189237240671,0.0251396358874472,0.000191708065414385,299,299,299 -"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0995911309067432,0.0126786513365091,0.00295805545905117,0.15,0.15,0.15,0.0,0.0,0.0,0.0716041461376219,0.0104213011105497,0.000118459951222743,299,299,299 -"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.28965165104317,0.0463222357611467,0.00186936701287237,0.15,0.15,0.15,0.0,0.0,0.0,0.154078461319228,0.0328064576871952,0.000545349997355686,299,299,299 -"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194854321754547,0.0298774402228633,0.00204406121670449,0.15,0.15,0.15,0.0,0.0,0.0,0.0710477064913935,0.021838658216508,0.000204362249447335,299,299,299 -"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174333154255163,0.0242263171075138,0.00207234463151042,0.15,0.15,0.15,0.0,0.0,0.0,0.0416722187207939,0.0129129541368736,0.000121772941577827,299,299,299 -"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163226072290611,0.0203261755563394,0.00208431407512289,0.15,0.15,0.15,0.0,0.0,0.0,0.0212053684989626,0.0039277104912548,6.13121337896188e-05,299,299,299 -"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.159049278283893,0.0194069652468105,0.00208876391735952,0.15,0.15,0.15,0.0,0.0,0.0,0.0109419949541128,0.00194875599532487,3.12972557845455e-05,299,299,299 -"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248827535387845,0.048033430271864,0.00188349481680363,0.15,0.15,0.15,0.0,0.0,0.0,0.149269552893858,0.033107519813366,0.000503094490859781,299,299,299 -"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.151607823307439,0.0342364378609477,0.00204368795416302,0.15,0.15,0.15,0.0,0.0,0.0,0.0762064458544891,0.0274568438882678,0.000194776269611553,299,299,299 -"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125960981401414,0.0286867772578075,0.00207984351985909,0.15,0.15,0.15,0.0,0.0,0.0,0.0477410849778633,0.0220333334458629,0.000119565433226195,299,299,299 -"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109362773523813,0.0209818010211308,0.00210003319968129,0.15,0.15,0.15,0.0,0.0,0.0,0.0203094933614173,0.00819641576176799,5.52133247059982e-05,299,299,299 -"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102568055468329,0.0195499671391283,0.00210914474464573,0.15,0.15,0.15,0.0,0.0,0.0,0.00996242367557439,0.00303162336859383,2.73320529798663e-05,299,299,299 -"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701198745993371,0.0376646732319215,0.00123518735746814,0.15,0.15,0.15,0.0,0.0,0.0,0.0837909479652782,0.0142461690833718,0.000699424013110354,299,299,299 -"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689300841326672,0.0305668152861243,0.00132574584949807,0.15,0.15,0.15,0.0,0.0,0.0,0.0343183473999597,0.00387502876228319,0.000274594881305669,299,299,299 -"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689071387792248,0.0296139387993788,0.00131660701698079,0.15,0.15,0.15,0.0,0.0,0.0,0.0211282716804542,0.0023189052398669,0.000165773235811395,299,299,299 -"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689250067287498,0.0291660422905695,0.00131230086413988,0.15,0.15,0.15,0.0,0.0,0.0,0.0106146402663469,0.00118555620015251,8.30742237340875e-05,299,299,299 -"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689567485944398,0.0290651227894702,0.00131119397071469,0.15,0.15,0.15,0.0,0.0,0.0,0.00531401069854208,0.00059651399766035,4.16089073023098e-05,299,299,299 -"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307621156848986,0.0469076155274879,0.00118060377355725,0.15,0.15,0.15,0.0,0.0,0.0,0.0988607322094869,0.0292955180646468,0.000309765659919692,299,299,299 -"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226714852861466,0.0357507274073965,0.00127427679153086,0.15,0.15,0.15,0.0,0.0,0.0,0.0384383786913669,0.0165816848974677,0.000105970591118997,299,299,299 -"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212838874320091,0.0322032454380028,0.00128726842825159,0.15,0.15,0.15,0.0,0.0,0.0,0.0239815393630376,0.00841063284965137,6.46131376919829e-05,299,299,299 -"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203929273047352,0.0305801767530657,0.0012955980448668,0.15,0.15,0.15,0.0,0.0,0.0,0.0123598551177239,0.00374491573593368,3.22521110237516e-05,299,299,299 -"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200648735685256,0.0301543535588632,0.00129883471269564,0.15,0.15,0.15,0.0,0.0,0.0,0.00652106017908323,0.00187787952801339,1.62570791579883e-05,299,299,299 -"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.36558236650486,0.0335549189134318,0.00144208949425923,0.15,0.15,0.15,0.0,0.0,0.0,0.148377716167429,0.0277486623352778,0.000514732496951213,299,299,299 -"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308785205390333,0.0165956722196164,0.00151095355032825,0.15,0.15,0.15,0.0,0.0,0.0,0.072535645486854,0.00798484774825925,0.000207239260593192,299,299,299 -"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300767315042576,0.0141314102739456,0.00151398764425479,0.15,0.15,0.15,0.0,0.0,0.0,0.0460143131318849,0.00347183699601678,0.000127512452398774,299,299,299 -"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.29866515126707,0.0127455062410037,0.00150805628363623,0.15,0.15,0.15,0.0,0.0,0.0,0.024654596619276,0.00159193563761587,6.64482208125383e-05,299,299,299 -"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.29850635433234,0.0122508143217796,0.00150430836509382,0.15,0.15,0.15,0.0,0.0,0.0,0.0128440615061395,0.000753066031083087,3.39695397671074e-05,299,299,299 -"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701159101129457,0.0376796685724961,0.0012352715721896,0.15,0.15,0.15,0.0,0.0,0.0,0.0838446603479793,0.0142671505976251,0.000698586867626876,299,299,299 -"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689280990007572,0.0305681351269233,0.00132577267971387,0.15,0.15,0.15,0.0,0.0,0.0,0.0343443420505457,0.00387820063383894,0.000274661368602537,299,299,299 -"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689093861863916,0.0296110537390212,0.00131644237422315,0.15,0.15,0.15,0.0,0.0,0.0,0.0211285578989318,0.00231649664141576,0.000165651738363466,299,299,299 -"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689256854677127,0.0291649150740799,0.00131223585918137,0.15,0.15,0.15,0.0,0.0,0.0,0.0106130448865661,0.00118580102346143,8.31630810802384e-05,299,299,299 -"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689566841080693,0.0290653444493327,0.00131121026637596,0.15,0.15,0.15,0.0,0.0,0.0,0.00531405976841069,0.000594600258522409,4.16230901679743e-05,299,299,299 -"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933593761897754,0.0981489626394891,9.6152179391423e-05,0.15,0.15,0.15,0.0,0.0,0.0,0.0215254478073352,0.00483459319123489,0.00026949890522783,299,299,299 -"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978663125675657,0.0989257580393516,0.000105275523399884,0.15,0.15,0.15,0.0,0.0,0.0,0.00717703249976041,0.00256226754822786,0.000389459474472075,299,299,299 -"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987516401238551,0.0993225357711021,0.000147484971973629,0.15,0.15,0.15,0.0,0.0,0.0,0.00427788573686546,0.00162109623799643,0.000553365867077396,299,299,299 -"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993794422134329,0.0996324856702317,0.000656466531465015,0.15,0.15,0.15,0.0,0.0,0.0,0.00224062902080407,0.000844759432744937,0.000810756210816362,299,299,299 -"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996854528450748,0.099808203506191,0.000942189885356755,0.15,0.15,0.15,0.0,0.0,0.0,0.00122018417072544,0.000427560599255016,0.000905192804034703,299,299,299 +"221","IAR_LU_modified_mix","Artery",10,1,0.1,0.00299999999999999,0.933570848988992,0.0981805068105781,9.69093889944883e-05,0.01,0.01,0.01,0.0,0.0,0.0,0.0215342543426893,0.00482098138907883,0.00027316568035834,299,299,299 +"222","IAR_LU_modified_mix","Artery",30,1,0.1,0.00299999999999999,0.978660010508155,0.0989277747511537,0.000105702347593366,0.01,0.01,0.01,0.0,0.0,0.0,0.00717456694962925,0.00255925461853962,0.000390576167740346,299,299,299 +"223","IAR_LU_modified_mix","Artery",50,1,0.1,0.00299999999999999,0.987513355852953,0.0993146630813435,0.000111537271968229,0.01,0.01,0.01,0.0,0.0,0.0,0.00425068598657669,0.00163747345989128,0.000425759593662501,299,299,299 +"224","IAR_LU_modified_mix","Artery",100,1,0.1,0.00299999999999999,0.993798822519854,0.0996341503627457,0.00067451351062631,0.01,0.01,0.01,0.0,0.0,0.0,0.00224169924060188,0.000833637613746272,0.00083359048680711,299,299,299 +"225","IAR_LU_modified_mix","Artery",200,1,0.1,0.00299999999999999,0.996837881526941,0.0998131234824984,0.000952042039241386,0.01,0.01,0.01,0.0,0.0,0.0,0.001249893170354,0.000417998146329635,0.000912905291908255,299,299,299 +"226","IAR_LU_modified_mix","asc lower intestine",10,0.69,0.029,0.00131,0.701098146999056,0.0376846384692992,0.00123584558723118,0.01,0.01,0.01,0.0,0.0,0.0,0.0838529625204976,0.0142711329792211,0.000699901421058509,299,299,299 +"227","IAR_LU_modified_mix","asc lower intestine",30,0.69,0.029,0.00131,0.689270433829804,0.0305702921292171,0.00132592004287042,0.01,0.01,0.01,0.0,0.0,0.0,0.0343145030426862,0.00387902864928047,0.000274527203038461,299,299,299 +"228","IAR_LU_modified_mix","asc lower intestine",50,0.69,0.029,0.00131,0.689092920587044,0.0296106102396988,0.00131644357044935,0.01,0.01,0.01,0.0,0.0,0.0,0.0211233604764238,0.00231402306217761,0.000165698487313645,299,299,299 +"229","IAR_LU_modified_mix","asc lower intestine",100,0.69,0.029,0.00131,0.689244198890322,0.029166295196685,0.00131232083976971,0.01,0.01,0.01,0.0,0.0,0.0,0.0106229535802193,0.00118522391515315,8.31980645449237e-05,299,299,299 +"230","IAR_LU_modified_mix","asc lower intestine",200,0.69,0.029,0.00131,0.689566686914887,0.0290651339498258,0.00131119343859749,0.01,0.01,0.01,0.0,0.0,0.0,0.00530833271107002,0.000595638106375174,4.1614521102759e-05,299,299,299 +"231","IAR_LU_modified_mix","Blood RA",10,1,0.1,0.00299999999999999,0.933575987374375,0.0981725574835951,9.69018377906745e-05,0.01,0.01,0.01,0.0,0.0,0.0,0.0215257895568654,0.00483113629901814,0.000274130265421953,299,299,299 +"232","IAR_LU_modified_mix","Blood RA",30,1,0.1,0.00299999999999999,0.978662969533537,0.0989260889052865,0.000105300000732639,0.01,0.01,0.01,0.0,0.0,0.0,0.00717485114839342,0.00255795325769655,0.000390275453056785,299,299,299 +"233","IAR_LU_modified_mix","Blood RA",50,1,0.1,0.00299999999999999,0.987511739004263,0.0993298157024425,0.000132794280083072,0.01,0.01,0.01,0.0,0.0,0.0,0.00425069060397439,0.0015911575611717,0.000504854482002304,299,299,299 +"234","IAR_LU_modified_mix","Blood RA",100,1,0.1,0.00299999999999999,0.993790416523141,0.0996310212865855,0.000668232661096037,0.01,0.01,0.01,0.0,0.0,0.0,0.00225360117674088,0.000839393019600417,0.000811535376588593,299,299,299 +"235","IAR_LU_modified_mix","Blood RA",200,1,0.1,0.00299999999999999,0.996855535493298,0.0998158125367873,0.000899368064030819,0.01,0.01,0.01,0.0,0.0,0.0,0.00122656658519385,0.000422751162266688,0.000910077779013461,299,299,299 +"236","IAR_LU_modified_mix","Blood RV",10,1,0.1,0.003,0.933566610122185,0.0981787807085708,9.70611172703338e-05,0.01,0.01,0.01,0.0,0.0,0.0,0.021530161874902,0.00482648728122416,0.000275314576455366,299,299,299 +"237","IAR_LU_modified_mix","Blood RV",30,1,0.1,0.003,0.978662117043132,0.0989263773276916,0.000105450014645893,0.01,0.01,0.01,0.0,0.0,0.0,0.00717258006854822,0.00256082608071443,0.000390213653300988,299,299,299 +"238","IAR_LU_modified_mix","Blood RV",50,1,0.1,0.003,0.987501435172669,0.099328202590769,0.000143321105908456,0.01,0.01,0.01,0.0,0.0,0.0,0.0042494255353876,0.00160494769815741,0.000532773974790679,299,299,299 +"239","IAR_LU_modified_mix","Blood RV",100,1,0.1,0.003,0.993794323814746,0.0996364967198052,0.000621828868607648,0.01,0.01,0.01,0.0,0.0,0.0,0.00223204890758188,0.000833791395125412,0.000755680040057872,299,299,299 +"240","IAR_LU_modified_mix","Blood RV",200,1,0.1,0.003,0.996857901937908,0.0998074115641361,0.000932667960501076,0.01,0.01,0.01,0.0,0.0,0.0,0.00122897242482976,0.000426998046809806,0.000933797204745226,299,299,299 +"241","IAR_LU_modified_mix","desc lower intestine",10,0.69,0.029,0.00131,0.701145535646085,0.0376638219718699,0.00123540721625722,0.01,0.01,0.01,0.0,0.0,0.0,0.083796930049459,0.0142347099361935,0.000699577458908831,299,299,299 +"242","IAR_LU_modified_mix","desc lower intestine",30,0.69,0.029,0.00131,0.689263925418507,0.0305703664783724,0.00132595409827823,0.01,0.01,0.01,0.0,0.0,0.0,0.0343141207391388,0.00387514363578225,0.000274490525618896,299,299,299 +"243","IAR_LU_modified_mix","desc lower intestine",50,0.69,0.029,0.00131,0.689067045652208,0.0296139701994284,0.00131662404649655,0.01,0.01,0.01,0.0,0.0,0.0,0.021127494024743,0.00231722300632553,0.000165725358891943,299,299,299 +"244","IAR_LU_modified_mix","desc lower intestine",100,0.69,0.029,0.00131,0.689264642734075,0.0291646963628323,0.00131222141168724,0.01,0.01,0.01,0.0,0.0,0.0,0.0106155989160487,0.00118572275886623,8.30923169693225e-05,299,299,299 +"245","IAR_LU_modified_mix","desc lower intestine",200,0.69,0.029,0.00131,0.689578693620721,0.0290643988810149,0.00131114025379791,0.01,0.01,0.01,0.0,0.0,0.0,0.00533355200959244,0.000599004776094079,4.1718959275412e-05,299,299,299 +"246","IAR_LU_modified_mix","esophagus",10,0.32,0.03,0.00167,0.400527830593273,0.0447949636977544,0.0015426629492717,0.01,0.01,0.01,0.0,0.0,0.0,0.102469226197977,0.0260824649486422,0.000435811877077636,299,299,299 +"247","IAR_LU_modified_mix","esophagus",30,0.32,0.03,0.00167,0.337529946987892,0.0333132633421435,0.00164831554033642,0.01,0.01,0.01,0.0,0.0,0.0,0.0404883972521689,0.0096608144222792,0.000155056043499648,299,299,299 +"248","IAR_LU_modified_mix","esophagus",50,0.32,0.03,0.00167,0.327757008760631,0.0312887913494121,0.00165940742671238,0.01,0.01,0.01,0.0,0.0,0.0,0.0251829987126239,0.00506274182546082,9.39501132013033e-05,299,299,299 +"249","IAR_LU_modified_mix","esophagus",100,0.32,0.03,0.00167,0.32155824311201,0.0303795816066876,0.00166722178568304,0.01,0.01,0.01,0.0,0.0,0.0,0.0130040941720539,0.00246263456737367,4.72367409344804e-05,299,299,299 +"250","IAR_LU_modified_mix","esophagus",200,0.32,0.03,0.00167,0.320006741416008,0.0301152438308431,0.00166943707892514,0.01,0.01,0.01,0.0,0.0,0.0,0.00665600574442942,0.00124090994517614,2.37736615342511e-05,299,299,299 +"251","IAR_LU_modified_mix","esophagus cont",10,0.32,0.03,0.00167,0.400548979460758,0.0447739971059416,0.00154247856745977,0.01,0.01,0.01,0.0,0.0,0.0,0.102488763785933,0.0260631843402454,0.000435716369017007,299,299,299 +"252","IAR_LU_modified_mix","esophagus cont",30,0.32,0.03,0.00167,0.337471951892681,0.0333411057871392,0.00164849410210564,0.01,0.01,0.01,0.0,0.0,0.0,0.0404410994932849,0.0097339323009991,0.000155177312482306,299,299,299 +"253","IAR_LU_modified_mix","esophagus cont",50,0.32,0.03,0.00167,0.327773227014542,0.0312841862018564,0.00165938176779592,0.01,0.01,0.01,0.0,0.0,0.0,0.0252203796414001,0.00504667330126957,9.38841854255672e-05,299,299,299 +"254","IAR_LU_modified_mix","esophagus cont",100,0.32,0.03,0.00167,0.321628569189038,0.0303635496520416,0.00166699565123893,0.01,0.01,0.01,0.0,0.0,0.0,0.0130373570332147,0.00246481235226089,4.72845762933273e-05,299,299,299 +"255","IAR_LU_modified_mix","esophagus cont",200,0.32,0.03,0.00167,0.319962570453534,0.0301251544692642,0.00166958059421625,0.01,0.01,0.01,0.0,0.0,0.0,0.00664838833945276,0.00123023906420883,2.3632274966389e-05,299,299,299 +"256","IAR_LU_modified_mix","Left kidney cortex",10,0.097,0.02,0.00212,0.249532616991952,0.0474117748334815,0.00188136159657005,0.01,0.01,0.01,0.0,0.0,0.0,0.149602692179695,0.0328948654285501,0.000502337861275099,299,299,299 +"257","IAR_LU_modified_mix","Left kidney cortex",30,0.097,0.02,0.00212,0.152034132289475,0.0340311002318332,0.00204254497936777,0.01,0.01,0.01,0.0,0.0,0.0,0.0760353011732551,0.0271313066670539,0.000193836017179154,299,299,299 +"258","IAR_LU_modified_mix","Left kidney cortex",50,0.097,0.02,0.00212,0.125470720185733,0.0289410754570493,0.00208094800215627,0.01,0.01,0.01,0.0,0.0,0.0,0.0473913747039697,0.0222710733980788,0.000119613146630861,299,299,299 +"259","IAR_LU_modified_mix","Left kidney cortex",100,0.097,0.02,0.00212,0.109265063750681,0.0209832399432036,0.00210024709823131,0.01,0.01,0.01,0.0,0.0,0.0,0.0202157581391851,0.00821099980510626,5.54276205660732e-05,299,299,299 +"260","IAR_LU_modified_mix","Left kidney cortex",200,0.097,0.02,0.00212,0.10242582323802,0.0195951700506166,0.00210948179329922,0.01,0.01,0.01,0.0,0.0,0.0,0.00987254906396141,0.00307183611477733,2.73151096204985e-05,299,299,299 +"261","IAR_LU_modified_mix","left kidney medulla",10,0.158,0.019,0.00209,0.287742524780219,0.0469532718020942,0.00187799044025495,0.01,0.01,0.01,0.0,0.0,0.0,0.150597235131432,0.0330747939408189,0.000536819571838129,299,299,299 +"262","IAR_LU_modified_mix","left kidney medulla",30,0.158,0.019,0.00209,0.194864152021357,0.0298505046160489,0.00204397403174536,0.01,0.01,0.01,0.0,0.0,0.0,0.0709550598231138,0.0218441626546138,0.000204049937474551,299,299,299 +"263","IAR_LU_modified_mix","left kidney medulla",50,0.158,0.019,0.00209,0.174252668623799,0.0242567176575074,0.00207256455461566,0.01,0.01,0.01,0.0,0.0,0.0,0.0415254785739867,0.0130031350639763,0.000121538851820776,299,299,299 +"264","IAR_LU_modified_mix","left kidney medulla",100,0.158,0.019,0.00209,0.163278703698389,0.0203070180368319,0.00208414982352122,0.01,0.01,0.01,0.0,0.0,0.0,0.0211047448900031,0.00391292939047346,6.11095948149501e-05,299,299,299 +"265","IAR_LU_modified_mix","left kidney medulla",200,0.158,0.019,0.00209,0.158985685800923,0.0194178680288917,0.00208893183158285,0.01,0.01,0.01,0.0,0.0,0.0,0.0109797733360322,0.00193587711259381,3.13387637953475e-05,299,299,299 +"266","IAR_LU_modified_mix","Liver",10,0.11,0.1,0.0015,0.243028014795172,0.0624504804547779,0.00132518894905339,0.01,0.01,0.01,0.0,0.0,0.0,0.101060620928961,0.0343360464760076,0.00029607175246079,299,299,299 +"267","IAR_LU_modified_mix","Liver",30,0.11,0.1,0.0015,0.140783521867315,0.0802197298499024,0.00145852258385073,0.01,0.01,0.01,0.0,0.0,0.0,0.0328019767778551,0.0260027022120638,8.81257244158894e-05,299,299,299 +"268","IAR_LU_modified_mix","Liver",50,0.11,0.1,0.0015,0.12309553288397,0.087011797073023,0.00148129461844818,0.01,0.01,0.01,0.0,0.0,0.0,0.0184665708897472,0.0178616038531672,4.84916318562723e-05,299,299,299 +"269","IAR_LU_modified_mix","Liver",100,0.11,0.1,0.0015,0.113755042831202,0.092496271734274,0.00149247648359747,0.01,0.01,0.01,0.0,0.0,0.0,0.00969028027416998,0.0104792908886752,2.39190196817366e-05,299,299,299 +"270","IAR_LU_modified_mix","Liver",200,0.11,0.1,0.0015,0.111173313381198,0.0956746358547584,0.00149653870928575,0.01,0.01,0.01,0.0,0.0,0.0,0.00523804664463599,0.00574596456915193,1.19327104574067e-05,299,299,299 +"271","IAR_LU_modified_mix","Myocardium LV",10,0.15,0.08,0.0024,0.292668635997344,0.062818829057458,0.0020705594140065,0.01,0.01,0.01,0.0,0.0,0.0,0.127024838077414,0.033695107022932,0.00051687296022501,299,299,299 +"272","IAR_LU_modified_mix","Myocardium LV",30,0.15,0.08,0.0024,0.177738007442708,0.0766591400862628,0.00234659593498546,0.01,0.01,0.01,0.0,0.0,0.0,0.0363991942681653,0.0241051591436976,0.000152037081683733,299,299,299 +"273","IAR_LU_modified_mix","Myocardium LV",50,0.15,0.08,0.0024,0.160901941269485,0.0792910768978142,0.00237826197663998,0.01,0.01,0.01,0.0,0.0,0.0,0.0207910806480581,0.0182575625585446,8.78672690632462e-05,299,299,299 +"274","IAR_LU_modified_mix","Myocardium LV",100,0.15,0.08,0.0024,0.152028434882425,0.0806077342583237,0.00239450606346528,0.01,0.01,0.01,0.0,0.0,0.0,0.0108729706583398,0.0119809429203843,4.43777825041243e-05,299,299,299 +"275","IAR_LU_modified_mix","Myocardium LV",200,0.15,0.08,0.0024,0.150206783416951,0.080458243656439,0.00239857495114568,0.01,0.01,0.01,0.0,0.0,0.0,0.00575132425848615,0.00692426031645694,2.25733166882019e-05,299,299,299 +"276","IAR_LU_modified_mix","myocardium ra",10,0.07,0.07,0.0015,0.217418919228325,0.0548070101998308,0.0013307451983828,0.01,0.01,0.01,0.0,0.0,0.0,0.106804799716803,0.0336618413187429,0.000296301741999445,299,299,299 +"277","IAR_LU_modified_mix","myocardium ra",30,0.07,0.07,0.0015,0.114208154078613,0.0608871232569255,0.00144631390638784,0.01,0.01,0.01,0.0,0.0,0.0,0.0411190421325667,0.0320676577141246,9.70886494479196e-05,299,299,299 +"278","IAR_LU_modified_mix","myocardium ra",50,0.07,0.07,0.0015,0.0906970207097383,0.0663582796941316,0.00147515529989145,0.01,0.01,0.01,0.0,0.0,0.0,0.0229207872253836,0.0267997646460673,5.62258617109179e-05,299,299,299 +"279","IAR_LU_modified_mix","myocardium ra",100,0.07,0.07,0.0015,0.0763172598938093,0.0703012594964821,0.00149220525025731,0.01,0.01,0.01,0.0,0.0,0.0,0.0110844027223029,0.0204183212269255,2.75853755534046e-05,299,299,299 +"280","IAR_LU_modified_mix","myocardium ra",200,0.07,0.07,0.0015,0.0711873339802141,0.071012263736686,0.00149820353775491,0.01,0.01,0.01,0.0,0.0,0.0,0.0055185238958783,0.0123993133675178,1.32882110617675e-05,299,299,299 +"281","IAR_LU_modified_mix","myocardium RV",10,0.15,0.08,0.0024,0.29138759778007,0.0634523083963379,0.00207377386621988,0.01,0.01,0.01,0.0,0.0,0.0,0.127491855180917,0.0335129615024955,0.000515271773404712,299,299,299 +"282","IAR_LU_modified_mix","myocardium RV",30,0.15,0.08,0.0024,0.178536958838559,0.0761969761487833,0.00234416351526948,0.01,0.01,0.01,0.0,0.0,0.0,0.037118289610981,0.0245490154570805,0.000155277005363762,299,299,299 +"283","IAR_LU_modified_mix","myocardium RV",50,0.15,0.08,0.0024,0.160895174089521,0.079308982525226,0.00237829482641901,0.01,0.01,0.01,0.0,0.0,0.0,0.0207587562712371,0.018256477610219,8.78367262569577e-05,299,299,299 +"284","IAR_LU_modified_mix","myocardium RV",100,0.15,0.08,0.0024,0.152023667758396,0.080620281339839,0.00239451487846507,0.01,0.01,0.01,0.0,0.0,0.0,0.0108713546371183,0.0120024241632719,4.44037069107048e-05,299,299,299 +"285","IAR_LU_modified_mix","myocardium RV",200,0.15,0.08,0.0024,0.150201811438555,0.0804679869018945,0.00239859266134557,0.01,0.01,0.01,0.0,0.0,0.0,0.00574915351494362,0.00693083741874004,2.25884434304873e-05,299,299,299 +"286","IAR_LU_modified_mix","pancreas",10,0.15,0.01,0.00129999999999999,0.248344316684146,0.0432673370142827,0.00123766533339312,0.01,0.01,0.01,0.0,0.0,0.0,0.125891591299949,0.0329699372149749,0.000342302770815962,299,299,299 +"287","IAR_LU_modified_mix","pancreas",30,0.15,0.01,0.00129999999999999,0.182978537498608,0.0218247024322462,0.00127868929024059,0.01,0.01,0.01,0.0,0.0,0.0,0.0710746088228192,0.0220253009430336,0.000150137678081883,299,299,299 +"288","IAR_LU_modified_mix","pancreas",50,0.15,0.01,0.00129999999999999,0.170181818027131,0.0142758354390592,0.00128445720433125,0.01,0.01,0.01,0.0,0.0,0.0,0.0496827374528674,0.010487391275323,9.93712033705176e-05,299,299,299 +"289","IAR_LU_modified_mix","pancreas",100,0.15,0.01,0.00129999999999999,0.156715737470036,0.0112668739528815,0.00129575655051772,0.01,0.01,0.01,0.0,0.0,0.0,0.0275536230334743,0.00280742108219625,5.36023135630817e-05,299,299,299 +"290","IAR_LU_modified_mix","pancreas",200,0.15,0.01,0.00129999999999999,0.151437121859861,0.0104424292043013,0.00129973244445252,0.01,0.01,0.01,0.0,0.0,0.0,0.0141327834577345,0.00130396809535004,2.73624064797803e-05,299,299,299 +"291","IAR_LU_modified_mix","pericardium",10,0.07,0.00999999999999999,0.003,0.255261988113913,0.0476029149803136,0.00249957332698816,0.01,0.01,0.01,0.0,0.0,0.0,0.213516352912783,0.0336004006029444,0.000818256522450913,299,299,299 +"292","IAR_LU_modified_mix","pericardium",30,0.07,0.00999999999999999,0.003,0.149954394620714,0.0367555313016414,0.00284555491289821,0.01,0.01,0.01,0.0,0.0,0.0,0.157348120967762,0.0310398596126881,0.000395287731756426,299,299,299 +"293","IAR_LU_modified_mix","pericardium",50,0.07,0.00999999999999999,0.003,0.1339534949829,0.0327862235217742,0.00289288395593041,0.01,0.01,0.01,0.0,0.0,0.0,0.136955415476539,0.0314142302912386,0.00029147245816474,299,299,299 +"294","IAR_LU_modified_mix","pericardium",100,0.07,0.00999999999999999,0.003,0.122524582945071,0.0211547506974247,0.002924599490842,0.01,0.01,0.01,0.0,0.0,0.0,0.107189237240671,0.0251396358874472,0.000191708065414385,299,299,299 +"295","IAR_LU_modified_mix","pericardium",200,0.07,0.00999999999999999,0.003,0.0995911309067432,0.0126786513365091,0.00295805545905117,0.01,0.01,0.01,0.0,0.0,0.0,0.0716041461376219,0.0104213011105497,0.000118459951222743,299,299,299 +"296","IAR_LU_modified_mix","right kidney medulla",10,0.158,0.019,0.00209,0.28965165104317,0.0463222357611467,0.00186936701287237,0.01,0.01,0.01,0.0,0.0,0.0,0.154078461319228,0.0328064576871952,0.000545349997355686,299,299,299 +"297","IAR_LU_modified_mix","right kidney medulla",30,0.158,0.019,0.00209,0.194854321754547,0.0298774402228633,0.00204406121670449,0.01,0.01,0.01,0.0,0.0,0.0,0.0710477064913935,0.021838658216508,0.000204362249447335,299,299,299 +"298","IAR_LU_modified_mix","right kidney medulla",50,0.158,0.019,0.00209,0.174333154255163,0.0242263171075138,0.00207234463151042,0.01,0.01,0.01,0.0,0.0,0.0,0.0416722187207939,0.0129129541368736,0.000121772941577827,299,299,299 +"299","IAR_LU_modified_mix","right kidney medulla",100,0.158,0.019,0.00209,0.163226072290611,0.0203261755563394,0.00208431407512289,0.01,0.01,0.01,0.0,0.0,0.0,0.0212053684989626,0.0039277104912548,6.13121337896188e-05,299,299,299 +"300","IAR_LU_modified_mix","right kidney medulla",200,0.158,0.019,0.00209,0.159049278283893,0.0194069652468105,0.00208876391735952,0.01,0.01,0.01,0.0,0.0,0.0,0.0109419949541128,0.00194875599532487,3.12972557845455e-05,299,299,299 +"301","IAR_LU_modified_mix","Right kydney cortex",10,0.097,0.02,0.00212,0.248827535387845,0.048033430271864,0.00188349481680363,0.01,0.01,0.01,0.0,0.0,0.0,0.149269552893858,0.033107519813366,0.000503094490859781,299,299,299 +"302","IAR_LU_modified_mix","Right kydney cortex",30,0.097,0.02,0.00212,0.151607823307439,0.0342364378609477,0.00204368795416302,0.01,0.01,0.01,0.0,0.0,0.0,0.0762064458544891,0.0274568438882678,0.000194776269611553,299,299,299 +"303","IAR_LU_modified_mix","Right kydney cortex",50,0.097,0.02,0.00212,0.125960981401414,0.0286867772578075,0.00207984351985909,0.01,0.01,0.01,0.0,0.0,0.0,0.0477410849778633,0.0220333334458629,0.000119565433226195,299,299,299 +"304","IAR_LU_modified_mix","Right kydney cortex",100,0.097,0.02,0.00212,0.109362773523813,0.0209818010211308,0.00210003319968129,0.01,0.01,0.01,0.0,0.0,0.0,0.0203094933614173,0.00819641576176799,5.52133247059982e-05,299,299,299 +"305","IAR_LU_modified_mix","Right kydney cortex",200,0.097,0.02,0.00212,0.102568055468329,0.0195499671391283,0.00210914474464573,0.01,0.01,0.01,0.0,0.0,0.0,0.00996242367557439,0.00303162336859383,2.73320529798663e-05,299,299,299 +"306","IAR_LU_modified_mix","small intestine",10,0.69,0.029,0.00131,0.701198745993371,0.0376646732319215,0.00123518735746814,0.01,0.01,0.01,0.0,0.0,0.0,0.0837909479652782,0.0142461690833718,0.000699424013110354,299,299,299 +"307","IAR_LU_modified_mix","small intestine",30,0.69,0.029,0.00131,0.689300841326672,0.0305668152861243,0.00132574584949807,0.01,0.01,0.01,0.0,0.0,0.0,0.0343183473999597,0.00387502876228319,0.000274594881305669,299,299,299 +"308","IAR_LU_modified_mix","small intestine",50,0.69,0.029,0.00131,0.689071387792248,0.0296139387993788,0.00131660701698079,0.01,0.01,0.01,0.0,0.0,0.0,0.0211282716804542,0.0023189052398669,0.000165773235811395,299,299,299 +"309","IAR_LU_modified_mix","small intestine",100,0.69,0.029,0.00131,0.689250067287498,0.0291660422905695,0.00131230086413988,0.01,0.01,0.01,0.0,0.0,0.0,0.0106146402663469,0.00118555620015251,8.30742237340875e-05,299,299,299 +"310","IAR_LU_modified_mix","small intestine",200,0.69,0.029,0.00131,0.689567485944398,0.0290651227894702,0.00131119397071469,0.01,0.01,0.01,0.0,0.0,0.0,0.00531401069854208,0.00059651399766035,4.16089073023098e-05,299,299,299 +"311","IAR_LU_modified_mix","spleen",10,0.2,0.03,0.00129999999999999,0.307621156848986,0.0469076155274879,0.00118060377355725,0.01,0.01,0.01,0.0,0.0,0.0,0.0988607322094869,0.0292955180646468,0.000309765659919692,299,299,299 +"312","IAR_LU_modified_mix","spleen",30,0.2,0.03,0.00129999999999999,0.226714852861466,0.0357507274073965,0.00127427679153086,0.01,0.01,0.01,0.0,0.0,0.0,0.0384383786913669,0.0165816848974677,0.000105970591118997,299,299,299 +"313","IAR_LU_modified_mix","spleen",50,0.2,0.03,0.00129999999999999,0.212838874320091,0.0322032454380028,0.00128726842825159,0.01,0.01,0.01,0.0,0.0,0.0,0.0239815393630376,0.00841063284965137,6.46131376919829e-05,299,299,299 +"314","IAR_LU_modified_mix","spleen",100,0.2,0.03,0.00129999999999999,0.203929273047352,0.0305801767530657,0.0012955980448668,0.01,0.01,0.01,0.0,0.0,0.0,0.0123598551177239,0.00374491573593368,3.22521110237516e-05,299,299,299 +"315","IAR_LU_modified_mix","spleen",200,0.2,0.03,0.00129999999999999,0.200648735685256,0.0301543535588632,0.00129883471269564,0.01,0.01,0.01,0.0,0.0,0.0,0.00652106017908323,0.00187787952801339,1.62570791579883e-05,299,299,299 +"316","IAR_LU_modified_mix","st wall",10,0.3,0.012,0.0015,0.36558236650486,0.0335549189134318,0.00144208949425923,0.01,0.01,0.01,0.0,0.0,0.0,0.148377716167429,0.0277486623352778,0.000514732496951213,299,299,299 +"317","IAR_LU_modified_mix","st wall",30,0.3,0.012,0.0015,0.308785205390333,0.0165956722196164,0.00151095355032825,0.01,0.01,0.01,0.0,0.0,0.0,0.072535645486854,0.00798484774825925,0.000207239260593192,299,299,299 +"318","IAR_LU_modified_mix","st wall",50,0.3,0.012,0.0015,0.300767315042576,0.0141314102739456,0.00151398764425479,0.01,0.01,0.01,0.0,0.0,0.0,0.0460143131318849,0.00347183699601678,0.000127512452398774,299,299,299 +"319","IAR_LU_modified_mix","st wall",100,0.3,0.012,0.0015,0.29866515126707,0.0127455062410037,0.00150805628363623,0.01,0.01,0.01,0.0,0.0,0.0,0.024654596619276,0.00159193563761587,6.64482208125383e-05,299,299,299 +"320","IAR_LU_modified_mix","st wall",200,0.3,0.012,0.0015,0.29850635433234,0.0122508143217796,0.00150430836509382,0.01,0.01,0.01,0.0,0.0,0.0,0.0128440615061395,0.000753066031083087,3.39695397671074e-05,299,299,299 +"321","IAR_LU_modified_mix","trans lower intestine",10,0.69,0.029,0.00130999999999999,0.701159101129457,0.0376796685724961,0.0012352715721896,0.01,0.01,0.01,0.0,0.0,0.0,0.0838446603479793,0.0142671505976251,0.000698586867626876,299,299,299 +"322","IAR_LU_modified_mix","trans lower intestine",30,0.69,0.029,0.00130999999999999,0.689280990007572,0.0305681351269233,0.00132577267971387,0.01,0.01,0.01,0.0,0.0,0.0,0.0343443420505457,0.00387820063383894,0.000274661368602537,299,299,299 +"323","IAR_LU_modified_mix","trans lower intestine",50,0.69,0.029,0.00130999999999999,0.689093861863916,0.0296110537390212,0.00131644237422315,0.01,0.01,0.01,0.0,0.0,0.0,0.0211285578989318,0.00231649664141576,0.000165651738363466,299,299,299 +"324","IAR_LU_modified_mix","trans lower intestine",100,0.69,0.029,0.00130999999999999,0.689256854677127,0.0291649150740799,0.00131223585918137,0.01,0.01,0.01,0.0,0.0,0.0,0.0106130448865661,0.00118580102346143,8.31630810802384e-05,299,299,299 +"325","IAR_LU_modified_mix","trans lower intestine",200,0.69,0.029,0.00130999999999999,0.689566841080693,0.0290653444493327,0.00131121026637596,0.01,0.01,0.01,0.0,0.0,0.0,0.00531405976841069,0.000594600258522409,4.16230901679743e-05,299,299,299 +"326","IAR_LU_modified_mix","Vein",10,1,0.1,0.00299999999999999,0.933593761897754,0.0981489626394891,9.6152179391423e-05,0.01,0.01,0.01,0.0,0.0,0.0,0.0215254478073352,0.00483459319123489,0.00026949890522783,299,299,299 +"327","IAR_LU_modified_mix","Vein",30,1,0.1,0.00299999999999999,0.978663125675657,0.0989257580393516,0.000105275523399884,0.01,0.01,0.01,0.0,0.0,0.0,0.00717703249976041,0.00256226754822786,0.000389459474472075,299,299,299 +"328","IAR_LU_modified_mix","Vein",50,1,0.1,0.00299999999999999,0.987516401238551,0.0993225357711021,0.000147484971973629,0.01,0.01,0.01,0.0,0.0,0.0,0.00427788573686546,0.00162109623799643,0.000553365867077396,299,299,299 +"329","IAR_LU_modified_mix","Vein",100,1,0.1,0.00299999999999999,0.993794422134329,0.0996324856702317,0.000656466531465015,0.01,0.01,0.01,0.0,0.0,0.0,0.00224062902080407,0.000844759432744937,0.000810756210816362,299,299,299 +"330","IAR_LU_modified_mix","Vein",200,1,0.1,0.00299999999999999,0.996854528450748,0.099808203506191,0.000942189885356755,0.01,0.01,0.01,0.0,0.0,0.0,0.00122018417072544,0.000427560599255016,0.000905192804034703,299,299,299 "331","IAR_LU_modified_topopro","Artery",10,1,0.1,0.00299999999999999,0.92035647401652,0.125272817406689,0.000181720845862233,0.45,0.45,0.45,0.45,0.45,0.45,0.0224660880281578,0.0244335800895243,0.000580253884890183,299,299,299 "332","IAR_LU_modified_topopro","Artery",30,1,0.1,0.00299999999999999,0.974303994592552,0.106099273415976,0.000177399153276724,0.45,0.45,0.45,0.45,0.45,0.45,0.00748959242380132,0.00829547642308901,0.000678898057155221,299,299,299 "333","IAR_LU_modified_topopro","Artery",50,1,0.1,0.00299999999999999,0.984941576733294,0.103360683913922,0.000155910233527451,0.45,0.45,0.45,0.45,0.45,0.45,0.00447576445331793,0.00495498901620435,0.000644239667498075,299,299,299 From ff2cd757d49d66a1c21269706b26f5930e57e07f Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Thu, 4 Jan 2024 20:31:59 -0800 Subject: [PATCH 29/87] Add analysis badge to main page --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6f9c976..fc95001 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,4 @@ The **utils** folder contains various helpful tools. ## View Testing Reports [![Unit tests](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/unit_test.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/unit_test.yml) +[![Algorithm Analysis](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml) \ No newline at end of file From 63dd15345504633f9a622a0dabfd80de8d571f83 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Mon, 5 Feb 2024 21:36:40 -0800 Subject: [PATCH 30/87] Prevent tests from trying to run the example --- src/original/PvH_KB_NKI/DWI_Examples.py | 61 +++++++++++++------------ 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/src/original/PvH_KB_NKI/DWI_Examples.py b/src/original/PvH_KB_NKI/DWI_Examples.py index 75a0d7e..9e7d5b0 100644 --- a/src/original/PvH_KB_NKI/DWI_Examples.py +++ b/src/original/PvH_KB_NKI/DWI_Examples.py @@ -14,44 +14,47 @@ import matplotlib.pyplot as plt import pathlib -#Load some DWI data -file=pathlib.Path(__file__) -file_path = file.with_name('IVIM_b0_15_150_500.npy').as_posix() -DWI_data = np.load(file_path) +def example(): + #Load some DWI data + file=pathlib.Path(__file__) + file_path = file.with_name('IVIM_b0_15_150_500.npy').as_posix() + DWI_data = np.load(file_path) -# Specify b values that are in the data -bvalues = [0, 15, 150, 500] + # Specify b values that are in the data + bvalues = [0, 15, 150, 500] -# Specifiy if you want to plot the results -plot_results = False + # Specifiy if you want to plot the results + plot_results = False -# Generate ADC map and define the min and max b value that will be used for ADC fitting -ADClog, b0_intercept, used_bvalues = generate_ADC_standalone(DWI_data,bvalues, bmin=150, bmax=500) + # Generate ADC map and define the min and max b value that will be used for ADC fitting + ADClog, b0_intercept, used_bvalues = generate_ADC_standalone(DWI_data,bvalues, bmin=150, bmax=500) -# Generate ADC and define the min and max b value that will be used for ADC fitting as well as the max b value -# that will be used for separate Dstar fitting -ADClog, perfFrac, Dstar = generate_IVIMmaps_standalone(DWI_data, bvalues, bminADC=150, bmaxADC=500, bmaxDstar=150) -Slice = 5 + # Generate ADC and define the min and max b value that will be used for ADC fitting as well as the max b value + # that will be used for separate Dstar fitting + ADClog, perfFrac, Dstar = generate_IVIMmaps_standalone(DWI_data, bvalues, bminADC=150, bmaxADC=500, bmaxDstar=150) + Slice = 5 -if plot_results == True: - # Plot the ADC, f and D* maps - fig, axes = plt.subplots(1, 3, figsize=(10, 5)) + if plot_results == True: + # Plot the ADC, f and D* maps + fig, axes = plt.subplots(1, 3, figsize=(10, 5)) - axes[0].imshow(ADClog[:,Slice,:], cmap='viridis', vmin=0, vmax=5) - axes[0].set_title("ADC") - axes[0].axis('off') + axes[0].imshow(ADClog[:,Slice,:], cmap='viridis', vmin=0, vmax=5) + axes[0].set_title("ADC") + axes[0].axis('off') - axes[1].imshow(perfFrac[:,Slice,:], cmap='viridis', vmin=0, vmax=1) - axes[1].set_title("f map") - axes[1].axis('off') + axes[1].imshow(perfFrac[:,Slice,:], cmap='viridis', vmin=0, vmax=1) + axes[1].set_title("f map") + axes[1].axis('off') - axes[2].imshow(Dstar[:,Slice,:], cmap='viridis', vmin=0, vmax=200) - axes[2].set_title("D*") - axes[2].axis('off') + axes[2].imshow(Dstar[:,Slice,:], cmap='viridis', vmin=0, vmax=200) + axes[2].set_title("D*") + axes[2].axis('off') - plt.tight_layout() # Adjust spacing between subplots - plt.show() + plt.tight_layout() # Adjust spacing between subplots + plt.show() -print("finish") + print("finish") +if __name__ == '__main__': + example() From b8ee572e1ce5c359bcea4ab36921785a2a0297c3 Mon Sep 17 00:00:00 2001 From: Daan Kuppens <113351633+DKuppens@users.noreply.github.com> Date: Wed, 21 Feb 2024 15:57:40 +0100 Subject: [PATCH 31/87] clean HEAD --- phantoms/brain/data/ballistic_snr200.bval | 1 + phantoms/brain/data/ballistic_snr200.cval | 1 + phantoms/brain/data/diffusive_snr200.bval | 1 + tests/IVIMmodels/data/__init__.py | 0 tests/IVIMmodels/data/test_GenerateData.py | 71 ++++++++++++++++++++++ 5 files changed, 74 insertions(+) create mode 100644 phantoms/brain/data/ballistic_snr200.bval create mode 100644 phantoms/brain/data/ballistic_snr200.cval create mode 100644 phantoms/brain/data/diffusive_snr200.bval create mode 100644 tests/IVIMmodels/data/__init__.py create mode 100644 tests/IVIMmodels/data/test_GenerateData.py diff --git a/phantoms/brain/data/ballistic_snr200.bval b/phantoms/brain/data/ballistic_snr200.bval new file mode 100644 index 0000000..f0b9947 --- /dev/null +++ b/phantoms/brain/data/ballistic_snr200.bval @@ -0,0 +1 @@ +0 10 20 30 40 50 60 70 80 90 100 120 140 160 180 200 10 20 30 40 50 60 70 80 90 100 120 140 160 180 200 \ No newline at end of file diff --git a/phantoms/brain/data/ballistic_snr200.cval b/phantoms/brain/data/ballistic_snr200.cval new file mode 100644 index 0000000..4e00317 --- /dev/null +++ b/phantoms/brain/data/ballistic_snr200.cval @@ -0,0 +1 @@ +0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.471 0.666 0.816 0.942 1.054 1.154 1.247 1.333 1.414 1.490 1.632 1.763 1.885 1.999 2.107 \ No newline at end of file diff --git a/phantoms/brain/data/diffusive_snr200.bval b/phantoms/brain/data/diffusive_snr200.bval new file mode 100644 index 0000000..9e2729c --- /dev/null +++ b/phantoms/brain/data/diffusive_snr200.bval @@ -0,0 +1 @@ +0 10 20 30 40 80 110 140 170 200 300 400 500 600 700 800 900 \ No newline at end of file diff --git a/tests/IVIMmodels/data/__init__.py b/tests/IVIMmodels/data/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/IVIMmodels/data/test_GenerateData.py b/tests/IVIMmodels/data/test_GenerateData.py new file mode 100644 index 0000000..9e65849 --- /dev/null +++ b/tests/IVIMmodels/data/test_GenerateData.py @@ -0,0 +1,71 @@ +import numpy as np +import numpy.testing as npt +import pytest +#import torch + +from utilities.data_simulation.GenerateData import GenerateData + +#run using python -m pytest from the root folder + +test_monoexponential_data = [ + pytest.param(0, np.linspace(0, 1000, 11), id='0'), + pytest.param(0.1, np.linspace(0, 1000, 11), id='0.1'), + pytest.param(0.2, np.linspace(0, 1000, 11), id='0.2'), + pytest.param(0.3, np.linspace(0, 1000, 11), id='0.3'), + pytest.param(0.4, np.linspace(0, 1000, 11), id='0.4'), + pytest.param(0.5, np.linspace(0, 1000, 11), id='0.5'), + pytest.param(0.8, np.linspace(0, 1000, 11), id='0.8'), + pytest.param(1, np.linspace(0, 1000, 11), id='1'), +] +@pytest.mark.parametrize("D, bvals", test_monoexponential_data) +def test_monoexponential(D, bvals): + gd = GenerateData() + gd_signal = gd.exponential_signal(D, bvals) + testing_signal = np.exp(-D * np.asarray(bvals, dtype='float64')) + npt.assert_allclose(gd_signal, testing_signal) + assert(gd_signal[0] >= testing_signal[0]) + +test_ivim_data = [ + pytest.param(0.01, 0.0, 1, 1, np.linspace(0, 1000, 11), None, False), + pytest.param(0.01, 0.1, 0.05, 1, np.linspace(0, 1000, 11), None, False), + pytest.param(0.05, 0.2, 0.1, 1, np.linspace(0, 800, 11), None, False), + pytest.param(0.04, 0.15, 0.25, 1.5, np.linspace(0, 1000, 2), 10, True), + pytest.param(0.1, 0.5, 0.5, 0.5, np.linspace(0, 1500, 5), 100, True), + pytest.param(0.01, 0.2, 0.1, 1, np.linspace(10, 1500, 11), 100, False), + pytest.param(0.1, 0.15, 0.05, 1, np.linspace(10, 1000, 8), 5, False) +] +@pytest.mark.parametrize('D, Dp, f, S0, bvals, snr, rician_noise', test_ivim_data) +def test_ivim(D, Dp, f, S0, bvals, snr, rician_noise): + gd = GenerateData() + gd_signal = gd.ivim_signal(D, Dp, f, S0, bvals, snr, rician_noise) + testing_signal = S0 * ((1 - f) * np.exp(-D * bvals) + f * np.exp(-Dp * bvals)) + atol = 0.0 + if snr is not None: + atol = 4 / snr + npt.assert_allclose(gd_signal, testing_signal, atol=atol) + + +test_linear_data = [ + pytest.param(0, np.linspace(0, 1000, 11), 0, id='0'), + pytest.param(0.1, np.linspace(0, 1000, 11), 10, id='0.1'), + pytest.param(0.2, np.linspace(0, 1000, 11), -10, id='0.2'), + pytest.param(0.3, np.linspace(0, 1000, 11), 0, id='0.3'), + pytest.param(0.4, np.linspace(0, 1000, 11), 0, id='0.4'), + pytest.param(0.5, np.linspace(0, 1000, 11), 0, id='0.5'), + pytest.param(0.8, np.linspace(0, 1000, 11), 0, id='0.8'), + pytest.param(1, np.linspace(0, 1000, 11), 0, id='1'), +] +@pytest.mark.parametrize("D, bvals, offset", test_linear_data) +def test_linear(D, bvals, offset): + gd = GenerateData() + gd_signal = gd.linear_signal(D, bvals, offset) + testing_signal = -D * np.asarray(bvals, dtype='float64') + testing_signal += offset + npt.assert_allclose(gd_signal, testing_signal) + assert(gd_signal[0] >= testing_signal[0]) + + gd_exponential = gd.exponential_signal(D, bvals) + gd_log_exponential = np.log(gd_exponential) + offset + real_mask = np.isfinite(gd_log_exponential) + + npt.assert_allclose(gd_log_exponential[real_mask], gd_signal[real_mask]) From 8d918db2367e3d34583e31c6e0b597c54bc01612 Mon Sep 17 00:00:00 2001 From: Adarsh Date: Thu, 22 Feb 2024 21:28:00 +0530 Subject: [PATCH 32/87] [feat] Added Issue template to repository --- .github/ISSUE_TEMPLATE/bug_report.yml | 59 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 39 ++++++++++++++ .gitignore | 3 +- 3 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..691907f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,59 @@ +name: 🐞 Bug report +description: Create a report to help us improve (use this to report bugs only). +title: "[BUG] " +labels: [🐞 bug] +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. Include images if relevant. + placeholder: A bug happened! + validations: + required: true + - type: textarea + attributes: + label: Screenshots [optional] + description: | + Add screenshots to help explain your problem. You can also add a video here. + + Tip: You can attach images or video files by clicking this area to highlight it and then dragging files in. + validations: + required: false + - type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the bug. + placeholder: | + 1. Visit '...' + 2. Click on '...' + 3. Scroll to '...' + 4. See error + validations: + required: true + - type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen + validations: + required: true + - type: textarea + attributes: + label: Additional context + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + validations: + required: false + - type: dropdown + id: assign + attributes: + label: Are you working on this? + options: + - "Yes" + - "No" diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..368ba17 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,39 @@ +name: ✨ Idea [Feature request] +description: Tell us about the idea you have ! +title: "[Feature] <title>" +labels: [idea] +body: + - type: markdown + attributes: + value: | + Your suggestions are highly valuable. + - type: textarea + attributes: + label: Feature description + description: | + Is your feature request related to a problem? A clear and concise description of what the feature is. + validations: + required: true + - type: textarea + attributes: + label: Describe the solution + description: A clear and concise description of what you want to happen. + validations: + required: true + - type: textarea + attributes: + label: Describe alternatives + description: | + A clear and concise description of any alternative solutions or features you have considered. + - type: textarea + attributes: + label: Additional context + description: | + Add any other additional context or screenshots about the feature request here. + - type: dropdown + id: assign + attributes: + label: Are you working on this? + options: + - "Yes" + - "No" diff --git a/.gitignore b/.gitignore index bb81d77..a05cefe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .idea* -.github* +.github/* +!.github/ISSUE_TEMPLATE/ __pycache__/ *.nii.gz bvals.txt From d54ab4566973de15464a8ce62bf42967e38039a0 Mon Sep 17 00:00:00 2001 From: Adarsh <Adarshbunny293@gmail.com> Date: Thu, 22 Feb 2024 21:44:19 +0530 Subject: [PATCH 33/87] [feat] Added PR template --- .github/pull_request_template.md | 13 +++++++++++++ .gitignore | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..2e17909 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ +### Describe the changes you have made in this PR + +_A clear and concise description of what you want to happen_ + +### Link this PR to an issue [optional] + +Fixes _#ISSUE-NUMBER_ + +### Checklist + +- [ ] Self-review of changed code +- [ ] Added automated tests where applicable +- [ ] Update Docs & Guides \ No newline at end of file diff --git a/.gitignore b/.gitignore index bb81d77..9c235c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .idea* -.github* +.github/* +!.github/pull_request_template.md __pycache__/ *.nii.gz bvals.txt From fcf80c953ed2b439c1c061b084b1cd5855e73bac Mon Sep 17 00:00:00 2001 From: Daan Kuppens <113351633+DKuppens@users.noreply.github.com> Date: Fri, 23 Feb 2024 14:26:00 +0100 Subject: [PATCH 34/87] Clean HEAD pt 2 From a9cc38846b304216c437c008a35df81d2f10125f Mon Sep 17 00:00:00 2001 From: Daan Kuppens <113351633+DKuppens@users.noreply.github.com> Date: Fri, 23 Feb 2024 14:35:41 +0100 Subject: [PATCH 35/87] update gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 11ec569..d3420ab 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,10 @@ .github/pull_request_template.md __pycache__/ *.nii.gz +*.nii +*.dcm +*.mat +*.raw bvals.txt # Unit test / coverage reports .tox/ From e0602fc5a8f00cec4f470106fcc478e541b7a7aa Mon Sep 17 00:00:00 2001 From: "ang.a" <ang.a@bm.technion.ac.il> Date: Mon, 26 Feb 2024 12:38:29 +0200 Subject: [PATCH 36/87] added super ivim dc --- .../TCML_TechnionIIT/SUPER-IVIM-DC/README.md | 21 +++ .../SUPER-IVIM-DC/sample.ipynb | 167 ++++++++++++++++++ 2 files changed, 188 insertions(+) create mode 100644 src/original/TCML_TechnionIIT/SUPER-IVIM-DC/README.md create mode 100644 src/original/TCML_TechnionIIT/SUPER-IVIM-DC/sample.ipynb diff --git a/src/original/TCML_TechnionIIT/SUPER-IVIM-DC/README.md b/src/original/TCML_TechnionIIT/SUPER-IVIM-DC/README.md new file mode 100644 index 0000000..fe191ef --- /dev/null +++ b/src/original/TCML_TechnionIIT/SUPER-IVIM-DC/README.md @@ -0,0 +1,21 @@ +# SUPER-IVIM-DC + +Provided here is a sample Jupyter notebook for the SUPER-IVIM-DC package. + +Full README and usage instructions can be found here: https://github.com/TechnionComputationalMRILab/SUPER-IVIM-DC or https://pypi.org/project/super-ivim-dc/0.4.0/ + +Citation: + +``` +@article{ + Korngut_Rotman_Afacan_Kurugol_Zaffrani-Reznikov_Nemirovsky-Rotman_Warfield_Freiman_2022, + title={SUPER-IVIM-DC: Intra-voxel incoherent motion based fetal lung maturity assessment from limited DWI data using supervised learning coupled with data-consistency}, + volume={13432}, DOI={10.1007/978-3-031-16434-7_71}, + journal={Lecture Notes in Computer Science}, + author={Korngut, Noam and Rotman, Elad and Afacan, Onur and Kurugol, Sila and Zaffrani-Reznikov, Yael and Nemirovsky-Rotman, Shira and Warfield, Simon and Freiman, Moti}, + year={2022}, + pages={743–752} +} +``` + +[The paper is also available on ArXiv](https://arxiv.org/abs/2206.03820). diff --git a/src/original/TCML_TechnionIIT/SUPER-IVIM-DC/sample.ipynb b/src/original/TCML_TechnionIIT/SUPER-IVIM-DC/sample.ipynb new file mode 100644 index 0000000..90dae5b --- /dev/null +++ b/src/original/TCML_TechnionIIT/SUPER-IVIM-DC/sample.ipynb @@ -0,0 +1,167 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "working_dir: str = './working_dir'\n", + "super_ivim_dc_filename: str = 'super_ivim_dc' # do not include .pt\n", + "ivimnet_filename: str = 'ivimnet' # do not include .pt\n", + "\n", + "bvalues = np.array([0,15,30,45,60,75,90,105,120,135,150,175,200,400,600,800])\n", + "snr = 10\n", + "sample_size = 100" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Simulate" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Run training, generate .pt files" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from super_ivim_dc.train import train\n", + "\n", + "train(\n", + " SNR=snr, \n", + " bvalues=bvalues, \n", + " super_ivim_dc=True,\n", + " ivimnet=True,\n", + " work_dir=working_dir,\n", + " super_ivim_dc_filename=super_ivim_dc_filename,\n", + " ivimnet_filename=ivimnet_filename,\n", + " verbose=False\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Files that will be created:\n", + "\n", + "- **super_ivim_dc_init.json** - contains the initial values used in the training\n", + "- **super_ivim_dc_init_NRMSE.csv** - ???\n", + "- **super_ivim_dc_init.pt** - the pytorch model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Test\n", + "\n", + "Generate a simulated signal + ..." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from super_ivim_dc.infer import test_infer\n", + "\n", + "test_infer(\n", + " SNR=snr,\n", + " bvalues=bvalues,\n", + " work_dir=working_dir,\n", + " super_ivim_dc_filename=super_ivim_dc_filename,\n", + " ivimnet_filename=ivimnet_filename,\n", + " save_figure_to=None, # if set to None, the figure will be shown in the notebook\n", + " sample_size=sample_size,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Generate simulated signal" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from super_ivim_dc.IVIMNET import simulations\n", + "\n", + "IVIM_signal_noisy, Dt, f, Dp = simulations.sim_signal(\n", + " SNR=snr, \n", + " bvalues=bvalues, \n", + " sims=sample_size\n", + ")\n", + "\n", + "Dt, f, Dp = np.squeeze(Dt), np.squeeze(f), np.squeeze(Dp)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Run inference on the simulated signal" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from super_ivim_dc.infer import infer_from_signal\n", + "\n", + "Dp_ivimnet, Dt_ivimnet, Fp_ivimnet, S0_ivimnet = infer_from_signal(\n", + " signal=IVIM_signal_noisy, \n", + " bvalues=bvalues,\n", + " model_path=f\"{working_dir}/{ivimnet_filename}.pt\",\n", + ")\n", + "\n", + "Dp_superivimdc, Dt_superivimdc, Fp_superivimdc, S0_superivimdc = infer_from_signal(\n", + " signal=IVIM_signal_noisy, \n", + " bvalues=bvalues,\n", + " model_path=f\"{working_dir}/{super_ivim_dc_filename}.pt\",\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "super_ivim_dc", + "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.10.12" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} From dd0216285053907076359b491b080cf7d356e486 Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Tue, 27 Feb 2024 23:31:36 +0200 Subject: [PATCH 37/87] Add pytest to requirements.txt --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index acb0486..1f53cb7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,5 @@ joblib dipy matplotlib scienceplots -cvxpy \ No newline at end of file +cvxpy +pytest \ No newline at end of file From 35848fc0126d6508485c1547321094e3379ca571 Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Tue, 27 Feb 2024 23:39:27 +0200 Subject: [PATCH 38/87] Add tqdm to requirements.txt --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1f53cb7..382e3c9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,5 @@ dipy matplotlib scienceplots cvxpy -pytest \ No newline at end of file +pytest +tqdm \ No newline at end of file From 64db15898f75f665800d58b52e739e3b5cf1eb65 Mon Sep 17 00:00:00 2001 From: Oliver Gurney-Champion <oliverchampion@gmail.com> Date: Wed, 28 Feb 2024 10:02:26 +0100 Subject: [PATCH 39/87] automated downloading from zenodo --- .gitignore | 6 +++++ phantoms/MR_XCAT_qMRI/sim_ivim_sig.py | 6 +++-- requirements.txt | 3 ++- utilities/data_simulation/Download_data.py | 29 ++++++++++++++++++++++ 4 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 utilities/data_simulation/Download_data.py diff --git a/.gitignore b/.gitignore index d3420ab..f494295 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,12 @@ __pycache__/ *.mat *.raw bvals.txt +download +md5sums.txt +*.gz +*.zip +*.tmp + # Unit test / coverage reports .tox/ .coverage diff --git a/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py b/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py index 85eed4a..2ac69c5 100644 --- a/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py +++ b/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py @@ -2,13 +2,15 @@ from scipy.io import loadmat import nibabel as nib import json +from utilities.data_simulation.Download_data import download_data ########## # code written by Oliver J Gurney-Champion # code adapted from MAtlab code by Eric Schrauben: https://github.com/schrau24/XCAT-ERIC # This code generates a 4D IVIM phantom as nifti file -def phantom(bvalue, noise, TR=8000, TE=80, motion=False, rician=False, interleaved=False): +def phantom(bvalue, noise, TR=3000, TE=40, motion=False, rician=False, interleaved=False): + download_data() np.random.seed(42) if motion: states = range(1,21) @@ -16,7 +18,7 @@ def phantom(bvalue, noise, TR=8000, TE=80, motion=False, rician=False, interleav states = [1] for state in states: # Load the .mat file - mat_data = loadmat('XCAT_MAT_RESP/XCAT5D_RP_' + str(state) + '_CP_1.mat') + mat_data = loadmat('../../download/Phantoms/XCAT_MAT_RESP/XCAT5D_RP_' + str(state) + '_CP_1.mat') # Access the variables in the loaded .mat file XCAT = mat_data['IMG'] diff --git a/requirements.txt b/requirements.txt index acb0486..7f9a8e4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,5 @@ joblib dipy matplotlib scienceplots -cvxpy \ No newline at end of file +cvxpy +zenodo-get \ No newline at end of file diff --git a/utilities/data_simulation/Download_data.py b/utilities/data_simulation/Download_data.py new file mode 100644 index 0000000..95f1c7a --- /dev/null +++ b/utilities/data_simulation/Download_data.py @@ -0,0 +1,29 @@ +import zipfile +import os +import subprocess +import time + +def download_data(force=False): + # Check if the folder exists, and create it if not + base_folder = os.path.abspath(os.path.dirname(__file__)) + base_folder = os.path.split(os.path.split(base_folder)[0])[0] + if not os.path.exists(os.path.join(base_folder,'download')): + os.makedirs(os.path.join(base_folder,'download')) + print(f"Folder '{'download'}' created.") + # Change to the specified folder + os.chdir(os.path.join(base_folder,'download')) + subprocess.run(["zenodo_get", 'https://zenodo.org/records/10696605']) + while not os.path.exists('OSIPI_TF24_data_phantoms.zip'): + time.sleep(1) + # Open the zip file + if force or not os.path.exists('Data'): + with zipfile.ZipFile('OSIPI_TF24_data_phantoms.zip', 'r') as zip_ref: + # Extract all the contents to the destination folder + zip_ref.extractall('.') + while not os.path.exists('Data'): + time.sleep(10) + while not os.path.exists('Phantoms'): + time.sleep(10) + while not os.path.exists('Utilities'): + time.sleep(10) + time.sleep(10) \ No newline at end of file From 2a8de37a32d99173d218af0fdb1eaf80bf025dca Mon Sep 17 00:00:00 2001 From: Oliver Gurney-Champion <oliverchampion@gmail.com> Date: Wed, 28 Feb 2024 12:33:20 +0100 Subject: [PATCH 40/87] fixed the waiting --- phantoms/MR_XCAT_qMRI/generic.json | 596 +++++++++++++++++++++ utilities/data_simulation/Download_data.py | 30 +- 2 files changed, 616 insertions(+), 10 deletions(-) create mode 100644 phantoms/MR_XCAT_qMRI/generic.json diff --git a/phantoms/MR_XCAT_qMRI/generic.json b/phantoms/MR_XCAT_qMRI/generic.json new file mode 100644 index 0000000..47fcb3e --- /dev/null +++ b/phantoms/MR_XCAT_qMRI/generic.json @@ -0,0 +1,596 @@ +{ + "Myocardium LV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.08, + "data": [ + 0.37020853964957995, + 0.36495023994839576, + 0.36040161395777776, + 0.3482649413062642, + 0.3311252519245551, + 0.31128471484956144, + 0.29753771205592827, + 0.27895404495875237, + 0.2627838930390298, + 0.24600672258762385, + 0.21960592872343127, + 0.17325350570406992, + 0.13578433027277387, + 0.12026630133722724, + 0.08269998770527108, + 0.0583466003590057, + 0.04025758982493964, + 0.028838742483508213 + ] + }, + "myocardium RV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.07999999999999999, + "data": [ + 0.36977273246921033, + 0.36537365912605413, + 0.3595159042305869, + 0.34752698949768374, + 0.33173079647378234, + 0.3110608405629893, + 0.29805095418985367, + 0.27952927870925937, + 0.2623759963395676, + 0.2465802608039568, + 0.2205672287951045, + 0.17374944003807846, + 0.13502827555889882, + 0.12066297243669499, + 0.0836121527856757, + 0.05884198664879518, + 0.041489689098644505, + 0.028319859045401394 + ] + }, + "myocardium ra": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.07000000000000002, + "Dp": 0.07000000000000002, + "data": [ + 0.3702523127001939, + 0.36755530947936665, + 0.3655092171111401, + 0.3587682397967246, + 0.35132224032603726, + 0.34087328451399485, + 0.3322050929514831, + 0.31948125995637927, + 0.30728799801895257, + 0.29586365531065567, + 0.2747381860006265, + 0.23736891610574076, + 0.20330679507798272, + 0.18899390991911522, + 0.15183897083022813, + 0.11947654863593715, + 0.0961082153184848, + 0.07618502040438892 + ] + }, + "Blood RV": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 1.0, + "Dp": 0.1, + "data": [ + 0.677301342624779, + 0.6130133898159349, + 0.5549567775209086, + 0.41065608429951045, + 0.2485679217237561, + 0.09152471508006849, + 0.03422606076706993, + 0.004391344655692806, + -0.0004185323666306052, + 0.00020745211260014227, + 9.950041472725093e-05, + 0.00033731346702161615, + -0.0004581887966317206, + 3.932025610280517e-05, + 0.0007977517497581966, + -9.674856879304352e-05, + -0.0007204219029777662, + -0.00010866334273215243 + ] + }, + "Blood RA": { + "noise": 0.0005, + "D": 0.0029999999999999996, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6784642687872807, + 0.6135371749705592, + 0.5551735492299803, + 0.41181139461379773, + 0.24923005810598367, + 0.0905737104418847, + 0.03324974683655229, + 0.005422829610804135, + 0.0013661550851885077, + -0.00010124567605655351, + -0.0006196825747740377, + -0.000911449851230475, + 4.552359004633976e-06, + 0.00045058131568997706, + -0.0004429879455544712, + 0.00023402108507587148, + 0.0008873455071852579, + -0.0003493718684806242 + ] + }, + "Liver": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.11000000000000007, + "Dp": 0.1, + "data": [ + 0.37644062169477893, + 0.371115117353656, + 0.36798803216272463, + 0.3563630296133899, + 0.34430083828665475, + 0.3305305220923983, + 0.32121589864643874, + 0.31021138144645133, + 0.2996519813313952, + 0.2888296713839647, + 0.26634894381522295, + 0.2295414217850189, + 0.19733765396620417, + 0.18300505660775412, + 0.14688917007993096, + 0.11692921826028478, + 0.09269938996801896, + 0.07467525539976995 + ] + }, + "esophagus": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.3753101276497989, + 0.3713469825141738, + 0.36803668924761473, + 0.3561556517999572, + 0.3410493434981523, + 0.312875733963923, + 0.2915459261606361, + 0.2619677127542891, + 0.2379894063171585, + 0.2220458838581158, + 0.20015512076970554, + 0.167462024291482, + 0.1419784752197659, + 0.12989774418311542, + 0.10234154394160747, + 0.07930446754031786, + 0.06123140413656936, + 0.04776773648205296 + ] + }, + "esophagus cont": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.3760315571859291, + 0.3725261933502136, + 0.36878021796360194, + 0.35652169522898713, + 0.3386052646291958, + 0.31298259260039146, + 0.2928970721524276, + 0.2612959247167766, + 0.2382862271311805, + 0.2221373527772841, + 0.19937350825944655, + 0.16883993353226331, + 0.1424158552974854, + 0.13071358852326218, + 0.10173994625115453, + 0.07945195698352943, + 0.06243534663610846, + 0.04800948764844827 + ] + }, + "st wall": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.29999999999999993, + "Dp": 0.012, + "data": [ + 0.3105272130104086, + 0.30885201953001484, + 0.3066269481129629, + 0.30274552065133936, + 0.2970795427045135, + 0.28499419004804777, + 0.2721728976730253, + 0.2524099337210839, + 0.23227124641480215, + 0.21525891994887883, + 0.18857776603497192, + 0.15443116579283125, + 0.12956411859096137, + 0.12018541366739759, + 0.09540290797868664, + 0.07646151871825584, + 0.060893544180195436, + 0.04844739095700899 + ] + }, + "pancreas": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.14999999999999997, + "Dp": 0.01, + "data": [ + 0.38790324491892814, + 0.3876291514843242, + 0.3863839489641638, + 0.38184405158251805, + 0.37867596311248974, + 0.3689126014097869, + 0.3601658251421809, + 0.3440753290932671, + 0.3259555478039212, + 0.3108907244841228, + 0.28514614179625436, + 0.24288623561383582, + 0.21079763700687396, + 0.19761965397168216, + 0.16190527129917393, + 0.13253969244152558, + 0.109498174630867, + 0.08988893299758294 + ] + }, + "Right kydney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999998, + "Dp": 0.02, + "data": [ + 0.5030626944055995, + 0.5001783921023092, + 0.4985206880919477, + 0.492235006203061, + 0.48382939238999034, + 0.46674631174303693, + 0.45237002678781385, + 0.42517107069931875, + 0.3973789957969744, + 0.3735484160962404, + 0.33239356651908736, + 0.2673529892425856, + 0.2154960685494099, + 0.1945665171600742, + 0.14102135574910862, + 0.10311364289145247, + 0.07456438398815092, + 0.053873627732706555 + ] + }, + "right kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999993, + "data": [ + 0.5203928163478555, + 0.5172834129714686, + 0.5154181766280577, + 0.508955947597674, + 0.4971665082609214, + 0.4765617297025814, + 0.4573353186594755, + 0.42798670009145867, + 0.3943814733854753, + 0.3678576959819498, + 0.3252024786031681, + 0.26093704038103643, + 0.2115158499487909, + 0.18986472099830365, + 0.1390757149598466, + 0.10175501422229921, + 0.0745403006178045, + 0.052954602248849326 + ] + }, + "Left kidney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999999, + "Dp": 0.019999999999999997, + "data": [ + 0.5024240367317072, + 0.49941258148509743, + 0.49805356407147056, + 0.4933194896159733, + 0.4840457529958473, + 0.4671852397846339, + 0.4521452680285715, + 0.42623711775650924, + 0.39725715329568395, + 0.37409027153921703, + 0.33217873975195317, + 0.26745366222903283, + 0.2157809336394279, + 0.19374765229746826, + 0.14049376483280698, + 0.10331460090984186, + 0.07440145499843141, + 0.05433448953174809 + ] + }, + "left kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999996, + "data": [ + 0.5194415728735972, + 0.517785604911926, + 0.5160301137297539, + 0.5081161819938502, + 0.4974616266593506, + 0.47681810747989994, + 0.4598785042642553, + 0.426137868936134, + 0.3953829313238142, + 0.3677361403989122, + 0.3248430621293657, + 0.26051271974899165, + 0.21029843278003593, + 0.18956042616225802, + 0.13923061439172535, + 0.10158270890079638, + 0.07404360800306067, + 0.055028684479409715 + ] + }, + "spleen": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.19999999999999998, + "Dp": 0.03000000000000001, + "data": [ + 0.46403850509317707, + 0.4599668139828373, + 0.4565050796135784, + 0.44775979510680575, + 0.4345571535066183, + 0.4116569011496948, + 0.39401165243513436, + 0.36774444861522015, + 0.3458271948654471, + 0.3294233615718273, + 0.30667603611837396, + 0.2674562035665486, + 0.23547634319485394, + 0.2201515745336398, + 0.1820120108467682, + 0.15000995189601307, + 0.12245722367383773, + 0.10106629985396444 + ] + }, + "Artery": { + "noise": 0.0005, + "D": 0.0029999999999999988, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6337138315409772, + 0.5730640187126045, + 0.5183053356244033, + 0.3835360405875329, + 0.23327858900709256, + 0.08548411122886704, + 0.03274861224071262, + 0.004777343857924789, + -0.000449472156073272, + 5.179481905995705e-06, + -0.0010595279088828175, + -0.0006967437546476321, + -3.6242741924784856e-05, + 0.0005019818951829742, + 0.0002644131825217677, + 0.00033417919268772877, + -0.00015136505885203394, + -0.00014363487647375497 + ] + }, + "Vein": { + "noise": 0.0005, + "D": 0.002999999999999999, + "f": 1.0, + "Dp": 0.09999999999999999, + "data": [ + 0.4607963898556654, + 0.4179229700550046, + 0.37789838853010355, + 0.2801168902809804, + 0.16939227145540162, + 0.06189817013733823, + 0.023234302719618776, + 0.0030315754490075016, + 0.0004901589324770273, + -0.0017004095520137548, + -0.0006037240267850347, + 0.000715049096502115, + -0.0003164388537626677, + -0.0005602932388408961, + -0.0008540747545262273, + 0.0002894370905108141, + 0.00025097542893550535, + 2.7938226096782815e-05 + ] + }, + "asc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.028999999999999998, + "data": [ + 0.3764379461802061, + 0.368753536776957, + 0.3615610786383218, + 0.33986742552616955, + 0.3095708519923003, + 0.2586587529807586, + 0.2202675756946041, + 0.16913677227038204, + 0.13574910542040988, + 0.1159470963724909, + 0.09938984553504218, + 0.08421083881621177, + 0.07348586276743577, + 0.06974475141764117, + 0.05688849653030074, + 0.046677147601082956, + 0.03797211333797915, + 0.031179088207270982 + ] + }, + "trans lower intestine": { + "noise": 0.0005, + "D": 0.0013099999999999997, + "f": 0.6899999999999997, + "Dp": 0.029000000000000012, + "data": [ + 0.3762672014807758, + 0.3690953644152044, + 0.36036066425200697, + 0.3402209372451056, + 0.30943976347916957, + 0.2582806087239774, + 0.221563761814278, + 0.17024361750676187, + 0.1351444303322786, + 0.11642031090474003, + 0.09898413619434618, + 0.08390580104934697, + 0.07318355198354304, + 0.06851135869372077, + 0.056610482182588566, + 0.04597595772902957, + 0.03748809500313571, + 0.031136313419595326 + ] + }, + "desc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999997, + "Dp": 0.029000000000000015, + "data": [ + 0.3757756098276694, + 0.36857761887859763, + 0.3613935668445785, + 0.33986861821581216, + 0.3089720627229969, + 0.2587837365329459, + 0.22036174514041532, + 0.1700462354681048, + 0.1351358319822808, + 0.11639985207398235, + 0.0989689791051535, + 0.08424358823493776, + 0.07376418373495487, + 0.06944468021596181, + 0.05693491716291249, + 0.04609892567812359, + 0.037988533077624606, + 0.0319452543485727 + ] + }, + "small intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.02900000000000001, + "data": [ + 0.37622181996172344, + 0.36752971634723575, + 0.3609756275503666, + 0.339580571563921, + 0.30930331701922376, + 0.2575795626245274, + 0.22040334629181774, + 0.16896600459793495, + 0.13421224904598236, + 0.11632605863202615, + 0.09932840804199727, + 0.08375432628809912, + 0.0731745917792257, + 0.06923528604114432, + 0.05672824015665499, + 0.04626315476209859, + 0.038085645294904394, + 0.030936380311772267 + ] + }, + "pericardium": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 0.07000000000000002, + "Dp": 0.009999999999999998, + "data": [ + 0.30982366077717566, + 0.30993469587781963, + 0.30835311731521187, + 0.30497942046908105, + 0.30004184659823846, + 0.28976927774389194, + 0.2806614072060961, + 0.2615737929554431, + 0.24025519075401183, + 0.22082981124561804, + 0.18885845912462965, + 0.13801361831904962, + 0.10133822215077495, + 0.08843921581585718, + 0.05554544035298114, + 0.03554648221114816, + 0.02341755730966724, + 0.014847091111830489 + ] + }, + "config": { + "bvalues": [ + 0.0, + 1.0, + 2.0, + 5.0, + 10.0, + 20.0, + 30.0, + 50.0, + 75.0, + 100.0, + 150.0, + 250.0, + 350.0, + 400.0, + 550.0, + 700.0, + 850.0, + 1000.0 + ] + } +} \ No newline at end of file diff --git a/utilities/data_simulation/Download_data.py b/utilities/data_simulation/Download_data.py index 95f1c7a..5ea9bce 100644 --- a/utilities/data_simulation/Download_data.py +++ b/utilities/data_simulation/Download_data.py @@ -3,8 +3,18 @@ import subprocess import time + +def unzip_file(zip_file_path, extracted_folder_path): + # Open the zip file + with zipfile.ZipFile(zip_file_path, 'r') as zip_ref: + # Extract each file one by one + for file_info in zip_ref.infolist(): + zip_ref.extract(file_info, extracted_folder_path) + + def download_data(force=False): # Check if the folder exists, and create it if not + curdir=os.getcwd() base_folder = os.path.abspath(os.path.dirname(__file__)) base_folder = os.path.split(os.path.split(base_folder)[0])[0] if not os.path.exists(os.path.join(base_folder,'download')): @@ -17,13 +27,13 @@ def download_data(force=False): time.sleep(1) # Open the zip file if force or not os.path.exists('Data'): - with zipfile.ZipFile('OSIPI_TF24_data_phantoms.zip', 'r') as zip_ref: - # Extract all the contents to the destination folder - zip_ref.extractall('.') - while not os.path.exists('Data'): - time.sleep(10) - while not os.path.exists('Phantoms'): - time.sleep(10) - while not os.path.exists('Utilities'): - time.sleep(10) - time.sleep(10) \ No newline at end of file + # Unzip the file + unzip_file('OSIPI_TF24_data_phantoms.zip', '.') + # Wait for the extraction to complete by checking for the existence of any file + # Wait for the extraction to complete by checking for expected subdirectories + expected_subdirectories = [os.path.join('Utilities','DRO.npy'),os.path.join('Data','abdomen.nii.gz'), os.path.join('Data','brain.nii.gz'), os.path.join('Phantoms','brain','data','ballistic_snr200.nii.gz'), os.path.join('Phantoms','brain','data','diffusive_snr200.nii.gz'), os.path.join('Phantoms','XCAT_MAT_RESP','XCAT5D_RP_1_CP_1.mat'), os.path.join('Phantoms','XCAT_MAT_RESP','XCAT5D_RP_9_CP_1.mat'), os.path.join('Phantoms','XCAT_MAT_RESP','XCAT5D_RP_20_CP_1.mat')] # Add the expected subdirectories + while not all( + os.path.isfile(subdir) for subdir in expected_subdirectories): + time.sleep(1) # Wait for 1 second + time.sleep(10) + os.chdir(curdir) \ No newline at end of file From bd60a8ea50bd1306e1225903086543b4a9df36d5 Mon Sep 17 00:00:00 2001 From: Oliver Gurney-Champion <oliverchampion@gmail.com> Date: Thu, 29 Feb 2024 16:40:00 +0100 Subject: [PATCH 41/87] Fixed bugs and added brain phantom --- phantoms/brain/sim_brain_phantom.py | 4 +++- utilities/data_simulation/Download_data.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/phantoms/brain/sim_brain_phantom.py b/phantoms/brain/sim_brain_phantom.py index 25e6a89..d5ba89a 100644 --- a/phantoms/brain/sim_brain_phantom.py +++ b/phantoms/brain/sim_brain_phantom.py @@ -4,8 +4,10 @@ import numpy as np import nibabel as nib from scipy.ndimage import zoom +from utilities.data_simulation.Download_data import download_data if __name__ == "__main__": + download_data() DIFFUSIVE_REGIME = 'diffusive' BALLISTIC_REGIME = 'ballistic' @@ -22,7 +24,7 @@ # Ground truth - nii = nib.load(os.path.join(folder,'ground_truth','hrgt_icbm_2009a_nls_3t.nii.gz')) + nii = nib.load(os.path.join(os.path.split(os.path.split(folder)[0])[0],'download','Phantoms','brain','ground_truth','hrgt_icbm_2009a_nls_3t.nii.gz')) segmentation = np.squeeze(nii.get_fdata()[...,-1]) with open(os.path.join(folder,'ground_truth',regime+'_groundtruth.json'), 'r') as f: diff --git a/utilities/data_simulation/Download_data.py b/utilities/data_simulation/Download_data.py index 5ea9bce..e4d3f86 100644 --- a/utilities/data_simulation/Download_data.py +++ b/utilities/data_simulation/Download_data.py @@ -21,7 +21,7 @@ def download_data(force=False): os.makedirs(os.path.join(base_folder,'download')) print(f"Folder '{'download'}' created.") # Change to the specified folder - os.chdir(os.path.join(base_folder,'download')) + os.chdir(os.path.join(base_folder,'download')) subprocess.run(["zenodo_get", 'https://zenodo.org/records/10696605']) while not os.path.exists('OSIPI_TF24_data_phantoms.zip'): time.sleep(1) From 92a80d61cfca322da49d126dcd598996fca92668 Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Fri, 1 Mar 2024 15:20:53 +0530 Subject: [PATCH 42/87] Updated the github workflow actions Node.js 16 actions are deprecated. Updated the github actions to use Node.js 20 Fixes #42 - [ ] Self-review of changed code - [ ] Added automated tests where applicable - [ ] Update Docs & Guides --- .github/workflows/analysis.yml | 26 +++++++++++++------------- .github/workflows/unit_test.yml | 4 ++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 53f6257..f8da4b1 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -12,10 +12,10 @@ jobs: outputs: # here we use the outputs from steps, and set outputs for the job `configure` algorithms: ${{ steps.algorithms.outputs.algorithms }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python id: setup_python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" cache: 'pip' @@ -53,9 +53,9 @@ jobs: algorithm: ${{fromJson(needs.algorithms.outputs.algorithms).algorithms}} SNR: [10, 30, 50, 100, 200] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" cache: 'pip' @@ -75,7 +75,7 @@ jobs: source .venv/bin/activate python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv - name: Upload raw data - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Working_Data retention-days: 1 @@ -88,7 +88,7 @@ jobs: needs: build steps: - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: artifacts - name: Merge fitting results @@ -100,7 +100,7 @@ jobs: head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv - name: Upload merged artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Data path: | @@ -111,7 +111,7 @@ jobs: runs-on: ubuntu-latest needs: merge steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up R uses: r-lib/actions/setup-r@v2 with: @@ -126,13 +126,13 @@ jobs: any::data.table any::ggplot2 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Data - name: Generate figures run: Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv - name: Upload figures - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: Figures @@ -151,7 +151,7 @@ jobs: runs-on: ubuntu-latest needs: merge steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up R uses: r-lib/actions/setup-r@v2 with: @@ -163,7 +163,7 @@ jobs: any::tidyverse any::assertr - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Data - name: Test against previous results @@ -175,4 +175,4 @@ jobs: name: Comparison path: | test_reference.csv - test_results.csv \ No newline at end of file + test_results.csv diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 95b9b9d..3488007 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -18,9 +18,9 @@ jobs: # - os: windows-latest # python-version: "3.7" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' From 831c7c538187e9bc0c08e1f8e4a97b5e69070884 Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Sat, 2 Mar 2024 00:06:38 +0530 Subject: [PATCH 43/87] Added my branch for to iterate over the solution --- .github/workflows/analysis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index f8da4b1..a5559eb 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -5,6 +5,7 @@ on: branches: - 'main' - 'analysis/**' + - 'usman' jobs: algorithms: From a643f59f697becf30eaf38118b9d36236167a27d Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Sat, 2 Mar 2024 00:22:24 +0530 Subject: [PATCH 44/87] Downgraded actions/upload-artifact@v4 to v3 The actions/upload-artifact@v4 is not yet supported in GHES See actions/upload-artifact#478 --- .github/workflows/analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index a5559eb..ff0fdd6 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -76,7 +76,7 @@ jobs: source .venv/bin/activate python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv - name: Upload raw data - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: Working_Data retention-days: 1 @@ -101,7 +101,7 @@ jobs: head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv - name: Upload merged artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: Data path: | @@ -133,7 +133,7 @@ jobs: - name: Generate figures run: Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv - name: Upload figures - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 if: always() with: name: Figures From bde1bebd719d447d264e9e1bb98972704318851b Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Sat, 2 Mar 2024 00:28:57 +0530 Subject: [PATCH 45/87] Downgraded download-artifact See actions/upload-artifact#478 --- .github/workflows/analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index ff0fdd6..0199ce1 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -89,7 +89,7 @@ jobs: needs: build steps: - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: path: artifacts - name: Merge fitting results @@ -127,7 +127,7 @@ jobs: any::data.table any::ggplot2 - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: Data - name: Generate figures @@ -164,7 +164,7 @@ jobs: any::tidyverse any::assertr - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: Data - name: Test against previous results From a147635df817b217f0ef774f4a303af376d2e28c Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Sat, 2 Mar 2024 01:05:20 +0530 Subject: [PATCH 46/87] Downgraded upload and download-artifact@v4 to v3 The actions/upload-artifact@v4 actions/download-artifact@v4 and is not yet supported in GHES See actions/upload-artifact#478 --- .github/workflows/analysis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 0199ce1..a15ba6a 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -5,7 +5,6 @@ on: branches: - 'main' - 'analysis/**' - - 'usman' jobs: algorithms: From f3df2c6cf2ebdf93753aaaab9a7e7a8c2b56caea Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Sat, 2 Mar 2024 16:01:58 +0200 Subject: [PATCH 47/87] Cache python environment. --- .github/workflows/analysis.yml | 39 ++++++++++++++++------------------ 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index a15ba6a..73b60a8 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -19,17 +19,18 @@ jobs: with: python-version: "3.11" cache: 'pip' - # - name: Cache virtualenv - # uses: actions/cache@v3 - # with: - # key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} - # path: .venv + - name: Cache pip + uses: actions/cache@v3 + id: pip-cache + with: + key: ${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} + path: ${{ env.pythonLocation }} + if: steps.python-cache.outputs.cache-hit != 'true' + - name: Install dependencies run: | - python -m venv .venv - source .venv/bin/activate - python -m pip install -r requirements.txt - python -m pip install pytest + pip install -r requirements.txt + - name: Read algorithms id: algorithms run: | @@ -59,20 +60,16 @@ jobs: with: python-version: "3.11" cache: 'pip' - # - name: Cache virtualenv - # uses: actions/cache@v3 - # with: - # key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} - # path: .venv - - name: Install dependencies - run: | - python -m venv .venv - source .venv/bin/activate - python -m pip install -r requirements.txt - python -m pip install pytest + - name: Cache pip + id: python-cache + uses: actions/cache@v3 + with: + key: ${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} + path: ${{ env.pythonLocation }} + if: steps.python-cache.outputs.cache-hit != 'true' + - name: Generate fitting data run: | - source .venv/bin/activate python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv - name: Upload raw data uses: actions/upload-artifact@v3 From 0801ec313b0df33318df0436a97458f391a7eab8 Mon Sep 17 00:00:00 2001 From: Oliver Gurney-Champion <oliverchampion@gmail.com> Date: Wed, 6 Mar 2024 17:31:57 +0100 Subject: [PATCH 48/87] removed waiting and resolved conflicts --- utilities/data_simulation/Download_data.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/utilities/data_simulation/Download_data.py b/utilities/data_simulation/Download_data.py index e4d3f86..d03d8eb 100644 --- a/utilities/data_simulation/Download_data.py +++ b/utilities/data_simulation/Download_data.py @@ -22,18 +22,9 @@ def download_data(force=False): print(f"Folder '{'download'}' created.") # Change to the specified folder os.chdir(os.path.join(base_folder,'download')) - subprocess.run(["zenodo_get", 'https://zenodo.org/records/10696605']) - while not os.path.exists('OSIPI_TF24_data_phantoms.zip'): - time.sleep(1) + subprocess.check_call(["zenodo_get", 'https://zenodo.org/records/10696605']) # Open the zip file if force or not os.path.exists('Data'): # Unzip the file unzip_file('OSIPI_TF24_data_phantoms.zip', '.') - # Wait for the extraction to complete by checking for the existence of any file - # Wait for the extraction to complete by checking for expected subdirectories - expected_subdirectories = [os.path.join('Utilities','DRO.npy'),os.path.join('Data','abdomen.nii.gz'), os.path.join('Data','brain.nii.gz'), os.path.join('Phantoms','brain','data','ballistic_snr200.nii.gz'), os.path.join('Phantoms','brain','data','diffusive_snr200.nii.gz'), os.path.join('Phantoms','XCAT_MAT_RESP','XCAT5D_RP_1_CP_1.mat'), os.path.join('Phantoms','XCAT_MAT_RESP','XCAT5D_RP_9_CP_1.mat'), os.path.join('Phantoms','XCAT_MAT_RESP','XCAT5D_RP_20_CP_1.mat')] # Add the expected subdirectories - while not all( - os.path.isfile(subdir) for subdir in expected_subdirectories): - time.sleep(1) # Wait for 1 second - time.sleep(10) os.chdir(curdir) \ No newline at end of file From 90887f4f5f0c94ecd0e6aa7aa77f0bd5eb63f0f7 Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Wed, 6 Mar 2024 17:16:20 +0200 Subject: [PATCH 49/87] Cache python setup step. --- .github/workflows/analysis.yml | 8 +++----- .github/workflows/unit_test.yml | 1 - 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 73b60a8..e4f290c 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -18,14 +18,13 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.11" - cache: 'pip' - name: Cache pip uses: actions/cache@v3 id: pip-cache with: key: ${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} path: ${{ env.pythonLocation }} - if: steps.python-cache.outputs.cache-hit != 'true' + if: steps.pip-cache.outputs.cache-hit != 'true' - name: Install dependencies run: | @@ -59,14 +58,13 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.11" - cache: 'pip' - - name: Cache pip + if: steps.pip-cache.outputs.cache-hit != 'true' + - name: Restore cache id: python-cache uses: actions/cache@v3 with: key: ${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} path: ${{ env.pythonLocation }} - if: steps.python-cache.outputs.cache-hit != 'true' - name: Generate fitting data run: | diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 3488007..4029e6a 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -23,7 +23,6 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - cache: 'pip' # You can test your matrix by printing the current Python version - name: Display Python version run: python -c "import sys; print(sys.version)" From 4710f75262ddcc1ff530459853b376421816dd30 Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Wed, 6 Mar 2024 20:20:43 +0200 Subject: [PATCH 50/87] Use the unit test cache again. --- .github/workflows/unit_test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 4029e6a..3488007 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -23,6 +23,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + cache: 'pip' # You can test your matrix by printing the current Python version - name: Display Python version run: python -c "import sys; print(sys.version)" From 6c6cebb4a4f36ca40c37fec3e5cdeae1e7851b8b Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Thu, 7 Mar 2024 11:15:52 +0200 Subject: [PATCH 51/87] Add OS type to the cache key. --- .github/workflows/analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index e4f290c..55f59cf 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -22,7 +22,7 @@ jobs: uses: actions/cache@v3 id: pip-cache with: - key: ${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} path: ${{ env.pythonLocation }} if: steps.pip-cache.outputs.cache-hit != 'true' @@ -63,7 +63,7 @@ jobs: id: python-cache uses: actions/cache@v3 with: - key: ${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} + key: ${{ runner.os }}-${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} path: ${{ env.pythonLocation }} - name: Generate fitting data From 8bd36ed84863c0f26eb128cb408e757e01289ed1 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Fri, 8 Mar 2024 22:52:49 +0530 Subject: [PATCH 52/87] report on repo --- .gitignore | 1 + combined_report.html | 126 +++++++++++++++++++++++++++++++++++++++++++ local.env.example | 3 ++ repostatus.py | 37 +++++++++++++ 4 files changed, 167 insertions(+) create mode 100644 combined_report.html create mode 100644 local.env.example create mode 100644 repostatus.py diff --git a/.gitignore b/.gitignore index d3420ab..5898042 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ bvals.txt nosetests.xml coverage.xml *.pyc +local.env diff --git a/combined_report.html b/combined_report.html new file mode 100644 index 0000000..e1d8743 --- /dev/null +++ b/combined_report.html @@ -0,0 +1,126 @@ +<table border="1" class="dataframe"> + <thead> + <tr style="text-align: right;"> + <th>Technique</th> + <th>Subfolder</th> + <th>Contributors</th> + <th>Tested</th> + </tr> + </thead> + <tbody> + <tr> + <td>IVIM</td> + <td>OGC_AmsterdamUMC</td> + <td>Oliver Gurney-Champion</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>OGC_AmsterdamUMC</td> + <td>Oliver Gurney-Champion</td> + <td>Yes</td> + </tr> + <tr> + <td>Tri-exponential</td> + <td>OGC_AmsterdamUMC</td> + <td>Oliver Gurney-Champion</td> + <td>Yes</td> + </tr> + <tr> + <td>Tri-exponential</td> + <td>OGC_AmsterdamUMC</td> + <td>Oliver Gurney-Champion</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>OGC_AmsterdamUMC</td> + <td>Oliver Gurney-Champion/Sebastiano Barbieri</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>PvH_KB_NKI</td> + <td>Petra van Houdt/Stefan Zijlema/Koen Baas</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>PV_MUMC</td> + <td>Paulien Voorter</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Farooq et al. Modified by Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Fadnavis et al. Modified by Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Modified by Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>IAR_LundUniversity</td> + <td>Modified by Ivan A. Rashid</td> + <td>Yes</td> + </tr> + <tr> + <td>IVIM</td> + <td>OJ_GU</td> + <td>Oscar Jalnefjord</td> + <td>No</td> + </tr> + <tr> + <td>IVIM</td> + <td>OJ_GU</td> + <td>Oscar Jalnefjord</td> + <td>No</td> + </tr> + <tr> + <td>IVIM</td> + <td>OJ_GU</td> + <td>Oscar Jalnefjord</td> + <td>No</td> + </tr> + <tr> + <td>IVIM</td> + <td>ETP_SRI</td> + <td>Eric Peterson</td> + <td>Yes</td> + </tr> + </tbody> +</table> \ No newline at end of file diff --git a/local.env.example b/local.env.example new file mode 100644 index 0000000..5df0161 --- /dev/null +++ b/local.env.example @@ -0,0 +1,3 @@ +REPO_DIR=/path/to/your/repo +CODE_CONTRIBUTIONS_FILE=/path/to/your/code_contributions_record.csv +ALGORITHMS_FILE=/path/to/your/algorithms.json diff --git a/repostatus.py b/repostatus.py new file mode 100644 index 0000000..b5727dc --- /dev/null +++ b/repostatus.py @@ -0,0 +1,37 @@ +import os +import pandas as pd +from dotenv import load_dotenv +import json + +# Load environment variables +load_dotenv(r'C:\Users\home\tf2.4\TF2.4_IVIM-MRI_CodeCollection\local.env') + +# Read the CSV file +csv_file_path = os.getenv('CODE_CONTRIBUTIONS_FILE') +df = pd.read_csv(csv_file_path) + +unique_subfolders = df['subfolder'].unique().tolist() + +# Read the JSON file +algorithms_file_path = os.getenv('ALGORITHMS_FILE') +with open(algorithms_file_path, 'r') as f: + algorithms_data = json.load(f) + +# Get a list of all algorithms from the JSON file +all_algorithms = algorithms_data['algorithms'] + +# Add a new column 'Tested' to the DataFrame if it starts with that of subfolder +df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm.startswith(row['subfolder'].split('_')[0]) for algorithm in all_algorithms) else 'No', axis=1) + +# Select the desired columns +df_selected = df[['Technique', 'subfolder', 'Authors', 'Tested']] +df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Tested'] + +# Convert the DataFrame to HTML +html_string = df_selected.to_html(index=False) + +# Save the HTML to a file +with open('combined_report.html', 'w') as f: + f.write(html_string) +# printing message that report have been succesfully generated +print("Combined HTML report generated successfully.") \ No newline at end of file From 163a187c5eaad33b55a0af0487bd9e19ca520828 Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Fri, 8 Mar 2024 00:05:23 +0530 Subject: [PATCH 53/87] Generate a variety of testing data and came up command_line version of sim_vim_sig.py --- phantoms/MR_XCAT_qMRI/b_values.json | 7 + phantoms/MR_XCAT_qMRI/sim_ivim_sig.py | 173 +++-- .../IVIMmodels/unit_tests/generic_four.json | 352 +++++----- tests/IVIMmodels/unit_tests/generic_one.json | 642 ++++++++++++++++++ .../IVIMmodels/unit_tests/generic_three.json | 573 ++++++++++++++++ tests/IVIMmodels/unit_tests/generic_two.json | 642 ++++++++++++++++++ 6 files changed, 2151 insertions(+), 238 deletions(-) create mode 100644 phantoms/MR_XCAT_qMRI/b_values.json rename phantoms/MR_XCAT_qMRI/generic.json => tests/IVIMmodels/unit_tests/generic_four.json (66%) create mode 100644 tests/IVIMmodels/unit_tests/generic_one.json create mode 100644 tests/IVIMmodels/unit_tests/generic_three.json create mode 100644 tests/IVIMmodels/unit_tests/generic_two.json diff --git a/phantoms/MR_XCAT_qMRI/b_values.json b/phantoms/MR_XCAT_qMRI/b_values.json new file mode 100644 index 0000000..691a5d1 --- /dev/null +++ b/phantoms/MR_XCAT_qMRI/b_values.json @@ -0,0 +1,7 @@ +{ + "original": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 400.0, 550.0, 700.0, 850.0, 1000.0], + "one": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 400.0, 550.0, 700.0, 850.0, 1000.0, 1100.0, 1200.0], + "two": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 400.0, 500.0, 700.0, 800.0, 1000.0, 1100.0, 1200.0], + "three": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 450.0, 550.0, 675.0, 800.0], + "four": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 300.0, 400.0, 500.0, 600.0, 700.0, 800.0] +} diff --git a/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py b/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py index 2ac69c5..0c77ae0 100644 --- a/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py +++ b/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py @@ -2,6 +2,8 @@ from scipy.io import loadmat import nibabel as nib import json +import argparse +import os from utilities.data_simulation.Download_data import download_data ########## @@ -366,76 +368,123 @@ def XCAT_to_MR_DCE(XCAT, TR, TE, bvalue, D, f, Ds, b0=3, ivim_cont = True): return MR, Dim, fim, Dpim, legend if __name__ == '__main__': - bvalue = np.array([0., 1, 2, 5, 10, 20, 30, 50, 75, 100, 150, 250, 350, 400, 550, 700, 850, 1000]) - noise = 0.0005 - motion = False - interleaved = False - sig, XCAT, Dim, fim, Dpim, legend = phantom(bvalue, noise, motion=motion, interleaved=interleaved) - # sig = np.flip(sig,axis=0) - # sig = np.flip(sig,axis=1) - res=np.eye(4) - res[2]=2 + parser = argparse.ArgumentParser(description=f""" + A commandline for generating a 4D IVIM phantom as nifti file + """) - voxel_selector_fraction = 0.5 - D, f, Ds = contrast_curve_calc() - ignore = np.isnan(D) - generic_data = {} - for level, name in legend.items(): - if len(ignore) > level and ignore[level]: - continue - selector = XCAT == level - voxels = sig[selector] - if len(voxels) < 1: - continue - signals = np.squeeze(voxels[int(voxels.shape[0] * voxel_selector_fraction)]).tolist() - generic_data[name] = { - 'noise': noise, - 'D': np.mean(Dim[selector], axis=0), - 'f': np.mean(fim[selector], axis=0), - 'Dp': np.mean(Dpim[selector], axis=0), - 'data': signals - } - generic_data['config'] = { - 'bvalues': bvalue.tolist() - } - with open('generic.json', 'w') as f: - json.dump(generic_data, f, indent=4) + def parse_bvalues_file(file_path): + """Used for passing the JSON file""" + if not os.path.exists(file_path): + raise argparse.ArgumentTypeError(f"File '{file_path}' does not exist") + + try: + with open(file_path, "r") as file: + bvalues_dict = json.load(file) + if not isinstance(bvalues_dict, dict): + raise argparse.ArgumentTypeError("JSON file does not contain a dict of b-values") + for _, bvalue in bvalues_dict.items(): + if not isinstance(bvalue, list): + raise argparse.ArgumentTypeError("bvalues in JSON file are not list") + for value in bvalue: + if not isinstance(value, float): + raise argparse.ArgumentTypeError("Values in lists are not float") + except json.JSONDecodeError as e: + raise argparse.ArgumentTypeError(f"Invalid JSON file: {e}") + + return bvalues_dict + parser.add_argument("-b", "--bvalue", type=float, + nargs="+", + help="B values (list of of numbers)") + parser.add_argument("-f", "--bvalues-file", metavar="FILE", type=parse_bvalues_file, + help='JSON file containing the b-values') + parser.add_argument("-n", "--noise", type=float, default=0.0005, help="Noise") + parser.add_argument("-m", "--motion", action="store_true", help="Motion flag") + parser.add_argument("-i", "--interleaved", action="store_true", help="Interleaved flag") + args = parser.parse_args() - nifti_img = nib.Nifti1Image(sig, affine=res) # Replace affine if necessary - # Save the NIfTI image to a file - nifti_img.header.set_data_dtype(np.float64) - if not motion: - output_file = 'output.nii.gz' # Replace with your desired output file name - elif interleaved: - output_file = 'output_resp_int.nii.gz' # Replace with your desired output file name + if args.bvalues_file and args.bvalue: + raise argparse.ArgumentError(None, "Arguments --bvalues-file and --bvalues are mutually exclusive") + + bvalues = None + if args.bvalues_file: + bvalues = args.bvalues_file + elif args.bvalue: + bvalues = {"cmd": args.bvalue} else: - output_file = 'output_resp.nii.gz' # Replace with your desired output file name + bvalues = {"original": [0., 1, 2, 5, 10, 20, 30, 50, 75, 100, 150, 250, 350, 400, 550, 700, 850, 1000]} + + + noise = args.noise + motion = args.motion + interleaved = args.interleaved + for key, bvalue in bvalues.items(): + bvalue = np.array(bvalue) + sig, XCAT, Dim, fim, Dpim, legend = phantom(bvalue, noise, motion=motion, interleaved=interleaved) + # sig = np.flip(sig,axis=0) + # sig = np.flip(sig,axis=1) + res=np.eye(4) + res[2]=2 + + voxel_selector_fraction = 0.5 + D, f, Ds = contrast_curve_calc() + ignore = np.isnan(D) + generic_data = {} + for level, name in legend.items(): + if len(ignore) > level and ignore[level]: + continue + selector = XCAT == level + voxels = sig[selector] + if len(voxels) < 1: + continue + signals = np.squeeze(voxels[int(voxels.shape[0] * voxel_selector_fraction)]).tolist() + generic_data[name] = { + 'noise': noise, + 'D': np.mean(Dim[selector], axis=0), + 'f': np.mean(fim[selector], axis=0), + 'Dp': np.mean(Dpim[selector], axis=0), + 'data': signals + } + generic_data['config'] = { + 'bvalues': bvalue.tolist() + } + with open(f'generic_{key}.json', 'w') as f: + json.dump(generic_data, f, indent=4) + + nifti_img = nib.Nifti1Image(sig, affine=res) # Replace affine if necessary + # Save the NIfTI image to a file + nifti_img.header.set_data_dtype(np.float64) + if not motion: + output_file = f'output_{key}.nii.gz' # Replace with your desired output file name + elif interleaved: + output_file = f'output_resp_int_{key}.nii.gz' # Replace with your desired output file name + else: + output_file = f'output_resp_{key}.nii.gz' # Replace with your desired output file name - nib.save(nifti_img, output_file) + nib.save(nifti_img, output_file) - nifti_img = nib.Nifti1Image(XCAT, affine=res) # Replace affine if necessary - # Save the NIfTI image to a file - output_file = 'output_xcat.nii.gz' # Replace with your desired output file name - nib.save(nifti_img, output_file) + nifti_img = nib.Nifti1Image(XCAT, affine=res) # Replace affine if necessary + # Save the NIfTI image to a file + output_file = f'output_xcat_{key}.nii.gz' # Replace with your desired output file name + nib.save(nifti_img, output_file) - nifti_img = nib.Nifti1Image(Dim, affine=res) # Replace affine if necessary - # Save the NIfTI image to a file - nifti_img.header.set_data_dtype(np.float64) - output_file = 'D.nii.gz' # Replace with your desired output file name - nib.save(nifti_img, output_file) + nifti_img = nib.Nifti1Image(Dim, affine=res) # Replace affine if necessary + # Save the NIfTI image to a file + nifti_img.header.set_data_dtype(np.float64) + output_file = f'D_{key}.nii.gz' # Replace with your desired output file name + nib.save(nifti_img, output_file) - nifti_img = nib.Nifti1Image(fim, affine=res) # Replace affine if necessary - # Save the NIfTI image to a file - nifti_img.header.set_data_dtype(np.float64) - output_file = 'f.nii.gz' # Replace with your desired output file name - nib.save(nifti_img, output_file) + nifti_img = nib.Nifti1Image(fim, affine=res) # Replace affine if necessary + # Save the NIfTI image to a file + nifti_img.header.set_data_dtype(np.float64) + output_file = f'f_{key}.nii.gz' # Replace with your desired output file name + nib.save(nifti_img, output_file) - nifti_img = nib.Nifti1Image(Dpim, affine=res) # Replace affine if necessary - # Save the NIfTI image to a file - nifti_img.header.set_data_dtype(np.float64) - output_file = 'Dp.nii.gz' # Replace with your desired output file name - nib.save(nifti_img, output_file) + nifti_img = nib.Nifti1Image(Dpim, affine=res) # Replace affine if necessary + # Save the NIfTI image to a file + nifti_img.header.set_data_dtype(np.float64) + output_file = f'Dp_{key}.nii.gz' # Replace with your desired output file name + nib.save(nifti_img, output_file) - np.savetxt('bvals.txt', bvalue) \ No newline at end of file + np.savetxt(f'bvals_{key}.txt', bvalue) diff --git a/phantoms/MR_XCAT_qMRI/generic.json b/tests/IVIMmodels/unit_tests/generic_four.json similarity index 66% rename from phantoms/MR_XCAT_qMRI/generic.json rename to tests/IVIMmodels/unit_tests/generic_four.json index 47fcb3e..20134f0 100644 --- a/phantoms/MR_XCAT_qMRI/generic.json +++ b/tests/IVIMmodels/unit_tests/generic_four.json @@ -6,23 +6,23 @@ "Dp": 0.08, "data": [ 0.37020853964957995, - 0.36495023994839576, - 0.36040161395777776, + 0.3649502399483958, + 0.3604016139577778, 0.3482649413062642, - 0.3311252519245551, + 0.33112525192455516, 0.31128471484956144, 0.29753771205592827, 0.27895404495875237, 0.2627838930390298, - 0.24600672258762385, + 0.2460067225876238, 0.21960592872343127, 0.17325350570406992, - 0.13578433027277387, + 0.15308984732687797, 0.12026630133722724, - 0.08269998770527108, - 0.0583466003590057, - 0.04025758982493964, - 0.028838742483508213 + 0.09340835424369628, + 0.07424107364939422, + 0.05797294692236219, + 0.04641064930849908 ] }, "myocardium RV": { @@ -32,23 +32,23 @@ "Dp": 0.07999999999999999, "data": [ 0.36977273246921033, - 0.36537365912605413, - 0.3595159042305869, + 0.3653736591260542, + 0.35951590423058694, 0.34752698949768374, - 0.33173079647378234, + 0.3317307964737824, 0.3110608405629893, 0.29805095418985367, 0.27952927870925937, 0.2623759963395676, - 0.2465802608039568, + 0.24658026080395676, 0.2205672287951045, 0.17374944003807846, - 0.13502827555889882, + 0.15233379261300292, 0.12066297243669499, - 0.0836121527856757, - 0.05884198664879518, - 0.041489689098644505, - 0.028319859045401394 + 0.0943205193241009, + 0.07473645993918371, + 0.059205046196067056, + 0.04589176587039226 ] }, "myocardium ra": { @@ -59,22 +59,22 @@ "data": [ 0.3702523127001939, 0.36755530947936665, - 0.3655092171111401, + 0.36550921711114015, 0.3587682397967246, - 0.35132224032603726, - 0.34087328451399485, + 0.3513222403260373, + 0.3408732845139949, 0.3322050929514831, 0.31948125995637927, 0.30728799801895257, 0.29586365531065567, 0.2747381860006265, - 0.23736891610574076, - 0.20330679507798272, + 0.2373689161057407, + 0.21915576327182204, 0.18899390991911522, - 0.15183897083022813, - 0.11947654863593715, - 0.0961082153184848, - 0.07618502040438892 + 0.1635801752331241, + 0.13895783906182813, + 0.12036243984033423, + 0.10303893451974905 ] }, "Blood RV": { @@ -87,15 +87,15 @@ 0.6130133898159349, 0.5549567775209086, 0.41065608429951045, - 0.2485679217237561, - 0.09152471508006849, - 0.03422606076706993, + 0.24856792172375614, + 0.09152471508006847, + 0.034226060767069924, 0.004391344655692806, -0.0004185323666306052, 0.00020745211260014227, 9.950041472725093e-05, 0.00033731346702161615, - -0.0004581887966317206, + -0.00045818879656872043, 3.932025610280517e-05, 0.0007977517497581966, -9.674856879304352e-05, @@ -113,15 +113,15 @@ 0.6135371749705592, 0.5551735492299803, 0.41181139461379773, - 0.24923005810598367, - 0.0905737104418847, - 0.03324974683655229, + 0.2492300581059837, + 0.09057371044188468, + 0.03324974683655228, 0.005422829610804135, 0.0013661550851885077, -0.00010124567605655351, -0.0006196825747740377, -0.000911449851230475, - 4.552359004633976e-06, + 4.552359067634167e-06, 0.00045058131568997706, -0.0004429879455544712, 0.00023402108507587148, @@ -136,23 +136,23 @@ "Dp": 0.1, "data": [ 0.37644062169477893, - 0.371115117353656, - 0.36798803216272463, + 0.37111511735365604, + 0.3679880321627247, 0.3563630296133899, - 0.34430083828665475, - 0.3305305220923983, + 0.3443008382866548, + 0.33053052209239836, 0.32121589864643874, 0.31021138144645133, 0.2996519813313952, 0.2888296713839647, - 0.26634894381522295, - 0.2295414217850189, - 0.19733765396620417, + 0.2663489438152229, + 0.22954142178501885, + 0.2127452946315213, 0.18300505660775412, - 0.14688917007993096, - 0.11692921826028478, - 0.09269938996801896, - 0.07467525539976995 + 0.15830343102251168, + 0.13586803618636337, + 0.11627823572800301, + 0.1007814002656893 ] }, "esophagus": { @@ -165,7 +165,7 @@ 0.3713469825141738, 0.36803668924761473, 0.3561556517999572, - 0.3410493434981523, + 0.3410493434981524, 0.312875733963923, 0.2915459261606361, 0.2619677127542891, @@ -173,12 +173,12 @@ 0.2220458838581158, 0.20015512076970554, 0.167462024291482, - 0.1419784752197659, + 0.15439252110567364, 0.12989774418311542, - 0.10234154394160747, - 0.07930446754031786, - 0.06123140413656936, - 0.04776773648205296 + 0.1112224424416718, + 0.0937324290618957, + 0.0788214742532948, + 0.06684118499658684 ] }, "esophagus cont": { @@ -191,7 +191,7 @@ 0.3725261933502136, 0.36878021796360194, 0.35652169522898713, - 0.3386052646291958, + 0.33860526462919593, 0.31298259260039146, 0.2928970721524276, 0.2612959247167766, @@ -199,12 +199,12 @@ 0.2221373527772841, 0.19937350825944655, 0.16883993353226331, - 0.1424158552974854, + 0.15482990118339315, 0.13071358852326218, - 0.10173994625115453, - 0.07945195698352943, - 0.06243534663610846, - 0.04800948764844827 + 0.11062084475121886, + 0.09387991850510727, + 0.0800254167528339, + 0.06708293616298215 ] }, "st wall": { @@ -214,7 +214,7 @@ "Dp": 0.012, "data": [ 0.3105272130104086, - 0.30885201953001484, + 0.3088520195300149, 0.3066269481129629, 0.30274552065133936, 0.2970795427045135, @@ -223,14 +223,14 @@ 0.2524099337210839, 0.23227124641480215, 0.21525891994887883, - 0.18857776603497192, - 0.15443116579283125, - 0.12956411859096137, + 0.1885777660349719, + 0.15443116579283123, + 0.1407187346526142, 0.12018541366739759, - 0.09540290797868664, - 0.07646151871825584, - 0.060893544180195436, - 0.04844739095700899 + 0.10292041031175475, + 0.0888105701455431, + 0.07622513347083897, + 0.06540868494891473 ] }, "pancreas": { @@ -240,9 +240,9 @@ "Dp": 0.01, "data": [ 0.38790324491892814, - 0.3876291514843242, - 0.3863839489641638, - 0.38184405158251805, + 0.38762915148432425, + 0.38638394896416384, + 0.3818440515825181, 0.37867596311248974, 0.3689126014097869, 0.3601658251421809, @@ -251,12 +251,12 @@ 0.3108907244841228, 0.28514614179625436, 0.24288623561383582, - 0.21079763700687396, - 0.19761965397168216, - 0.16190527129917393, - 0.13253969244152558, - 0.109498174630867, - 0.08988893299758294 + 0.225982965782993, + 0.1976196539716821, + 0.17288949436169812, + 0.15105191023338704, + 0.1330473659460378, + 0.11658151281143886 ] }, "Right kydney cortex": { @@ -265,24 +265,24 @@ "f": 0.09699999999999998, "Dp": 0.02, "data": [ - 0.5030626944055995, - 0.5001783921023092, - 0.4985206880919477, - 0.492235006203061, - 0.48382939238999034, - 0.46674631174303693, - 0.45237002678781385, - 0.42517107069931875, - 0.3973789957969744, - 0.3735484160962404, - 0.33239356651908736, - 0.2673529892425856, - 0.2154960685494099, + 0.5030626944055996, + 0.5001783921023093, + 0.49852068809194783, + 0.49223500620306115, + 0.48382939238999045, + 0.46674631174303705, + 0.4523700267878139, + 0.4251710706993188, + 0.3973789957969745, + 0.37354841609624045, + 0.3323935665190874, + 0.26735298924258566, + 0.2397202286090886, 0.1945665171600742, - 0.14102135574910862, - 0.10311364289145247, - 0.07456438398815092, - 0.053873627732706555 + 0.15682566828629385, + 0.12739614622492182, + 0.10257405591322995, + 0.08261967534459744 ] }, "right kidney medulla": { @@ -293,7 +293,7 @@ "data": [ 0.5203928163478555, 0.5172834129714686, - 0.5154181766280577, + 0.5154181766280578, 0.508955947597674, 0.4971665082609214, 0.4765617297025814, @@ -303,12 +303,12 @@ 0.3678576959819498, 0.3252024786031681, 0.26093704038103643, - 0.2115158499487909, + 0.23491284824063768, 0.18986472099830365, - 0.1390757149598466, - 0.10175501422229921, - 0.0745403006178045, - 0.052954602248849326 + 0.1543721002441838, + 0.12534127863028155, + 0.10184676747853845, + 0.08108158746735031 ] }, "Left kidney cortex": { @@ -317,24 +317,24 @@ "f": 0.09699999999999999, "Dp": 0.019999999999999997, "data": [ - 0.5024240367317072, - 0.49941258148509743, - 0.49805356407147056, - 0.4933194896159733, - 0.4840457529958473, - 0.4671852397846339, - 0.4521452680285715, - 0.42623711775650924, - 0.39725715329568395, - 0.37409027153921703, - 0.33217873975195317, - 0.26745366222903283, - 0.2157809336394279, + 0.5024240367317073, + 0.49941258148509754, + 0.49805356407147067, + 0.49331948961597344, + 0.4840457529958474, + 0.467185239784634, + 0.4521452680285716, + 0.4262371177565093, + 0.39725715329568406, + 0.3740902715392171, + 0.3321787397519532, + 0.2674536622290329, + 0.2400050936991066, 0.19374765229746826, - 0.14049376483280698, - 0.10331460090984186, - 0.07440145499843141, - 0.05433448953174809 + 0.1562980773699922, + 0.1275971042433112, + 0.10241112692351044, + 0.08308053714363896 ] }, "left kidney medulla": { @@ -345,7 +345,7 @@ "data": [ 0.5194415728735972, 0.517785604911926, - 0.5160301137297539, + 0.516030113729754, 0.5081161819938502, 0.4974616266593506, 0.47681810747989994, @@ -355,12 +355,12 @@ 0.3677361403989122, 0.3248430621293657, 0.26051271974899165, - 0.21029843278003593, + 0.2336954310718827, 0.18956042616225802, - 0.13923061439172535, - 0.10158270890079638, - 0.07404360800306067, - 0.055028684479409715 + 0.15452699967606254, + 0.1251689733087787, + 0.10135007486379462, + 0.0831556696979107 ] }, "spleen": { @@ -372,8 +372,8 @@ 0.46403850509317707, 0.4599668139828373, 0.4565050796135784, - 0.44775979510680575, - 0.4345571535066183, + 0.4477597951068058, + 0.4345571535066184, 0.4116569011496948, 0.39401165243513436, 0.36774444861522015, @@ -381,12 +381,12 @@ 0.3294233615718273, 0.30667603611837396, 0.2674562035665486, - 0.23547634319485394, - 0.2201515745336398, - 0.1820120108467682, - 0.15000995189601307, - 0.12245722367383773, - 0.10106629985396444 + 0.25127429054412753, + 0.22015157453363973, + 0.19418621700292343, + 0.17071738935037453, + 0.1488829438447164, + 0.13105291328487212 ] }, "Artery": { @@ -395,19 +395,19 @@ "f": 1.0, "Dp": 0.09999999999999998, "data": [ - 0.6337138315409772, - 0.5730640187126045, - 0.5183053356244033, + 0.6337138315409773, + 0.5730640187126046, + 0.5183053356244034, 0.3835360405875329, - 0.23327858900709256, - 0.08548411122886704, + 0.2332785890070926, + 0.08548411122886702, 0.03274861224071262, - 0.004777343857924789, + 0.00477734385792479, -0.000449472156073272, 5.179481905995705e-06, -0.0010595279088828175, -0.0006967437546476321, - -3.6242741924784856e-05, + -3.62427418659337e-05, 0.0005019818951829742, 0.0002644131825217677, 0.00033417919268772877, @@ -421,19 +421,19 @@ "f": 1.0, "Dp": 0.09999999999999999, "data": [ - 0.4607963898556654, - 0.4179229700550046, - 0.37789838853010355, - 0.2801168902809804, - 0.16939227145540162, - 0.06189817013733823, + 0.46079638985566546, + 0.41792297005500467, + 0.3778983885301036, + 0.28011689028098047, + 0.16939227145540164, + 0.061898170137338226, 0.023234302719618776, - 0.0030315754490075016, + 0.0030315754490075025, 0.0004901589324770273, -0.0017004095520137548, -0.0006037240267850347, 0.000715049096502115, - -0.0003164388537626677, + -0.00031643885371978957, -0.0005602932388408961, -0.0008540747545262273, 0.0002894370905108141, @@ -459,12 +459,12 @@ 0.1159470963724909, 0.09938984553504218, 0.08421083881621177, - 0.07348586276743577, + 0.07850410846097614, 0.06974475141764117, - 0.05688849653030074, - 0.046677147601082956, - 0.03797211333797915, - 0.031179088207270982 + 0.060724752480331254, + 0.05319408926934727, + 0.04627840031704676, + 0.04059305983450672 ] }, "trans lower intestine": { @@ -485,12 +485,12 @@ 0.11642031090474003, 0.09898413619434618, 0.08390580104934697, - 0.07318355198354304, + 0.0782017976770834, 0.06851135869372077, - 0.056610482182588566, - 0.04597595772902957, - 0.03748809500313571, - 0.031136313419595326 + 0.06044673813261908, + 0.05249289939729388, + 0.04579438198220332, + 0.04055028504683107 ] }, "desc lower intestine": { @@ -511,12 +511,12 @@ 0.11639985207398235, 0.0989689791051535, 0.08424358823493776, - 0.07376418373495487, + 0.07878242942849524, 0.06944468021596181, - 0.05693491716291249, - 0.04609892567812359, - 0.037988533077624606, - 0.0319452543485727 + 0.06077117311294301, + 0.0526158673463879, + 0.046294820056692214, + 0.04135922597580844 ] }, "small intestine": { @@ -537,12 +537,12 @@ 0.11632605863202615, 0.09932840804199727, 0.08375432628809912, - 0.0731745917792257, + 0.07819283747276606, 0.06923528604114432, - 0.05672824015665499, - 0.04626315476209859, - 0.038085645294904394, - 0.030936380311772267 + 0.0605644961066855, + 0.052780096430362904, + 0.046391932273972, + 0.04035035193900801 ] }, "pericardium": { @@ -555,20 +555,20 @@ 0.30993469587781963, 0.30835311731521187, 0.30497942046908105, - 0.30004184659823846, + 0.3000418465982385, 0.28976927774389194, 0.2806614072060961, 0.2615737929554431, - 0.24025519075401183, + 0.2402551907540118, 0.22082981124561804, 0.18885845912462965, 0.13801361831904962, - 0.10133822215077495, - 0.08843921581585718, - 0.05554544035298114, - 0.03554648221114816, - 0.02341755730966724, - 0.014847091111830489 + 0.11810578659613338, + 0.08843921581585716, + 0.06457174510944017, + 0.04794341573474695, + 0.03623801628971909, + 0.02666467567311607 ] }, "config": { @@ -585,12 +585,12 @@ 100.0, 150.0, 250.0, - 350.0, + 300.0, 400.0, - 550.0, + 500.0, + 600.0, 700.0, - 850.0, - 1000.0 + 800.0 ] } } \ No newline at end of file diff --git a/tests/IVIMmodels/unit_tests/generic_one.json b/tests/IVIMmodels/unit_tests/generic_one.json new file mode 100644 index 0000000..18a7b34 --- /dev/null +++ b/tests/IVIMmodels/unit_tests/generic_one.json @@ -0,0 +1,642 @@ +{ + "Myocardium LV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.08, + "data": [ + 0.3702693586968183, + 0.3658113919176701, + 0.36088383536639373, + 0.348248809894606, + 0.33185741258841583, + 0.31039979768732034, + 0.2979060891657501, + 0.2800834377309574, + 0.2635379438004032, + 0.24733319662931452, + 0.21944469694850227, + 0.17335986723357252, + 0.13591105982588525, + 0.11905248369788386, + 0.08400163368544081, + 0.058914891651445075, + 0.040873594639191026, + 0.028144026200946498, + 0.022628558420793612, + 0.017522101631152708 + ] + }, + "myocardium RV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.07999999999999999, + "data": [ + 0.3699590514099429, + 0.36518055377337016, + 0.3599594187725478, + 0.3476212403334872, + 0.33271429944923436, + 0.3099606368726962, + 0.2979395579132411, + 0.2806762266783783, + 0.2629273556543216, + 0.24696110491613124, + 0.21887040432950788, + 0.173230056587018, + 0.13558461809504765, + 0.12026947142609139, + 0.08387638228596936, + 0.05838750252779018, + 0.04104646612561507, + 0.02964255940609791, + 0.022194082152596536, + 0.017640529157968456 + ] + }, + "myocardium ra": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.07000000000000002, + "Dp": 0.07000000000000002, + "data": [ + 0.36954854966506584, + 0.36808958041628237, + 0.36578382492796, + 0.3596873307128424, + 0.35119003005771693, + 0.3402218990989589, + 0.3325354748039068, + 0.3199243116064692, + 0.30692145557574724, + 0.29560677596352014, + 0.2738348839446459, + 0.23727194536215346, + 0.2039432804657374, + 0.18806485466281667, + 0.15064012951470163, + 0.1210498783100664, + 0.09638603375770086, + 0.07654046255611914, + 0.06636093893774088, + 0.05624017956588157 + ] + }, + "Blood RV": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 1.0, + "Dp": 0.1, + "data": [ + 0.6778192190148219, + 0.6133798515961226, + 0.556088789717979, + 0.4113568103830811, + 0.24961964532720393, + 0.09080744996840595, + 0.03382527019674723, + 0.004408117259613578, + 0.00045553733068637374, + 0.000503125759996453, + 1.983269390970912e-05, + 0.0008540302765523516, + -0.0004639912629274808, + 0.00026624292456458427, + -0.0004133282994597784, + 0.0008349118780449664, + -0.0005441522191380494, + 0.000687948274692782, + 0.0004377570312497899, + 0.0009277683845607746 + ] + }, + "Blood RA": { + "noise": 0.0005, + "D": 0.0029999999999999996, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6782546110257667, + 0.6134517304678615, + 0.5548127648067851, + 0.4114239656287577, + 0.24887748862716738, + 0.09079599685946198, + 0.03371767232252899, + 0.004805110405512278, + 0.00026876176749920775, + 0.00040588375443952296, + -0.0006965979484067293, + 8.076766957486596e-05, + 0.00016423439485830103, + -8.392734987945414e-05, + 0.0006679749764988951, + -2.5920857836801525e-05, + -0.0003629218573041546, + -0.00039093721570387723, + 0.00039384926384773374, + 0.00012104787677111193 + ] + }, + "Liver": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.11000000000000007, + "Dp": 0.1, + "data": [ + 0.3757109448308187, + 0.37159844414563903, + 0.36757652739770263, + 0.356557608867519, + 0.34449730557688585, + 0.3302728683761254, + 0.32190934545514716, + 0.3107958823547343, + 0.29974906057981404, + 0.28866208804957083, + 0.2665084616887995, + 0.2302577123949886, + 0.19706801799607893, + 0.1832752253232415, + 0.1469587281958355, + 0.11665617079584324, + 0.09272225086209834, + 0.07404307442849148, + 0.06495957665209634, + 0.05483374055592094 + ] + }, + "esophagus": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.3763684248390922, + 0.3716690433953235, + 0.3684398070125203, + 0.35627899050542133, + 0.339417713149662, + 0.31308334507401414, + 0.2915420978743738, + 0.26129061682183885, + 0.2384202176130894, + 0.22151695290052925, + 0.20117853599523902, + 0.1684183609905242, + 0.14183744408751564, + 0.1315396047738329, + 0.1008979049126003, + 0.08005353964509221, + 0.06174644257680848, + 0.04833947529809361, + 0.04146163817520504, + 0.03455872783233795 + ] + }, + "esophagus cont": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.37462894838301514, + 0.3720530346008417, + 0.36843248323575206, + 0.3565356241811968, + 0.33996760567465895, + 0.31328632071063633, + 0.29270944820365774, + 0.2615459979475671, + 0.23807817779668547, + 0.22320044414983747, + 0.1999117351921243, + 0.1676738426708589, + 0.14276735110298336, + 0.13052790082823468, + 0.10204425496951747, + 0.07986815989178006, + 0.06167708444069486, + 0.04817147054320976, + 0.040252823172101694, + 0.03297409449781737 + ] + }, + "st wall": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.29999999999999993, + "Dp": 0.012, + "data": [ + 0.3098141733591781, + 0.3082074381190147, + 0.3078695213400233, + 0.3034727420507079, + 0.2964110002277156, + 0.28420503380855694, + 0.27262943426846253, + 0.2529703766199716, + 0.23181362413314785, + 0.21533240442803878, + 0.18866423965466494, + 0.1538288039226577, + 0.12950065073939387, + 0.12059987005634037, + 0.0950365656816444, + 0.0751816813266571, + 0.0610975804976618, + 0.04812765285057304, + 0.04167649611384921, + 0.03551573475439265 + ] + }, + "pancreas": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.14999999999999997, + "Dp": 0.01, + "data": [ + 0.38756225390826055, + 0.3872122826532023, + 0.3860078505067888, + 0.3830768983596228, + 0.37823092947045667, + 0.36829130062215193, + 0.3600939050529845, + 0.3435730967601404, + 0.3264492967453999, + 0.31073467885484346, + 0.28456975049732525, + 0.24277255847622417, + 0.21083144739250173, + 0.19650044547554904, + 0.16102999700185813, + 0.1329213887976826, + 0.10936186466754562, + 0.08950800958271371, + 0.0790399753516848, + 0.0688924090609339 + ] + }, + "Right kydney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999998, + "Dp": 0.02, + "data": [ + 0.5024134360525454, + 0.49967955589507934, + 0.49855493954163826, + 0.49199152381416755, + 0.483876177656154, + 0.46697056889461863, + 0.45258029399573063, + 0.42576860693199514, + 0.3976785585068113, + 0.3731355639860924, + 0.33249383314953795, + 0.2675824000896771, + 0.21560536283229206, + 0.19372138515531967, + 0.14153898276795995, + 0.10235971206017905, + 0.07529334873881285, + 0.05416208775236745, + 0.04459097924092662, + 0.035631550942277115 + ] + }, + "right kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999993, + "data": [ + 0.520970249617124, + 0.5180181992381727, + 0.5155496458041684, + 0.5079475781684871, + 0.49632458096923704, + 0.47678196919856103, + 0.45725038169352444, + 0.425184848027401, + 0.3942659326986897, + 0.368763452046604, + 0.3250926326082689, + 0.2600987607942856, + 0.21130881759101403, + 0.1900591212481588, + 0.13790837379749457, + 0.10120805670330735, + 0.07395799840103806, + 0.053726067725237275, + 0.04420656695855129, + 0.035767373307356964 + ] + }, + "Left kidney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999999, + "Dp": 0.019999999999999997, + "data": [ + 0.5026509011050787, + 0.5000605331061267, + 0.4985617678716717, + 0.4931987195802715, + 0.4844328811923807, + 0.46788156612051746, + 0.4529877235843519, + 0.4251152066472877, + 0.3983175476121099, + 0.37320460069166983, + 0.332798388536223, + 0.2678028254377492, + 0.21625379421467245, + 0.19428256271138525, + 0.1408102347206894, + 0.10280447119758623, + 0.07473260545446643, + 0.054942418155614625, + 0.044202048037356965, + 0.03638958227500357 + ] + }, + "left kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999996, + "data": [ + 0.5203300455018787, + 0.5173615637562683, + 0.5153744228547334, + 0.5091457111013956, + 0.4975560647880122, + 0.47568987903705295, + 0.4580274481531342, + 0.42696924048113477, + 0.39417705335618797, + 0.3684497064759244, + 0.3249096356380034, + 0.25954330078146826, + 0.21109514544351798, + 0.1898490155996618, + 0.138889909391675, + 0.10224608065004737, + 0.07500185780919116, + 0.0548599688449115, + 0.043942760790377074, + 0.03568830644449845 + ] + }, + "spleen": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.19999999999999998, + "Dp": 0.03000000000000001, + "data": [ + 0.46435366019885127, + 0.46084163459696925, + 0.45667852020366684, + 0.4476575283091254, + 0.4350544539626486, + 0.4122121873998087, + 0.3943459306624004, + 0.3681892052269292, + 0.3455669960943969, + 0.329857017690688, + 0.3055824720689972, + 0.2680670041053236, + 0.234858226051318, + 0.2203184355991127, + 0.1807125818213918, + 0.14979037176524007, + 0.12254622077543466, + 0.1005425150387226, + 0.0890240291185502, + 0.07787014574035453 + ] + }, + "Artery": { + "noise": 0.0005, + "D": 0.0029999999999999988, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6336810126463138, + 0.5727602562179909, + 0.5191342663464013, + 0.38361717582666377, + 0.23335430957251738, + 0.08603861537554454, + 0.032331499133981235, + 0.004146432276395187, + 0.00024281779351646477, + -0.0001859837347886701, + -0.0002587493727012945, + -0.0001972264887359046, + 0.0004899130695393009, + 0.00028083506379054013, + -9.587296870972679e-05, + -0.000846470993722882, + -5.1564240994511656e-05, + -0.00038538983696590433, + 0.00014854610943451, + 0.0009442159977793726 + ] + }, + "Vein": { + "noise": 0.0005, + "D": 0.002999999999999999, + "f": 1.0, + "Dp": 0.09999999999999999, + "data": [ + 0.4617772807374701, + 0.4170817415244035, + 0.3776932168254059, + 0.2790768199483855, + 0.16935393940456073, + 0.06276546172209892, + 0.022186060668575786, + 0.003530559611540989, + -7.92635900374515e-05, + -0.00029600591681532283, + 0.0003850226601733434, + -0.00011612854178696968, + -0.00020099386778150058, + 0.0003303162544471727, + -0.0005467494528780173, + -0.00034496938866110144, + 0.0004671884332410518, + 4.1970245500659427e-05, + -0.0008904086227630517, + 0.0006361315738548206 + ] + }, + "asc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.028999999999999998, + "data": [ + 0.3758930792047429, + 0.36871753415550856, + 0.3596646182674821, + 0.34064921555832417, + 0.30870691010518925, + 0.2582272686179002, + 0.221043089173151, + 0.1697427289837398, + 0.13576211924902365, + 0.11657239096913335, + 0.09974041437941726, + 0.084471000128348, + 0.07361374280718957, + 0.06839430869527796, + 0.05650424419414405, + 0.0461358155720791, + 0.037850366535851505, + 0.032151323740629956, + 0.027567944335165455, + 0.024265661849860197 + ] + }, + "trans lower intestine": { + "noise": 0.0005, + "D": 0.0013099999999999997, + "f": 0.6899999999999997, + "Dp": 0.029000000000000012, + "data": [ + 0.3759404148880361, + 0.3675541200645044, + 0.3613803014496283, + 0.3399067607276812, + 0.3095391993454061, + 0.25891221279657134, + 0.2205283124964161, + 0.1697945911920154, + 0.13482873024065561, + 0.11616496873797194, + 0.09928818356326169, + 0.0842950343494812, + 0.07325243765821013, + 0.06916116187486239, + 0.05593385248374875, + 0.04567961595718216, + 0.03787977895202288, + 0.031768846197637854, + 0.02797843022088174, + 0.02379095768329987 + ] + }, + "desc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999997, + "Dp": 0.029000000000000015, + "data": [ + 0.37611573102626933, + 0.36784568192780026, + 0.36006529738597887, + 0.33963104084021395, + 0.30906385603936554, + 0.2587005991218242, + 0.2216086333941438, + 0.16978037219990644, + 0.13482754339911998, + 0.11678284374227575, + 0.09922612717842208, + 0.08367704938870292, + 0.07251044847593266, + 0.06950723729260386, + 0.05686568357365388, + 0.04643446076552353, + 0.0381804263529239, + 0.031644901756228805, + 0.027533666391557826, + 0.02425481425960014 + ] + }, + "small intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.02900000000000001, + "data": [ + 0.3757102853596951, + 0.3684658779825414, + 0.3600484871917735, + 0.33972993558739695, + 0.30909922521121297, + 0.25832397264055074, + 0.22096591311154762, + 0.16984664861487841, + 0.13489729842561565, + 0.11670788214115055, + 0.09834354772408328, + 0.08487065744306915, + 0.07342640045705888, + 0.06893970052368144, + 0.055888034874401415, + 0.047126037636101806, + 0.03756382481182354, + 0.030638392384703037, + 0.0281850925517453, + 0.024772049440956154 + ] + }, + "pericardium": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 0.07000000000000002, + "Dp": 0.009999999999999998, + "data": [ + 0.3103093353499032, + 0.3086555979462937, + 0.30868551309587694, + 0.3054401417241601, + 0.3000029954428556, + 0.28945134888384705, + 0.2802004082880951, + 0.26178803339645007, + 0.2407823261780593, + 0.2215963893368975, + 0.1882027440790469, + 0.1374763807694227, + 0.10141005432707072, + 0.08739455730843261, + 0.0547892018756529, + 0.035407574842628166, + 0.02309527757547685, + 0.014898384338215711, + 0.010535994594789228, + 0.008640506769047538 + ] + }, + "config": { + "bvalues": [ + 0.0, + 1.0, + 2.0, + 5.0, + 10.0, + 20.0, + 30.0, + 50.0, + 75.0, + 100.0, + 150.0, + 250.0, + 350.0, + 400.0, + 550.0, + 700.0, + 850.0, + 1000.0, + 1100.0, + 1200.0 + ] + } +} \ No newline at end of file diff --git a/tests/IVIMmodels/unit_tests/generic_three.json b/tests/IVIMmodels/unit_tests/generic_three.json new file mode 100644 index 0000000..017e9e6 --- /dev/null +++ b/tests/IVIMmodels/unit_tests/generic_three.json @@ -0,0 +1,573 @@ +{ + "Myocardium LV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.08, + "data": [ + 0.3705828936457323, + 0.3650116970423589, + 0.36000292554593327, + 0.3476534493325365, + 0.33193464118629046, + 0.3105110700846654, + 0.2987670626103403, + 0.28073863534077087, + 0.26235560902388316, + 0.24743495604100282, + 0.2194910438569584, + 0.17255236567938767, + 0.13587958824421092, + 0.10773561062901581, + 0.08366776997311338, + 0.06285515861377702, + 0.046846536522815486 + ] + }, + "myocardium RV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.07999999999999999, + "data": [ + 0.37034678452519487, + 0.36489758950509343, + 0.36078090629541526, + 0.34744347580521523, + 0.331918584988778, + 0.31058234566921217, + 0.2974004526060781, + 0.2801528776620198, + 0.2636226439968207, + 0.2474489371425598, + 0.21961921943626303, + 0.1726443739671523, + 0.13524273614652163, + 0.10631590039195922, + 0.08436712897841399, + 0.062053073351052104, + 0.04739980561623074 + ] + }, + "myocardium ra": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.07000000000000002, + "Dp": 0.07000000000000002, + "data": [ + 0.36930453662082185, + 0.3678375710885816, + 0.36500631410594536, + 0.359294022979275, + 0.35132757411396376, + 0.3402756377219462, + 0.3332826068991066, + 0.3203836074593697, + 0.3087630512561008, + 0.294710642689979, + 0.2745112690927469, + 0.23658181023206562, + 0.2035517004263663, + 0.17462395869181588, + 0.15113183826322976, + 0.12483527402478839, + 0.10372229280037201 + ] + }, + "Blood RV": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 1.0, + "Dp": 0.1, + "data": [ + 0.6781686927029749, + 0.6132559555274526, + 0.5550815071289532, + 0.41033739004859193, + 0.24952033197587187, + 0.0913762622516168, + 0.03328174900722161, + 0.004252179997762109, + 7.766241119767318e-05, + 1.1629198207891746e-05, + -0.00011334627041068779, + 0.0001902047821730963, + 0.00024126113513173208, + 0.0003110163795960947, + 0.0003538787659845359, + -0.0008142320639727821, + 0.0006044221661484414 + ] + }, + "Blood RA": { + "noise": 0.0005, + "D": 0.0029999999999999996, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6771469213705107, + 0.613109591406766, + 0.5551239222969977, + 0.41027306218838056, + 0.2488479932888132, + 0.09218258173714818, + 0.03282826934805174, + 0.005216897560089196, + 0.0015823779520250307, + 0.00016108967009909056, + 0.0015318026564405053, + 0.0013544351794313276, + 0.0006367659321807349, + 0.00015628857214257226, + 0.0003417803930039182, + -0.00014019003279430316, + 0.00022438679583640988 + ] + }, + "Liver": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.11000000000000007, + "Dp": 0.1, + "data": [ + 0.3759629349688597, + 0.3716646328837915, + 0.36768140884141853, + 0.35679856031251755, + 0.3447040989330244, + 0.33010255908744845, + 0.3225293719195258, + 0.31013203824338975, + 0.29912903812317315, + 0.2875016128287932, + 0.26676911270847276, + 0.2291822065185848, + 0.19725866112414217, + 0.16961120878298466, + 0.146547461372476, + 0.12211162760049595, + 0.10036857641579848 + ] + }, + "esophagus": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.3759809661979119, + 0.3719193763976029, + 0.36826129264590546, + 0.3563439183958043, + 0.3399722157419554, + 0.31244279037609085, + 0.29209289317881587, + 0.26193820318087996, + 0.23918945592991755, + 0.22162897528985293, + 0.20047945447733245, + 0.16874954427918387, + 0.1424186016102075, + 0.12104851113023979, + 0.1024986060422338, + 0.08308506267279576, + 0.06805126772529227 + ] + }, + "esophagus cont": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.3754426943472215, + 0.3711310452588206, + 0.36824104575095273, + 0.35637423349129327, + 0.3397318904956711, + 0.3139905228566335, + 0.29209654021874804, + 0.26158118212354364, + 0.23825176941079743, + 0.22238856850682048, + 0.20028468379763045, + 0.1677883580949088, + 0.14193304425540748, + 0.12048362561011215, + 0.10209018762791656, + 0.08413585256293421, + 0.06718789993682357 + ] + }, + "st wall": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.29999999999999993, + "Dp": 0.012, + "data": [ + 0.31075325165625955, + 0.30837408589905024, + 0.30730668664918936, + 0.30276149313228057, + 0.2963053737808329, + 0.284182908413082, + 0.2734467142979153, + 0.2522852517905155, + 0.23110843583624938, + 0.21450932320897623, + 0.1898449038346629, + 0.1539384101411437, + 0.1297089363299054, + 0.1108986306672626, + 0.09507301950845708, + 0.07862494261221367, + 0.06575095126401058 + ] + }, + "pancreas": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.14999999999999997, + "Dp": 0.01, + "data": [ + 0.38715595133670916, + 0.3870108453609856, + 0.3852616534587196, + 0.3833282895612, + 0.37912815500847663, + 0.3695407436697904, + 0.3600895196508506, + 0.3437653720741652, + 0.32657853140559717, + 0.3104429125534994, + 0.2840076591530889, + 0.2438458525056509, + 0.21080720061209918, + 0.18334853926936936, + 0.16078984885448855, + 0.1377045322911353, + 0.11681992790961643 + ] + }, + "Right kydney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999998, + "Dp": 0.02, + "data": [ + 0.501861357210631, + 0.5001593483015608, + 0.49855253205274624, + 0.4926145235545945, + 0.4841060596378229, + 0.467399570741928, + 0.45182768455435024, + 0.42505666274766435, + 0.39772300337601524, + 0.37392153864997957, + 0.33241297557901617, + 0.26757346447269825, + 0.21497441992009067, + 0.17433585508078625, + 0.14217341634666694, + 0.10865281103170246, + 0.0826008946174441 + ] + }, + "right kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999993, + "data": [ + 0.5208754608816284, + 0.5177599373369578, + 0.5159871969146486, + 0.5081852851734998, + 0.4968639516664769, + 0.47650507413932525, + 0.45796696143101256, + 0.4268539438364675, + 0.39361665966954706, + 0.36827519002102993, + 0.32478573270628175, + 0.26021434956518635, + 0.21066494522536644, + 0.1706736117265773, + 0.13943891558597393, + 0.10672048217237856, + 0.08180341258292159 + ] + }, + "Left kidney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999999, + "Dp": 0.019999999999999997, + "data": [ + 0.5033065121415413, + 0.5002247417914546, + 0.4985926397905127, + 0.4927646717622255, + 0.4835754284047293, + 0.4669432078624889, + 0.45232943478278453, + 0.425678370631907, + 0.39776866069502753, + 0.37281667197970075, + 0.3321688835729243, + 0.2682380510186299, + 0.21603864590696598, + 0.17519102149895155, + 0.14175658010714412, + 0.10830143126315064, + 0.08296172414662684 + ] + }, + "left kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999996, + "data": [ + 0.5202367421314713, + 0.517582919140878, + 0.5143734976349112, + 0.5087791551710289, + 0.4973392497595593, + 0.47581912222164613, + 0.45686778022661556, + 0.42673825076286126, + 0.39543206352542226, + 0.3684315306226296, + 0.32558645194510094, + 0.25971995906280637, + 0.21200477574415355, + 0.17158586289959343, + 0.13953654958157938, + 0.10704963790291831, + 0.08298482395650605 + ] + }, + "spleen": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.19999999999999998, + "Dp": 0.03000000000000001, + "data": [ + 0.4633692922492748, + 0.4608173827411864, + 0.45663785775020815, + 0.4478984547968609, + 0.43376341665756496, + 0.41199643742282105, + 0.3937096584993741, + 0.36815889019392034, + 0.3452214371981628, + 0.3296658207665123, + 0.3057791011856441, + 0.26833111234160484, + 0.23465377472183208, + 0.2061577902691235, + 0.18052054647983584, + 0.15260129573636785, + 0.1317522256173857 + ] + }, + "Artery": { + "noise": 0.0005, + "D": 0.0029999999999999988, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6329856035441024, + 0.5728285529001477, + 0.5184314855875652, + 0.3847843295846746, + 0.23252647560848577, + 0.08572768821590585, + 0.03159372985367459, + 0.004000232205829777, + -0.0001172238846332941, + -0.0007424806983894791, + 0.0008467066796020709, + -0.00041077643710893326, + 0.0002875446528905022, + -0.00013950795657527608, + -0.0010723245880308648, + 5.754184642179242e-05, + -0.0006982030159626628 + ] + }, + "Vein": { + "noise": 0.0005, + "D": 0.002999999999999999, + "f": 1.0, + "Dp": 0.09999999999999999, + "data": [ + 0.46071692296157385, + 0.4171623535919409, + 0.37755866087468803, + 0.2800237262435988, + 0.1696733978460469, + 0.0625337433380359, + 0.022614026121644842, + 0.003709783518317094, + 5.392753776093848e-06, + 0.0007364920582022714, + -0.000690948273142203, + -0.0005448944642889613, + -7.817579756766464e-05, + -0.000893615600084431, + -0.0009227367136052914, + -0.0004915521176196833, + -0.00010376912576366496 + ] + }, + "asc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.028999999999999998, + "data": [ + 0.3760421235290813, + 0.3684107895299347, + 0.3606080229445746, + 0.3400185004642175, + 0.30955435468451076, + 0.25819120850370564, + 0.22051097795833044, + 0.16921862041818492, + 0.13472202226536364, + 0.1168876039604899, + 0.09984096141295469, + 0.08415759102098343, + 0.07426290978237177, + 0.06495205927270974, + 0.056576567218202395, + 0.04802609196260626, + 0.040501831540564866 + ] + }, + "trans lower intestine": { + "noise": 0.0005, + "D": 0.0013099999999999997, + "f": 0.6899999999999997, + "Dp": 0.029000000000000012, + "data": [ + 0.3752572898540075, + 0.3681808223668477, + 0.3606625661448032, + 0.33991689340235365, + 0.30899055243823154, + 0.2582562761941723, + 0.22059504125498886, + 0.17039381870756262, + 0.13476695465383987, + 0.11734467954187536, + 0.09986918960366611, + 0.08438212390941399, + 0.07401373523456882, + 0.06415535715575171, + 0.055823634748440175, + 0.0477877467206621, + 0.04049516222828481 + ] + }, + "desc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999997, + "Dp": 0.029000000000000015, + "data": [ + 0.3752502008057366, + 0.36863944436149726, + 0.36013616378882307, + 0.3400159526657052, + 0.30853689073227974, + 0.25866303135127944, + 0.22132567011737028, + 0.16947373439750593, + 0.13480130030518556, + 0.11527564393979656, + 0.10001551869326118, + 0.08433781219647178, + 0.07320556026932108, + 0.06418202006338097, + 0.05719173319072266, + 0.0484858647547128, + 0.04092340259814035 + ] + }, + "small intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.02900000000000001, + "data": [ + 0.37596862039605067, + 0.3682733235995992, + 0.3617768654834295, + 0.34060217180103586, + 0.3082587310651796, + 0.25866695621138736, + 0.2209804930665887, + 0.17005691105283105, + 0.1350689860113021, + 0.11618144021420873, + 0.0993435263796846, + 0.0846567295293485, + 0.0741348551366163, + 0.0650146981637986, + 0.05696063759879823, + 0.04893853275340602, + 0.040973080740072144 + ] + }, + "pericardium": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 0.07000000000000002, + "Dp": 0.009999999999999998, + "data": [ + 0.31053242330123115, + 0.3089704894192328, + 0.30826757541724287, + 0.3047430421738044, + 0.29882974777606564, + 0.2880555047252044, + 0.28015185371745205, + 0.26091336820124145, + 0.24037745974299143, + 0.2217658722521243, + 0.18861438413951315, + 0.13821331615964377, + 0.10147868037059818, + 0.07606077735744554, + 0.05531461162123857, + 0.0390260940924127, + 0.02665754958160917 + ] + }, + "config": { + "bvalues": [ + 0.0, + 1.0, + 2.0, + 5.0, + 10.0, + 20.0, + 30.0, + 50.0, + 75.0, + 100.0, + 150.0, + 250.0, + 350.0, + 450.0, + 550.0, + 675.0, + 800.0 + ] + } +} \ No newline at end of file diff --git a/tests/IVIMmodels/unit_tests/generic_two.json b/tests/IVIMmodels/unit_tests/generic_two.json new file mode 100644 index 0000000..9d81d48 --- /dev/null +++ b/tests/IVIMmodels/unit_tests/generic_two.json @@ -0,0 +1,642 @@ +{ + "Myocardium LV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.08, + "data": [ + 0.3702693586968183, + 0.3658113919176701, + 0.36088383536639373, + 0.348248809894606, + 0.33185741258841583, + 0.31039979768732034, + 0.2979060891657501, + 0.2800834377309574, + 0.2635379438004032, + 0.24733319662931452, + 0.21944469694850227, + 0.17335986723357252, + 0.13591105982588525, + 0.11905248369788386, + 0.09471000022386601, + 0.058914891651445075, + 0.04608591620941577, + 0.028144026200946498, + 0.022628558420793612, + 0.017522101631152708 + ] + }, + "myocardium RV": { + "noise": 0.0005, + "D": 0.0024, + "f": 0.14999999999999997, + "Dp": 0.07999999999999999, + "data": [ + 0.3699590514099429, + 0.36518055377337016, + 0.3599594187725478, + 0.3476212403334872, + 0.33271429944923436, + 0.3099606368726962, + 0.2979395579132411, + 0.2806762266783783, + 0.2629273556543216, + 0.24696110491613124, + 0.21887040432950788, + 0.173230056587018, + 0.13558461809504765, + 0.12026947142609139, + 0.09458474882439456, + 0.05838750252779018, + 0.04625878769583981, + 0.02964255940609791, + 0.022194082152596536, + 0.017640529157968456 + ] + }, + "myocardium ra": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.07000000000000002, + "Dp": 0.07000000000000002, + "data": [ + 0.36954854966506584, + 0.36808958041628237, + 0.36578382492796, + 0.3596873307128424, + 0.35119003005771693, + 0.3402218990989589, + 0.3325354748039068, + 0.3199243116064692, + 0.30692145557574724, + 0.29560677596352014, + 0.2738348839446459, + 0.23727194536215346, + 0.2039432804657374, + 0.18806485466281667, + 0.1623813339175976, + 0.1210498783100664, + 0.10387255621893282, + 0.07654046255611914, + 0.06636093893774088, + 0.05624017956588157 + ] + }, + "Blood RV": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 1.0, + "Dp": 0.1, + "data": [ + 0.6778192190148219, + 0.6133798515961226, + 0.556088789717979, + 0.4113568103830811, + 0.24961964532720393, + 0.09080744996840595, + 0.03382527019674723, + 0.004408117259613578, + 0.00045553733068637374, + 0.000503125759996453, + 1.983269390970912e-05, + 0.0008540302765523516, + -0.0004639912629274808, + 0.00026624292456458427, + -0.0004133282994597784, + 0.0008349118780449664, + -0.0005441522191380494, + 0.000687948274692782, + 0.0004377570312497899, + 0.0009277683845607746 + ] + }, + "Blood RA": { + "noise": 0.0005, + "D": 0.0029999999999999996, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6782546110257667, + 0.6134517304678615, + 0.5548127648067851, + 0.4114239656287577, + 0.24887748862716738, + 0.09079599685946198, + 0.03371767232252899, + 0.004805110405512278, + 0.00026876176749920775, + 0.00040588375443952296, + -0.0006965979484067293, + 8.076766957486596e-05, + 0.00016423439485830103, + -8.392734987945414e-05, + 0.0006679749764988951, + -2.5920857836801525e-05, + -0.0003629218573041546, + -0.00039093721570387723, + 0.00039384926384773374, + 0.00012104787677111193 + ] + }, + "Liver": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.11000000000000007, + "Dp": 0.1, + "data": [ + 0.3757109448308187, + 0.37159844414563903, + 0.36757652739770263, + 0.356557608867519, + 0.34449730557688585, + 0.3302728683761254, + 0.32190934545514716, + 0.3107958823547343, + 0.29974906057981404, + 0.28866208804957083, + 0.2665084616887995, + 0.2302577123949886, + 0.19706801799607893, + 0.1832752253232415, + 0.15837298913841621, + 0.11665617079584324, + 0.10000030496904469, + 0.07404307442849148, + 0.06495957665209634, + 0.05483374055592094 + ] + }, + "esophagus": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.3763684248390922, + 0.3716690433953235, + 0.3684398070125203, + 0.35627899050542133, + 0.339417713149662, + 0.31308334507401414, + 0.2915420978743738, + 0.26129061682183885, + 0.2384202176130894, + 0.22151695290052925, + 0.20117853599523902, + 0.1684183609905242, + 0.14183744408751564, + 0.1315396047738329, + 0.10977880341266463, + 0.08005353964509221, + 0.06712757864741688, + 0.04833947529809361, + 0.04146163817520504, + 0.03455872783233795 + ] + }, + "esophagus cont": { + "noise": 0.0005, + "D": 0.00167, + "f": 0.31999999999999995, + "Dp": 0.030000000000000002, + "data": [ + 0.37462894838301514, + 0.3720530346008417, + 0.36843248323575206, + 0.3565356241811968, + 0.33996760567465895, + 0.31328632071063633, + 0.29270944820365774, + 0.2615459979475671, + 0.23807817779668547, + 0.22320044414983747, + 0.1999117351921243, + 0.1676738426708589, + 0.14276735110298336, + 0.13052790082823468, + 0.1109251534695818, + 0.07986815989178006, + 0.06705822051130327, + 0.04817147054320976, + 0.040252823172101694, + 0.03297409449781737 + ] + }, + "st wall": { + "noise": 0.0005, + "D": 0.0015, + "f": 0.29999999999999993, + "Dp": 0.012, + "data": [ + 0.3098141733591781, + 0.3082074381190147, + 0.3078695213400233, + 0.3034727420507079, + 0.2964110002277156, + 0.28420503380855694, + 0.27262943426846253, + 0.2529703766199716, + 0.23181362413314785, + 0.21533240442803878, + 0.18866423965466494, + 0.1538288039226577, + 0.12950065073939387, + 0.12059987005634037, + 0.10255406801471251, + 0.0751816813266571, + 0.065827415329894, + 0.04812765285057304, + 0.04167649611384921, + 0.03551573475439265 + ] + }, + "pancreas": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.14999999999999997, + "Dp": 0.01, + "data": [ + 0.38756225390826055, + 0.3872122826532023, + 0.3860078505067888, + 0.3830768983596228, + 0.37823092947045667, + 0.36829130062215193, + 0.3600939050529845, + 0.3435730967601404, + 0.3264492967453999, + 0.31073467885484346, + 0.28456975049732525, + 0.24277255847622417, + 0.21083144739250173, + 0.19650044547554904, + 0.1720142200643823, + 0.1329213887976826, + 0.11670206758607972, + 0.08950800958271371, + 0.0790399753516848, + 0.0688924090609339 + ] + }, + "Right kydney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999998, + "Dp": 0.02, + "data": [ + 0.5024134360525454, + 0.49967955589507934, + 0.49855493954163826, + 0.49199152381416755, + 0.483876177656154, + 0.46697056889461863, + 0.45258029399573063, + 0.42576860693199514, + 0.3976785585068113, + 0.3731355639860924, + 0.33249383314953795, + 0.2675824000896771, + 0.21560536283229206, + 0.19372138515531967, + 0.15734329530514515, + 0.10235971206017905, + 0.08365950704649015, + 0.05416208775236745, + 0.04459097924092662, + 0.035631550942277115 + ] + }, + "right kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999993, + "data": [ + 0.520970249617124, + 0.5180181992381727, + 0.5155496458041684, + 0.5079475781684871, + 0.49632458096923704, + 0.47678196919856103, + 0.45725038169352444, + 0.425184848027401, + 0.3942659326986897, + 0.368763452046604, + 0.3250926326082689, + 0.2600987607942856, + 0.21130881759101403, + 0.1900591212481588, + 0.15320475908183176, + 0.10120805670330735, + 0.08212720086034529, + 0.053726067725237275, + 0.04420656695855129, + 0.035767373307356964 + ] + }, + "Left kidney cortex": { + "noise": 0.0005, + "D": 0.00212, + "f": 0.09699999999999999, + "Dp": 0.019999999999999997, + "data": [ + 0.5026509011050787, + 0.5000605331061267, + 0.4985617678716717, + 0.4931987195802715, + 0.4844328811923807, + 0.46788156612051746, + 0.4529877235843519, + 0.4251152066472877, + 0.3983175476121099, + 0.37320460069166983, + 0.332798388536223, + 0.2678028254377492, + 0.21625379421467245, + 0.19428256271138525, + 0.1566145472578746, + 0.10280447119758623, + 0.08309876376214373, + 0.054942418155614625, + 0.044202048037356965, + 0.03638958227500357 + ] + }, + "left kidney medulla": { + "noise": 0.0005, + "D": 0.0020900000000000003, + "f": 0.158, + "Dp": 0.018999999999999996, + "data": [ + 0.5203300455018787, + 0.5173615637562683, + 0.5153744228547334, + 0.5091457111013956, + 0.4975560647880122, + 0.47568987903705295, + 0.4580274481531342, + 0.42696924048113477, + 0.39417705335618797, + 0.3684497064759244, + 0.3249096356380034, + 0.25954330078146826, + 0.21109514544351798, + 0.1898490155996618, + 0.1541862946760122, + 0.10224608065004737, + 0.0831710602684984, + 0.0548599688449115, + 0.043942760790377074, + 0.03568830644449845 + ] + }, + "spleen": { + "noise": 0.0005, + "D": 0.0012999999999999997, + "f": 0.19999999999999998, + "Dp": 0.03000000000000001, + "data": [ + 0.46435366019885127, + 0.46084163459696925, + 0.45667852020366684, + 0.4476575283091254, + 0.4350544539626486, + 0.4122121873998087, + 0.3943459306624004, + 0.3681892052269292, + 0.3455669960943969, + 0.329857017690688, + 0.3055824720689972, + 0.2680670041053236, + 0.234858226051318, + 0.2203184355991127, + 0.19288678797754702, + 0.14979037176524007, + 0.13078883584203915, + 0.1005425150387226, + 0.0890240291185502, + 0.07787014574035453 + ] + }, + "Artery": { + "noise": 0.0005, + "D": 0.0029999999999999988, + "f": 1.0, + "Dp": 0.09999999999999998, + "data": [ + 0.6336810126463138, + 0.5727602562179909, + 0.5191342663464013, + 0.38361717582666377, + 0.23335430957251738, + 0.08603861537554454, + 0.032331499133981235, + 0.004146432276395187, + 0.00024281779351646477, + -0.0001859837347886701, + -0.0002587493727012945, + -0.0001972264887359046, + 0.0004899130695393009, + 0.00028083506379054013, + -9.587296870972679e-05, + -0.000846470993722882, + -5.1564240994511656e-05, + -0.00038538983696590433, + 0.00014854610943451, + 0.0009442159977793726 + ] + }, + "Vein": { + "noise": 0.0005, + "D": 0.002999999999999999, + "f": 1.0, + "Dp": 0.09999999999999999, + "data": [ + 0.4617772807374701, + 0.4170817415244035, + 0.3776932168254059, + 0.2790768199483855, + 0.16935393940456073, + 0.06276546172209892, + 0.022186060668575786, + 0.003530559611540989, + -7.92635900374515e-05, + -0.00029600591681532283, + 0.0003850226601733434, + -0.00011612854178696968, + -0.00020099386778150058, + 0.0003303162544471727, + -0.0005467494528780173, + -0.00034496938866110144, + 0.0004671884332410518, + 4.1970245500659427e-05, + -0.0008904086227630517, + 0.0006361315738548206 + ] + }, + "asc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.028999999999999998, + "data": [ + 0.3758930792047429, + 0.36871753415550856, + 0.3596646182674821, + 0.34064921555832417, + 0.30870691010518925, + 0.2582272686179002, + 0.221043089173151, + 0.1697427289837398, + 0.13576211924902365, + 0.11657239096913335, + 0.09974041437941726, + 0.084471000128348, + 0.07361374280718957, + 0.06839430869527796, + 0.060340500144174566, + 0.0461358155720791, + 0.04043988203898548, + 0.032151323740629956, + 0.027567944335165455, + 0.024265661849860197 + ] + }, + "trans lower intestine": { + "noise": 0.0005, + "D": 0.0013099999999999997, + "f": 0.6899999999999997, + "Dp": 0.029000000000000012, + "data": [ + 0.3759404148880361, + 0.3675541200645044, + 0.3613803014496283, + 0.3399067607276812, + 0.3095391993454061, + 0.25891221279657134, + 0.2205283124964161, + 0.1697945911920154, + 0.13482873024065561, + 0.11616496873797194, + 0.09928818356326169, + 0.0842950343494812, + 0.07325243765821013, + 0.06916116187486239, + 0.059770108433779265, + 0.04567961595718216, + 0.04046929445515685, + 0.031768846197637854, + 0.02797843022088174, + 0.02379095768329987 + ] + }, + "desc lower intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999997, + "Dp": 0.029000000000000015, + "data": [ + 0.37611573102626933, + 0.36784568192780026, + 0.36006529738597887, + 0.33963104084021395, + 0.30906385603936554, + 0.2587005991218242, + 0.2216086333941438, + 0.16978037219990644, + 0.13482754339911998, + 0.11678284374227575, + 0.09922612717842208, + 0.08367704938870292, + 0.07251044847593266, + 0.06950723729260386, + 0.0607019395236844, + 0.04643446076552353, + 0.040769941856057874, + 0.031644901756228805, + 0.027533666391557826, + 0.02425481425960014 + ] + }, + "small intestine": { + "noise": 0.0005, + "D": 0.00131, + "f": 0.6899999999999998, + "Dp": 0.02900000000000001, + "data": [ + 0.3757102853596951, + 0.3684658779825414, + 0.3600484871917735, + 0.33972993558739695, + 0.30909922521121297, + 0.25832397264055074, + 0.22096591311154762, + 0.16984664861487841, + 0.13489729842561565, + 0.11670788214115055, + 0.09834354772408328, + 0.08487065744306915, + 0.07342640045705888, + 0.06893970052368144, + 0.05972429082443193, + 0.047126037636101806, + 0.040153340314957514, + 0.030638392384703037, + 0.0281850925517453, + 0.024772049440956154 + ] + }, + "pericardium": { + "noise": 0.0005, + "D": 0.0030000000000000005, + "f": 0.07000000000000002, + "Dp": 0.009999999999999998, + "data": [ + 0.3103093353499032, + 0.3086555979462937, + 0.30868551309587694, + 0.3054401417241601, + 0.3000029954428556, + 0.28945134888384705, + 0.2802004082880951, + 0.26178803339645007, + 0.2407823261780593, + 0.2215963893368975, + 0.1882027440790469, + 0.1374763807694227, + 0.10141005432707072, + 0.08739455730843261, + 0.06381550663211193, + 0.035407574842628166, + 0.026744554367110734, + 0.014898384338215711, + 0.010535994594789228, + 0.008640506769047538 + ] + }, + "config": { + "bvalues": [ + 0.0, + 1.0, + 2.0, + 5.0, + 10.0, + 20.0, + 30.0, + 50.0, + 75.0, + 100.0, + 150.0, + 250.0, + 350.0, + 400.0, + 500.0, + 700.0, + 800.0, + 1000.0, + 1100.0, + 1200.0 + ] + } +} \ No newline at end of file From 56ee7173c91c7a1dd64412d3884a3167c7514665 Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Sun, 10 Mar 2024 11:16:17 +0530 Subject: [PATCH 54/87] Changed the default value to the b_values.json and also move the download_data function outside of the function phantom to ensure that the download_data function is called only once --- phantoms/MR_XCAT_qMRI/sim_ivim_sig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py b/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py index 0c77ae0..f4d480e 100644 --- a/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py +++ b/phantoms/MR_XCAT_qMRI/sim_ivim_sig.py @@ -12,7 +12,6 @@ # This code generates a 4D IVIM phantom as nifti file def phantom(bvalue, noise, TR=3000, TE=40, motion=False, rician=False, interleaved=False): - download_data() np.random.seed(42) if motion: states = range(1,21) @@ -412,12 +411,13 @@ def parse_bvalues_file(file_path): elif args.bvalue: bvalues = {"cmd": args.bvalue} else: - bvalues = {"original": [0., 1, 2, 5, 10, 20, 30, 50, 75, 100, 150, 250, 350, 400, 550, 700, 850, 1000]} + bvalues = parse_bvalues_file("b_values.json") noise = args.noise motion = args.motion interleaved = args.interleaved + download_data() for key, bvalue in bvalues.items(): bvalue = np.array(bvalue) sig, XCAT, Dim, fim, Dpim, legend = phantom(bvalue, noise, motion=motion, interleaved=interleaved) From 6d210a0e68bbb9969dee5d8d0e7339ac5b22868d Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:04:38 +0530 Subject: [PATCH 55/87] created wrapper column --- repostatus.py | 37 ----------- requirements.txt | 3 +- utilities/repostatus.py | 64 +++++++++++++++++++ .../combined_report.html | 20 ++++++ 4 files changed, 86 insertions(+), 38 deletions(-) delete mode 100644 repostatus.py create mode 100644 utilities/repostatus.py rename combined_report.html => website/combined_report.html (87%) diff --git a/repostatus.py b/repostatus.py deleted file mode 100644 index b5727dc..0000000 --- a/repostatus.py +++ /dev/null @@ -1,37 +0,0 @@ -import os -import pandas as pd -from dotenv import load_dotenv -import json - -# Load environment variables -load_dotenv(r'C:\Users\home\tf2.4\TF2.4_IVIM-MRI_CodeCollection\local.env') - -# Read the CSV file -csv_file_path = os.getenv('CODE_CONTRIBUTIONS_FILE') -df = pd.read_csv(csv_file_path) - -unique_subfolders = df['subfolder'].unique().tolist() - -# Read the JSON file -algorithms_file_path = os.getenv('ALGORITHMS_FILE') -with open(algorithms_file_path, 'r') as f: - algorithms_data = json.load(f) - -# Get a list of all algorithms from the JSON file -all_algorithms = algorithms_data['algorithms'] - -# Add a new column 'Tested' to the DataFrame if it starts with that of subfolder -df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm.startswith(row['subfolder'].split('_')[0]) for algorithm in all_algorithms) else 'No', axis=1) - -# Select the desired columns -df_selected = df[['Technique', 'subfolder', 'Authors', 'Tested']] -df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Tested'] - -# Convert the DataFrame to HTML -html_string = df_selected.to_html(index=False) - -# Save the HTML to a file -with open('combined_report.html', 'w') as f: - f.write(html_string) -# printing message that report have been succesfully generated -print("Combined HTML report generated successfully.") \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 382e3c9..9a76d4f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,5 @@ matplotlib scienceplots cvxpy pytest -tqdm \ No newline at end of file +tqdm +pandas \ No newline at end of file diff --git a/utilities/repostatus.py b/utilities/repostatus.py new file mode 100644 index 0000000..294f81d --- /dev/null +++ b/utilities/repostatus.py @@ -0,0 +1,64 @@ +import os +import pandas as pd +import json + +# directory of the current script +script_dir = os.path.dirname(os.path.abspath(__file__)) + +# path to the repository +REPO_DIR = os.path.dirname(script_dir) + +CODE_CONTRIBUTIONS_FILE = os.path.join(REPO_DIR, "doc", "code_contributions_record.csv") +ALGORITHMS_FILE = os.path.join(REPO_DIR, "tests", "IVIMmodels", "unit_tests", "algorithms.json") +SOURCE_FOLDER = os.path.join(REPO_DIR, "src", "original") +WRAPPED_FOLDER = os.path.join(REPO_DIR, "src", "standardized") + +# Read the CSV file +df = pd.read_csv(CODE_CONTRIBUTIONS_FILE) + +unique_subfolders = df['subfolder'].unique().tolist() + +# Read the JSON file +with open(ALGORITHMS_FILE, 'r') as f: + algorithms_data = json.load(f) + +# list of all algorithms from the JSON file +all_algorithms = algorithms_data['algorithms'] + +# Check if both code_contributions_file matches with source folder +for subfolder in unique_subfolders: + subfolder_path = os.path.join(SOURCE_FOLDER, subfolder) + if not os.path.exists(subfolder_path): + print(f"Warning: Subfolder '{subfolder}' does not exist in the source folder.") + +# Add column 'Tested' to the DataFrame if it starts with that of subfolder +df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm.startswith(row['subfolder'].split('_')[0]) for algorithm in all_algorithms) else 'No', axis=1) + +# Parse files in the WRAPPED_FOLDER +wrapped_algorithms = [] +for root, dirs, files in os.walk(WRAPPED_FOLDER): + for file in files: + if file.endswith('.py'): + file_path = os.path.join(root, file) + with open(file_path, 'r') as f: + content = f.read() + for algorithm in all_algorithms: + if algorithm in content: + wrapped_algorithms.append(algorithm) + +# Add a column 'Wrapped' to the DataFrame +df['Wrapped'] = df.apply(lambda row: 'Yes' if any(algorithm.startswith(row['subfolder'].split('_')[0]) for algorithm in wrapped_algorithms) else 'No', axis=1) + +# Select the desired columns +df_selected = df[['Technique', 'subfolder', 'Authors', 'Tested', 'Wrapped']] +df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Tested', 'Wrapped'] + +# Convert the DataFrame to HTML +html_string = df_selected.to_html(index=False) + +# Save the HTML to a file +with open(os.path.join(REPO_DIR, 'combined_report.html'), 'w') as f: + f.write(html_string) + +# Printing message that report has been successfully generated +print("Combined HTML report generated successfully.") \ No newline at end of file diff --git a/combined_report.html b/website/combined_report.html similarity index 87% rename from combined_report.html rename to website/combined_report.html index e1d8743..ca9608c 100644 --- a/combined_report.html +++ b/website/combined_report.html @@ -5,6 +5,7 @@ <th>Subfolder</th> <th>Contributors</th> <th>Tested</th> + <th>Wrapped</th> </tr> </thead> <tbody> @@ -13,114 +14,133 @@ <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>Tri-exponential</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>Tri-exponential</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion/Sebastiano Barbieri</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>PvH_KB_NKI</td> <td>Petra van Houdt/Stefan Zijlema/Koen Baas</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>PV_MUMC</td> <td>Paulien Voorter</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Farooq et al. Modified by Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Fadnavis et al. Modified by Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Modified by Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Modified by Ivan A. Rashid</td> <td>Yes</td> + <td>Yes</td> </tr> <tr> <td>IVIM</td> <td>OJ_GU</td> <td>Oscar Jalnefjord</td> <td>No</td> + <td>No</td> </tr> <tr> <td>IVIM</td> <td>OJ_GU</td> <td>Oscar Jalnefjord</td> <td>No</td> + <td>No</td> </tr> <tr> <td>IVIM</td> <td>OJ_GU</td> <td>Oscar Jalnefjord</td> <td>No</td> + <td>No</td> </tr> <tr> <td>IVIM</td> <td>ETP_SRI</td> <td>Eric Peterson</td> <td>Yes</td> + <td>Yes</td> </tr> </tbody> </table> \ No newline at end of file From 58a423e74c22fa6b6a745d85c41005297b9ab8a1 Mon Sep 17 00:00:00 2001 From: abhi ram <119055274+abhicodes369@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:06:30 +0530 Subject: [PATCH 56/87] Delete local.env.example --- local.env.example | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 local.env.example diff --git a/local.env.example b/local.env.example deleted file mode 100644 index 5df0161..0000000 --- a/local.env.example +++ /dev/null @@ -1,3 +0,0 @@ -REPO_DIR=/path/to/your/repo -CODE_CONTRIBUTIONS_FILE=/path/to/your/code_contributions_record.csv -ALGORITHMS_FILE=/path/to/your/algorithms.json From 6c1b907ef5149c8caf02776d3a0032fc3fba3bea Mon Sep 17 00:00:00 2001 From: abhi ram <119055274+abhicodes369@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:07:11 +0530 Subject: [PATCH 57/87] Delete .gitignore --- .gitignore | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 5898042..0000000 --- a/.gitignore +++ /dev/null @@ -1,19 +0,0 @@ -.idea* -.github/* -.github/ISSUE_TEMPLATE/ -.github/pull_request_template.md -__pycache__/ -*.nii.gz -*.nii -*.dcm -*.mat -*.raw -bvals.txt -# Unit test / coverage reports -.tox/ -.coverage -.cache -nosetests.xml -coverage.xml -*.pyc -local.env From 321fa5549a274a83b86371f01cbea1042f6e6060 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:33:11 +0530 Subject: [PATCH 58/87] Adding recovered .gitignore file --- .gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..59de036 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +.idea* +.github/* +.github/ISSUE_TEMPLATE/ +.github/pull_request_template.md +__pycache__/ +*.nii.gz +*.nii +*.dcm +*.mat +*.raw +bvals.txt +# Unit test / coverage reports +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml +*.pyc \ No newline at end of file From e6a47211410ed57705e2ec32adb397ac6663d061 Mon Sep 17 00:00:00 2001 From: Unique-Usman <usmanakinyemi202@gmail.com> Date: Tue, 12 Mar 2024 16:27:57 +0530 Subject: [PATCH 59/87] Update the README file to include the information the sim_vim_sig.py and also how to run the script. --- phantoms/MR_XCAT_qMRI/README.md | 62 ++++++++++++++++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/phantoms/MR_XCAT_qMRI/README.md b/phantoms/MR_XCAT_qMRI/README.md index f280597..3b95f52 100644 --- a/phantoms/MR_XCAT_qMRI/README.md +++ b/phantoms/MR_XCAT_qMRI/README.md @@ -1 +1,61 @@ -# MR_XCAT_qMRI \ No newline at end of file +# 4D IVIM Phantom Generator + +A command-line tool for generating a 4D IVIM (Intravoxel Incoherent Motion) phantom as a NIfTI file. + +## Usage + +```sh +python sim_vim_sig.py [-h] [-b BVALUE [BVALUE ...] | -f FILE] [-n NOISE] [-m] [-i] +``` + +## Arguments + +- `-b`, `--bvalue` : B values (list of numbers) +- `-f`, `--bvalues-file` : JSON file containing the B values (default: b_values.json) +- `-n`, `--noise` : Noise level (default: 0.0005) +- `-m`, `--motion` : Enable motion flag (default: False) +- `-i`, `--interleaved` : Enable interleaved flag (default: False) + +**Note:** Either provide `--bvalue` or `--bvalues-file`, not both. + +If neither `--bvalues-file` nor `--bvalue` is provided, the script will use the default `b_values.json` file. + +## Customizing B Values + +You can customize the B values by editing the `b_values.json` file. Here's an example of the default format: + +```json +{ + "original": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 400.0, 550.0, 700.0, 850.0, 1000.0], + "one": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 400.0, 550.0, 700.0, 850.0, 1000.0, 1100.0, 1200.0], + "two": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 400.0, 500.0, 700.0, 800.0, 1000.0, 1100.0, 1200.0], + "three": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 350.0, 450.0, 550.0, 675.0, 800.0], + "four": [0.0, 1.0, 2.0, 5.0, 10.0, 20.0, 30.0, 50.0, 75.0, 100.0, 150.0, 250.0, 300.0, 400.0, 500.0, 600.0, 700.0, 800.0] +} +``` + +You can add or remove values as needed for your simulation. Here are the effects of customizing the B values for each of the generic profiles (`generic.json`, `generic_one.json`, `generic_two.json`, `generic_three.json`, `generic_four.json`): + +The default `generic_<custom_name>.json` file can be found in the following location: + +``` +TF2.4_IVIM-MRI_CodeCollection/tests/IVIMmodels/unit_tests +``` + +## Running the Script + +To run the script, you can add the following line to your shell configuration file (e.g., `.bashrc` or `.zshrc`) to include the necessary directory in your `PYTHONPATH`: + +```sh +export PYTHONPATH=$PYTHONPATH:~/TF2.4_IVIM-MRI_CodeCollection +``` + +Replace `~/TF2.4_IVIM-MRI_CodeCollection` with the actual path to the directory containing the script. + +## Example + +```sh +python sim_ivim_sig.py -n 0.0001 -m +``` + +This command will generate a 4D IVIM phantom using B values from the default `b_values.json` file, with a noise level of 0.0001 and motion enabled. From 09b0a91be8135470e7784c6546077e43c070923b Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Wed, 13 Mar 2024 08:21:02 +0200 Subject: [PATCH 60/87] Generate API documentation using Sphinx. --- .github/workflows/sphinx.yml | 51 ++++++++++++++++++++++++++++++++++++ doc/Makefile | 20 ++++++++++++++ doc/conf.py | 36 +++++++++++++++++++++++++ doc/index.rst | 18 +++++++++++++ requirements.txt | 4 ++- 5 files changed, 128 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/sphinx.yml create mode 100644 doc/Makefile create mode 100644 doc/conf.py create mode 100644 doc/index.rst diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml new file mode 100644 index 0000000..777e30a --- /dev/null +++ b/.github/workflows/sphinx.yml @@ -0,0 +1,51 @@ +name: Build Documentation + +on: + push: + branches: + - 'main' +permissions: + contents: read + pages: write + id-token: write +jobs: + build: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v4 + - name: Set up Python + id: setup_python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + - name: Cache pip + uses: actions/cache@v3 + id: pip-cache + with: + key: ${{ runner.os }}-${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }} + path: ${{ env.pythonLocation }} + if: steps.pip-cache.outputs.cache-hit != 'true' + + - name: Install dependencies + run: | + pip install -r requirements.txt + + - name: Build html + run: | + sphinx-apidoc -o doc src + cd doc/ + make html + + - name: Upload docs artifact + uses: actions/upload-pages-artifact@v3 + with: + path: 'doc/_build/html' + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..41c270b --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) \ No newline at end of file diff --git a/doc/conf.py b/doc/conf.py new file mode 100644 index 0000000..e268db2 --- /dev/null +++ b/doc/conf.py @@ -0,0 +1,36 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +import os +import sys + +sys.path.insert(0, os.path.abspath("..")) + +project = 'TF2.4 IVIM MRI Code Collection' +copyright = '2024, OSIPI' +author = 'OSIPI team' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ["sphinx.ext.todo", "sphinx.ext.viewcode", "sphinx.ext.autodoc"] + +templates_path = ['_templates'] +exclude_patterns = ['Thumbs.db', '.DS_Store'] + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +html_show_sphinx = False + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +html_show_copyright = False + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'sphinx_rtd_theme' +html_static_path = ['_static'] diff --git a/doc/index.rst b/doc/index.rst new file mode 100644 index 0000000..86de157 --- /dev/null +++ b/doc/index.rst @@ -0,0 +1,18 @@ +.. TF2.4 IVIM MRI Code Collection documentation master file, created by + sphinx-quickstart on Wed Mar 6 00:06:13 2024. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to TF2.4 IVIM MRI Code Collection's documentation! +========================================================== + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + modules + +Indices and tables +================== + +* :ref:`modindex` diff --git a/requirements.txt b/requirements.txt index 0f3e4d7..31897a3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,4 +10,6 @@ scienceplots cvxpy zenodo-get pytest -tqdm \ No newline at end of file +tqdm +sphinx +sphinx_rtd_theme \ No newline at end of file From cf05312524f090c270d92dc8db6610947f1475a1 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Fri, 15 Mar 2024 23:15:33 +0530 Subject: [PATCH 61/87] added a new column in the csv file . please tell me if there are any modifications --- doc/code_contributions_record.csv | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/doc/code_contributions_record.csv b/doc/code_contributions_record.csv index 2d22f7c..8be6c98 100644 --- a/doc/code_contributions_record.csv +++ b/doc/code_contributions_record.csv @@ -1,20 +1,20 @@ -Technique,Category,Subcategory,notes,subfolder,Link to source code,Authors,Institution,function/module,DOI,Tester,test status -IVIM,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares/fit_least_squares_array,,tbd, -IVIM,Fitting,segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented/fit_segmented_array,,tbd, -Tri-exponential,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares_tri_exp/fit_least_squares_array_tri_exp,,tbd, -Tri-exponential,Fitting,Segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented_tri_exp/fit_segmented_array_tri_exp,https://doi.org/10.3389/fphys.2022.942495,tbd, -IVIM,Fitting,Bayesian,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion/Sebastiano Barbieri,Amsterdam UMC,fit_bayesian_array,https://doi.org/10.1002/mrm.28852,tbd, -IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd, -IVIM,Fitting,two-step (segmented) LSQ fitting, cut-off chosen for brain data; option to fit IVIM with inversion recovery or without IR,PV_MUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/PV_MUMC/,Paulien Voorter,Maastricht University Medical Center,two_step_IVIM_fit.py,,tbd, -IVIM,Fitting,bi-exponential NLLS,Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_biexp.py,Ivan A. Rashid,Lund University,IvimModelBiexp,tba,tbd, -IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D before a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_2step.py,Ivan A. Rashid,Lund University,IvimModelSegmented2Step,tba,tbd, -IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an estimate of D* followed by a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_3step.py,Ivan A. Rashid,Lund University,IvimModelSegmented3Step,tba,tbd, -IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D. Subtracts the diffusion signal and estimated D*. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_subtracted.py,Ivan A. Rashid,Lund University,IvimModelSubtracted,tba,tbd, -IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_mix.py,Farooq et al. Modified by Ivan A. Rashid,Lund University,IvimModelVP,https://doi.org/10.1038/srep38927,tbd, -IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd, -IVIM,Fitting,Linear fit,Linear fit for D with extrapolation for f. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_linear.py,Modified by Ivan A. Rashid,Lund University,IvimModelLinear,tba,tbd, -IVIM,Fitting,sIVIM fit,NLLS of the simplified IVIM model (sIVIM). Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_sivim.py,Modified by Ivan A. Rashid,Lund University,IvimModelsIVIM,tba,tbd, -IVIM,Fitting,Segmented NLLS fitting,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_seg,https://doi.org/10.1007/s10334-018-0697-5,tbd, -IVIM,Fitting,Bayesian,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_bayes,https://doi.org/10.1002/mrm.26783,tbd, -IVIM,Fitting,Segmented NLLS fitting,Specifically tailored algorithm for NLLS segmented fitting,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,seg,https://doi.org/10.1007/s10334-018-0697-5,tbd, -IVIM,Fitting,Linear fit,Linear fit for D and D* and f. Intended to be extremely fast but not always accurate,ETP_SRI,TF2.4_IVIM-MRI_CodeCollection/src/original/ETP_SRI/LinearFitting.py,Eric Peterson,SRI International,,,tbd, +Technique,Category,Subcategory,notes,subfolder,Link to source code,Authors,Institution,function/module,DOI,Tester,test status,wrapped +IVIM,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares/fit_least_squares_array,,tbd,,no +IVIM,Fitting,segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented/fit_segmented_array,,tbd,,yes +Tri-exponential,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares_tri_exp/fit_least_squares_array_tri_exp,,tbd,,no +Tri-exponential,Fitting,Segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented_tri_exp/fit_segmented_array_tri_exp,https://doi.org/10.3389/fphys.2022.942495,tbd,,yes +IVIM,Fitting,Bayesian,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion/Sebastiano Barbieri,Amsterdam UMC,fit_bayesian_array,https://doi.org/10.1002/mrm.28852,tbd,,yes +IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd,,yes +IVIM,Fitting,two-step (segmented) LSQ fitting, cut-off chosen for brain data; option to fit IVIM with inversion recovery or without IR,PV_MUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/PV_MUMC/,Paulien Voorter,Maastricht University Medical Center,two_step_IVIM_fit.py,,tbd,,yes +IVIM,Fitting,bi-exponential NLLS,Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_biexp.py,Ivan A. Rashid,Lund University,IvimModelBiexp,tba,tbd,,yes +IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D before a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_2step.py,Ivan A. Rashid,Lund University,IvimModelSegmented2Step,tba,tbd,,yes +IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an estimate of D* followed by a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_3step.py,Ivan A. Rashid,Lund University,IvimModelSegmented3Step,tba,tbd,,yes +IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D. Subtracts the diffusion signal and estimated D*. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_subtracted.py,Ivan A. Rashid,Lund University,IvimModelSubtracted,tba,tbd,,yes +IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_mix.py,Farooq et al. Modified by Ivan A. Rashid,Lund University,IvimModelVP,https://doi.org/10.1038/srep38927,tbd,,yes +IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd,,yes +IVIM,Fitting,Linear fit,Linear fit for D with extrapolation for f. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_linear.py,Modified by Ivan A. Rashid,Lund University,IvimModelLinear,tba,tbd,,no +IVIM,Fitting,sIVIM fit,NLLS of the simplified IVIM model (sIVIM). Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_sivim.py,Modified by Ivan A. Rashid,Lund University,IvimModelsIVIM,tba,tbd,,no +IVIM,Fitting,Segmented NLLS fitting,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,yes +IVIM,Fitting,Bayesian,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_bayes,https://doi.org/10.1002/mrm.26783,tbd,,no +IVIM,Fitting,Segmented NLLS fitting,Specifically tailored algorithm for NLLS segmented fitting,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,no +IVIM,Fitting,Linear fit,Linear fit for D and D* and f. Intended to be extremely fast but not always accurate,ETP_SRI,TF2.4_IVIM-MRI_CodeCollection/src/original/ETP_SRI/LinearFitting.py,Eric Peterson,SRI International,,,tbd,,yes \ No newline at end of file From baf5d4a68a1901def566ce77e7280ce860717451 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Sat, 16 Mar 2024 02:23:12 +0530 Subject: [PATCH 62/87] added a new column in the csv file please tell me if there are any modifications --- doc/code_contributions_record.csv | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/code_contributions_record.csv b/doc/code_contributions_record.csv index 8be6c98..c4c4160 100644 --- a/doc/code_contributions_record.csv +++ b/doc/code_contributions_record.csv @@ -1,20 +1,20 @@ Technique,Category,Subcategory,notes,subfolder,Link to source code,Authors,Institution,function/module,DOI,Tester,test status,wrapped IVIM,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares/fit_least_squares_array,,tbd,,no -IVIM,Fitting,segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented/fit_segmented_array,,tbd,,yes +IVIM,Fitting,segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented/fit_segmented_array,,tbd,,OGC_AmsterdamUMC_biexp Tri-exponential,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares_tri_exp/fit_least_squares_array_tri_exp,,tbd,,no -Tri-exponential,Fitting,Segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented_tri_exp/fit_segmented_array_tri_exp,https://doi.org/10.3389/fphys.2022.942495,tbd,,yes -IVIM,Fitting,Bayesian,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion/Sebastiano Barbieri,Amsterdam UMC,fit_bayesian_array,https://doi.org/10.1002/mrm.28852,tbd,,yes -IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd,,yes -IVIM,Fitting,two-step (segmented) LSQ fitting, cut-off chosen for brain data; option to fit IVIM with inversion recovery or without IR,PV_MUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/PV_MUMC/,Paulien Voorter,Maastricht University Medical Center,two_step_IVIM_fit.py,,tbd,,yes -IVIM,Fitting,bi-exponential NLLS,Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_biexp.py,Ivan A. Rashid,Lund University,IvimModelBiexp,tba,tbd,,yes -IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D before a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_2step.py,Ivan A. Rashid,Lund University,IvimModelSegmented2Step,tba,tbd,,yes -IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an estimate of D* followed by a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_3step.py,Ivan A. Rashid,Lund University,IvimModelSegmented3Step,tba,tbd,,yes -IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D. Subtracts the diffusion signal and estimated D*. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_subtracted.py,Ivan A. Rashid,Lund University,IvimModelSubtracted,tba,tbd,,yes -IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_mix.py,Farooq et al. Modified by Ivan A. Rashid,Lund University,IvimModelVP,https://doi.org/10.1038/srep38927,tbd,,yes -IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd,,yes +Tri-exponential,Fitting,Segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented_tri_exp/fit_segmented_array_tri_exp,https://doi.org/10.3389/fphys.2022.942495,tbd,,OGC_AmsterdamUMC_biexp_segmented +IVIM,Fitting,Bayesian,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion/Sebastiano Barbieri,Amsterdam UMC,fit_bayesian_array,https://doi.org/10.1002/mrm.28852,tbd,,OGC_AmsterdamUMC_Bayesian_biexp +IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd,,PvH_KB_NKI_IVIMfit.py +IVIM,Fitting,two-step (segmented) LSQ fitting, cut-off chosen for brain data; option to fit IVIM with inversion recovery or without IR,PV_MUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/PV_MUMC/,Paulien Voorter,Maastricht University Medical Center,two_step_IVIM_fit.py,,tbd,,PV_MUMC_biexp +IVIM,Fitting,bi-exponential NLLS,Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_biexp.py,Ivan A. Rashid,Lund University,IvimModelBiexp,tba,tbd,,IAR_LU_biexp +IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D before a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_2step.py,Ivan A. Rashid,Lund University,IvimModelSegmented2Step,tba,tbd,,IAR_LU_segmented_2step.py +IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an estimate of D* followed by a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_3step.py,Ivan A. Rashid,Lund University,IvimModelSegmented3Step,tba,tbd,,IAR_LU_segmented_3step.py +IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D. Subtracts the diffusion signal and estimated D*. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_subtracted.py,Ivan A. Rashid,Lund University,IvimModelSubtracted,tba,tbd,,IAR_LU_subtracted +IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_mix.py,Farooq et al. Modified by Ivan A. Rashid,Lund University,IvimModelVP,https://doi.org/10.1038/srep38927,tbd,,IAR_LU_modified_mix +IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd,,IAR_LundUniversity_topopro IVIM,Fitting,Linear fit,Linear fit for D with extrapolation for f. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_linear.py,Modified by Ivan A. Rashid,Lund University,IvimModelLinear,tba,tbd,,no IVIM,Fitting,sIVIM fit,NLLS of the simplified IVIM model (sIVIM). Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_sivim.py,Modified by Ivan A. Rashid,Lund University,IvimModelsIVIM,tba,tbd,,no -IVIM,Fitting,Segmented NLLS fitting,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,yes +IVIM,Fitting,Segmented NLLS fitting,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,OJ_GU_seg IVIM,Fitting,Bayesian,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_bayes,https://doi.org/10.1002/mrm.26783,tbd,,no IVIM,Fitting,Segmented NLLS fitting,Specifically tailored algorithm for NLLS segmented fitting,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,no -IVIM,Fitting,Linear fit,Linear fit for D and D* and f. Intended to be extremely fast but not always accurate,ETP_SRI,TF2.4_IVIM-MRI_CodeCollection/src/original/ETP_SRI/LinearFitting.py,Eric Peterson,SRI International,,,tbd,,yes \ No newline at end of file +IVIM,Fitting,Linear fit,Linear fit for D and D* and f. Intended to be extremely fast but not always accurate,ETP_SRI,TF2.4_IVIM-MRI_CodeCollection/src/original/ETP_SRI/LinearFitting.py,Eric Peterson,SRI International,,,tbd,,ETP_SRI_LinearFitting \ No newline at end of file From d7df0ca7926421d0e1894f372297935ae881bea8 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Sat, 16 Mar 2024 02:56:16 +0530 Subject: [PATCH 63/87] added a new column to csv and modified python file --- doc/code_contributions_record.csv | 8 +++--- utilities/repostatus.py | 29 +++++-------------- website/combined_report.html | 48 +++++++++++++++---------------- 3 files changed, 35 insertions(+), 50 deletions(-) diff --git a/doc/code_contributions_record.csv b/doc/code_contributions_record.csv index c4c4160..e3c8e10 100644 --- a/doc/code_contributions_record.csv +++ b/doc/code_contributions_record.csv @@ -4,14 +4,14 @@ IVIM,Fitting,segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollecti Tri-exponential,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares_tri_exp/fit_least_squares_array_tri_exp,,tbd,,no Tri-exponential,Fitting,Segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented_tri_exp/fit_segmented_array_tri_exp,https://doi.org/10.3389/fphys.2022.942495,tbd,,OGC_AmsterdamUMC_biexp_segmented IVIM,Fitting,Bayesian,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion/Sebastiano Barbieri,Amsterdam UMC,fit_bayesian_array,https://doi.org/10.1002/mrm.28852,tbd,,OGC_AmsterdamUMC_Bayesian_biexp -IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd,,PvH_KB_NKI_IVIMfit.py +IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd,,PvH_KB_NKI_IVIMfit IVIM,Fitting,two-step (segmented) LSQ fitting, cut-off chosen for brain data; option to fit IVIM with inversion recovery or without IR,PV_MUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/PV_MUMC/,Paulien Voorter,Maastricht University Medical Center,two_step_IVIM_fit.py,,tbd,,PV_MUMC_biexp IVIM,Fitting,bi-exponential NLLS,Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_biexp.py,Ivan A. Rashid,Lund University,IvimModelBiexp,tba,tbd,,IAR_LU_biexp -IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D before a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_2step.py,Ivan A. Rashid,Lund University,IvimModelSegmented2Step,tba,tbd,,IAR_LU_segmented_2step.py -IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an estimate of D* followed by a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_3step.py,Ivan A. Rashid,Lund University,IvimModelSegmented3Step,tba,tbd,,IAR_LU_segmented_3step.py +IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D before a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_2step.py,Ivan A. Rashid,Lund University,IvimModelSegmented2Step,tba,tbd,,IAR_LU_segmented_2step +IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an estimate of D* followed by a bi-exponential NLLS fit. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_segmented_3step.py,Ivan A. Rashid,Lund University,IvimModelSegmented3Step,tba,tbd,,IAR_LU_segmented_3step IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D. Subtracts the diffusion signal and estimated D*. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_subtracted.py,Ivan A. Rashid,Lund University,IvimModelSubtracted,tba,tbd,,IAR_LU_subtracted IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_mix.py,Farooq et al. Modified by Ivan A. Rashid,Lund University,IvimModelVP,https://doi.org/10.1038/srep38927,tbd,,IAR_LU_modified_mix -IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd,,IAR_LundUniversity_topopro +IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd,,IAR_LU_modified_topopro IVIM,Fitting,Linear fit,Linear fit for D with extrapolation for f. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_linear.py,Modified by Ivan A. Rashid,Lund University,IvimModelLinear,tba,tbd,,no IVIM,Fitting,sIVIM fit,NLLS of the simplified IVIM model (sIVIM). Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_sivim.py,Modified by Ivan A. Rashid,Lund University,IvimModelsIVIM,tba,tbd,,no IVIM,Fitting,Segmented NLLS fitting,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,OJ_GU_seg diff --git a/utilities/repostatus.py b/utilities/repostatus.py index 294f81d..659f0d9 100644 --- a/utilities/repostatus.py +++ b/utilities/repostatus.py @@ -3,10 +3,10 @@ import json # directory of the current script -script_dir = os.path.dirname(os.path.abspath(__file__)) +SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) # path to the repository -REPO_DIR = os.path.dirname(script_dir) +REPO_DIR = os.path.dirname(SCRIPT_DIR) CODE_CONTRIBUTIONS_FILE = os.path.join(REPO_DIR, "doc", "code_contributions_record.csv") ALGORITHMS_FILE = os.path.join(REPO_DIR, "tests", "IVIMmodels", "unit_tests", "algorithms.json") @@ -31,33 +31,18 @@ if not os.path.exists(subfolder_path): print(f"Warning: Subfolder '{subfolder}' does not exist in the source folder.") -# Add column 'Tested' to the DataFrame if it starts with that of subfolder -df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm.startswith(row['subfolder'].split('_')[0]) for algorithm in all_algorithms) else 'No', axis=1) - -# Parse files in the WRAPPED_FOLDER -wrapped_algorithms = [] -for root, dirs, files in os.walk(WRAPPED_FOLDER): - for file in files: - if file.endswith('.py'): - file_path = os.path.join(root, file) - with open(file_path, 'r') as f: - content = f.read() - for algorithm in all_algorithms: - if algorithm in content: - wrapped_algorithms.append(algorithm) - -# Add a column 'Wrapped' to the DataFrame -df['Wrapped'] = df.apply(lambda row: 'Yes' if any(algorithm.startswith(row['subfolder'].split('_')[0]) for algorithm in wrapped_algorithms) else 'No', axis=1) +# Add column 'Tested' to the DataFrame based on a match with algorithms and wrapped column +df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm in row['wrapped'] for algorithm in all_algorithms) else 'No', axis=1) # Select the desired columns -df_selected = df[['Technique', 'subfolder', 'Authors', 'Tested', 'Wrapped']] -df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Tested', 'Wrapped'] +df_selected = df[['Technique', 'subfolder', 'Authors', 'Tested', 'wrapped']] +df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Tested', 'wrapped'] # Convert the DataFrame to HTML html_string = df_selected.to_html(index=False) # Save the HTML to a file -with open(os.path.join(REPO_DIR, 'combined_report.html'), 'w') as f: +with open(os.path.join(REPO_DIR, 'website','combined_report.html'), 'w') as f: f.write(html_string) # Printing message that report has been successfully generated diff --git a/website/combined_report.html b/website/combined_report.html index ca9608c..f085bcb 100644 --- a/website/combined_report.html +++ b/website/combined_report.html @@ -5,7 +5,7 @@ <th>Subfolder</th> <th>Contributors</th> <th>Tested</th> - <th>Wrapped</th> + <th>wrapped</th> </tr> </thead> <tbody> @@ -13,134 +13,134 @@ <td>IVIM</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> - <td>Yes</td> - <td>Yes</td> + <td>No</td> + <td>no</td> </tr> <tr> <td>IVIM</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> <td>Yes</td> - <td>Yes</td> + <td>OGC_AmsterdamUMC_biexp</td> </tr> <tr> <td>Tri-exponential</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> - <td>Yes</td> - <td>Yes</td> + <td>No</td> + <td>no</td> </tr> <tr> <td>Tri-exponential</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion</td> <td>Yes</td> - <td>Yes</td> + <td>OGC_AmsterdamUMC_biexp_segmented</td> </tr> <tr> <td>IVIM</td> <td>OGC_AmsterdamUMC</td> <td>Oliver Gurney-Champion/Sebastiano Barbieri</td> <td>Yes</td> - <td>Yes</td> + <td>OGC_AmsterdamUMC_Bayesian_biexp</td> </tr> <tr> <td>IVIM</td> <td>PvH_KB_NKI</td> <td>Petra van Houdt/Stefan Zijlema/Koen Baas</td> <td>Yes</td> - <td>Yes</td> + <td>PvH_KB_NKI_IVIMfit</td> </tr> <tr> <td>IVIM</td> <td>PV_MUMC</td> <td>Paulien Voorter</td> <td>Yes</td> - <td>Yes</td> + <td>PV_MUMC_biexp</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> - <td>Yes</td> + <td>IAR_LU_biexp</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> - <td>Yes</td> + <td>IAR_LU_segmented_2step</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> - <td>Yes</td> + <td>IAR_LU_segmented_3step</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Ivan A. Rashid</td> <td>Yes</td> - <td>Yes</td> + <td>IAR_LU_subtracted</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Farooq et al. Modified by Ivan A. Rashid</td> <td>Yes</td> - <td>Yes</td> + <td>IAR_LU_modified_mix</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Fadnavis et al. Modified by Ivan A. Rashid</td> <td>Yes</td> - <td>Yes</td> + <td>IAR_LU_modified_topopro</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Modified by Ivan A. Rashid</td> - <td>Yes</td> - <td>Yes</td> + <td>No</td> + <td>no</td> </tr> <tr> <td>IVIM</td> <td>IAR_LundUniversity</td> <td>Modified by Ivan A. Rashid</td> - <td>Yes</td> - <td>Yes</td> + <td>No</td> + <td>no</td> </tr> <tr> <td>IVIM</td> <td>OJ_GU</td> <td>Oscar Jalnefjord</td> <td>No</td> - <td>No</td> + <td>OJ_GU_seg</td> </tr> <tr> <td>IVIM</td> <td>OJ_GU</td> <td>Oscar Jalnefjord</td> <td>No</td> - <td>No</td> + <td>no</td> </tr> <tr> <td>IVIM</td> <td>OJ_GU</td> <td>Oscar Jalnefjord</td> <td>No</td> - <td>No</td> + <td>no</td> </tr> <tr> <td>IVIM</td> <td>ETP_SRI</td> <td>Eric Peterson</td> <td>Yes</td> - <td>Yes</td> + <td>ETP_SRI_LinearFitting</td> </tr> </tbody> </table> \ No newline at end of file From 255618c5dc2c0925ef0051c3c7c977bf4205c19e Mon Sep 17 00:00:00 2001 From: AhmedBasem <demhamesab@gmail.com> Date: Mon, 18 Mar 2024 02:04:32 +0200 Subject: [PATCH 64/87] Integrate the algorithms figures into the documentation website. --- {doc => docs}/Makefile | 0 {doc => docs}/conf.py | 0 docs/figures.rst | 45 +++++++++++++++++++++++++++++++++++++++++ {doc => docs}/index.rst | 3 ++- 4 files changed, 47 insertions(+), 1 deletion(-) rename {doc => docs}/Makefile (100%) rename {doc => docs}/conf.py (100%) create mode 100644 docs/figures.rst rename {doc => docs}/index.rst (94%) diff --git a/doc/Makefile b/docs/Makefile similarity index 100% rename from doc/Makefile rename to docs/Makefile diff --git a/doc/conf.py b/docs/conf.py similarity index 100% rename from doc/conf.py rename to docs/conf.py diff --git a/docs/figures.rst b/docs/figures.rst new file mode 100644 index 0000000..e979a31 --- /dev/null +++ b/docs/figures.rst @@ -0,0 +1,45 @@ +Algorithm Analysis Figures +=========== + +.. raw:: html + + <!DOCTYPE html> + <html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Algorithm Analysis Figures + + + +

Diffusion grid for limited algorithms:

+ +

Diffusion grid for all algorithms:

+ + +

Perfusion grid for limited algorithms:

+ +

Perfusion grid for all algorithms:

+ + +

Perfusion fraction grid for limited algorithms:

+ +

Perfusion fraction grid for all algorithms:

+ + +

Fitted curves:

+ +

Curve plot:

+ +

Algorithm Fitting duration:

+ + + + diff --git a/doc/index.rst b/docs/index.rst similarity index 94% rename from doc/index.rst rename to docs/index.rst index 86de157..06bcfa9 100644 --- a/doc/index.rst +++ b/docs/index.rst @@ -7,9 +7,10 @@ Welcome to TF2.4 IVIM MRI Code Collection's documentation! ========================================================== .. toctree:: - :maxdepth: 2 + :maxdepth: 4 :caption: Contents: + figures modules Indices and tables From 6387588c5aa37b457ee28800d407f191e91c4c42 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Mon, 18 Mar 2024 02:06:02 +0200 Subject: [PATCH 65/87] Add the figures artifact to the docs folder before building the website. --- .github/workflows/sphinx.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 777e30a..2b8e262 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -35,16 +35,22 @@ jobs: run: | pip install -r requirements.txt + - name: Download figures artifact + uses: actions/download-artifact@v3 + with: + name: Figures + - name: Build html run: | - sphinx-apidoc -o doc src + mv Figures docs/_static/ + sphinx-apidoc -o docs src cd doc/ make html - name: Upload docs artifact uses: actions/upload-pages-artifact@v3 with: - path: 'doc/_build/html' + path: 'docs/_build/html' - name: Deploy to GitHub Pages id: deployment From 67258430c7be125e648e82734c3d3af69664aa1d Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Mon, 18 Mar 2024 04:46:31 +0200 Subject: [PATCH 66/87] Fix pdf path --- docs/figures.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/figures.rst b/docs/figures.rst index e979a31..1291f6a 100644 --- a/docs/figures.rst +++ b/docs/figures.rst @@ -20,26 +20,26 @@ Algorithm Analysis Figures

Diffusion grid for limited algorithms:

- +

Diffusion grid for all algorithms:

- +

Perfusion grid for limited algorithms:

- +

Perfusion grid for all algorithms:

- +

Perfusion fraction grid for limited algorithms:

- +

Perfusion fraction grid for all algorithms:

- +

Fitted curves:

- +

Curve plot:

- +

Algorithm Fitting duration:

- + From c05d0cc8c7f4f5d3e59b1860c7b1b51fd253395e Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Mon, 18 Mar 2024 04:47:32 +0200 Subject: [PATCH 67/87] Use figures artifact generated by analysis.yml workflow --- .github/workflows/sphinx.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 2b8e262..0ff88c4 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -35,16 +35,20 @@ jobs: run: | pip install -r requirements.txt + # Action to download artifacts from a different workflow (analysis.yml) - name: Download figures artifact - uses: actions/download-artifact@v3 + uses: dawidd6/action-download-artifact@v3 with: + workflow: analysis.yml name: Figures + branch: main - name: Build html run: | - mv Figures docs/_static/ + mkdir docs/_static + mv *.pdf docs/_static/ sphinx-apidoc -o docs src - cd doc/ + cd docs/ make html - name: Upload docs artifact From bbb6358d879796dd29f8e9e608e8f8a4959690e7 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Mon, 18 Mar 2024 15:19:44 +0200 Subject: [PATCH 68/87] Deploy when the new figures are generated. --- .github/workflows/sphinx.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 0ff88c4..4c5731e 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -4,6 +4,10 @@ on: push: branches: - 'main' + workflow_run: + workflows: ["analysis.yml"] + types: + - completed permissions: contents: read pages: write From fbbd3f0afcb3040e94c8b4cc61ce19932ed38e84 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Tue, 19 Mar 2024 13:43:47 +0200 Subject: [PATCH 69/87] use the official download method. --- .github/workflows/analysis.yml | 1 + .github/workflows/sphinx.yml | 28 +++++++++++++++++++++++----- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 55f59cf..9a734b9 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -5,6 +5,7 @@ on: branches: - 'main' - 'analysis/**' + - 'test-docs' jobs: algorithms: diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 4c5731e..b0fbeb7 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -40,16 +40,34 @@ jobs: pip install -r requirements.txt # Action to download artifacts from a different workflow (analysis.yml) - - name: Download figures artifact - uses: dawidd6/action-download-artifact@v3 + - name: 'Download artifact' + uses: actions/github-script@v6 with: - workflow: analysis.yml - name: Figures - branch: main + script: | + let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: context.payload.workflow_run.id, + }); + let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => { + return artifact.name == "Figures" + })[0]; + let download = await github.rest.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: 'zip', + }); + let fs = require('fs'); + fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/Figures.zip`, Buffer.from(download.data)); + + - name: 'Unzip artifact' + run: unzip Figures.zip - name: Build html run: | mkdir docs/_static + ls mv *.pdf docs/_static/ sphinx-apidoc -o docs src cd docs/ From 85b13d7668bed858f3d167d8b2ae24c7683d9931 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Wed, 20 Mar 2024 21:56:43 +0200 Subject: [PATCH 70/87] Prevent deploying on every push --- .github/workflows/sphinx.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index b0fbeb7..6c082f4 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -1,11 +1,8 @@ -name: Build Documentation +name: Build & Deploy Documentation on: - push: - branches: - - 'main' workflow_run: - workflows: ["analysis.yml"] + workflows: [Algorithm Analysis] types: - completed permissions: From b7d5e2f283a652a149be4e6c1ce3e4a00628d77c Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Thu, 21 Mar 2024 16:30:40 +0200 Subject: [PATCH 71/87] Generate docs even on analysis workflow failure. --- .github/workflows/analysis.yml | 1 - .github/workflows/sphinx.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 9a734b9..55f59cf 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -5,7 +5,6 @@ on: branches: - 'main' - 'analysis/**' - - 'test-docs' jobs: algorithms: diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 6c082f4..f3ecfd3 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -38,6 +38,7 @@ jobs: # Action to download artifacts from a different workflow (analysis.yml) - name: 'Download artifact' + if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: actions/github-script@v6 with: script: | @@ -64,7 +65,6 @@ jobs: - name: Build html run: | mkdir docs/_static - ls mv *.pdf docs/_static/ sphinx-apidoc -o docs src cd docs/ From ab9354bf5f0bd021490545c9403ccddeaf5eaf28 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Thu, 21 Mar 2024 16:32:27 +0200 Subject: [PATCH 72/87] rename docs workflow. --- .github/workflows/{sphinx.yml => documentation.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{sphinx.yml => documentation.yml} (100%) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/documentation.yml similarity index 100% rename from .github/workflows/sphinx.yml rename to .github/workflows/documentation.yml From be6f31f29828d68d2bcdd4b0c4be28343f0982f7 Mon Sep 17 00:00:00 2001 From: Unique-Usman Date: Sun, 24 Mar 2024 14:34:54 +0530 Subject: [PATCH 73/87] A python script to wrap image read and write for Nifti Images. --- WrapImage/nifti_wrapper.py | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 WrapImage/nifti_wrapper.py diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py new file mode 100644 index 0000000..245c7cb --- /dev/null +++ b/WrapImage/nifti_wrapper.py @@ -0,0 +1,64 @@ +import argparse +import json +import os +import nibabel as nib +import numpy as np + +def read_nifti_4d(input_file): + """ + For reading the 4d nifti image + """ + nifti_img = nib.load(input_file) + return nifti_img.get_fdata() + +def read_json_file(json_file): + """ + For reading the json file + """ + + if not os.path.exists(json_file): + raise FileNotFoundError(f"File '{json_file}' not found.") + + with open(json_file, "r") as f: + try: + json_data = json.load(f) + except json.JSONDecodeError as e: + raise ValueError(f"Error decoding JSON in file '{json_file}': {e}") + + return json_data + +def save_nifti_3d(data, output_file): + """ + For saving the 3d nifti images of the output of the algorithm + """ + output_img = nib.Nifti1Image(data, np.eye(4)) + nib.save(output_img, output_file) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Read a 4D NIfTI phantom file along with BIDS JSON, b-vector, and b-value files.") + parser.add_argument("input_file", type=str, help="Path to the input 4D NIfTI file.") + parser.add_argument("bids_dir", type=str, help="Path to the BIDS directory.") + parser.add_argument("--algorithm", type=str, choices=["algorithm1", "algorithm2"], default="algorithm1", help="Select the algorithm to use.") + parser.add_argument("algorithm_args", nargs=argparse.REMAINDER, help="Additional arguments for the algorithm.") + + args = parser.parse_args() + + try: + # Read the 4D NIfTI file + data = read_nifti_4d(args.input_file) + + # Construct the full paths for the JSON, b-vector, and b-value files + json_file = os.path.join(args.bids_dir, "dataset_description.json") + bvec_file = os.path.join(args.bids_dir, "bvecs.json") + bval_file = os.path.join(args.bids_dir, "bvals.json") + + # Read the JSON, b-vector, and b-value files + json_data = read_json_file(json_file) + bvecs = read_json_file(bvec_file) + bvals = read_json_file(bval_file) + + # Pass additional arguments to the algorithm + # Passing the values to the selectect algorithm and saving it + + except Exception as e: + print(f"Error: {e}") From 6c779170ea70b9d4b98617d04d9043b97c87e995 Mon Sep 17 00:00:00 2001 From: Unique-Usman Date: Tue, 26 Mar 2024 02:08:18 +0530 Subject: [PATCH 74/87] Followed up with the required change --- WrapImage/nifti_wrapper.py | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index 245c7cb..4324bfc 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -2,9 +2,12 @@ import json import os import nibabel as nib +from src.wrappers.OsipiBase import OsipiBase +from utilities.data_simulation.GenerateData import GenerateData import numpy as np +import random -def read_nifti_4d(input_file): +def read_nifti_file(input_file): """ For reading the 4d nifti image """ @@ -27,11 +30,11 @@ def read_json_file(json_file): return json_data -def save_nifti_3d(data, output_file): +def save_nifti_3d(data, output_file, **kwargs): """ For saving the 3d nifti images of the output of the algorithm """ - output_img = nib.Nifti1Image(data, np.eye(4)) + output_img = nib.nifti1.Nifti1Image(data, np.eye(4), **kwargs) nib.save(output_img, output_file) if __name__ == "__main__": @@ -45,7 +48,7 @@ def save_nifti_3d(data, output_file): try: # Read the 4D NIfTI file - data = read_nifti_4d(args.input_file) + data = read_nifti_file(args.input_file) # Construct the full paths for the JSON, b-vector, and b-value files json_file = os.path.join(args.bids_dir, "dataset_description.json") @@ -58,7 +61,20 @@ def save_nifti_3d(data, output_file): bvals = read_json_file(bval_file) # Pass additional arguments to the algorithm + rng = np.random.RandomState(42) + fit = OsipiBase(algorithm=args.algorithm) + S0 = 1 + gd = GenerateData(rng=rng) + D = data["D"] + f = data["f"] + Dp = data["Dp"] + # signal = gd.ivim_signal(D, Dp, f, S0, bvals, SNR, rician_noise) + # Passing the values to the selectect algorithm and saving it + [f_fit, Dp_fit, D_fit] = fit.osipi_fit(signal, bvals) + save_nifti_3d(f_fit, "f.nii.gz") + save_nifti_3d(Dp_fit, "dp.nii.gz") + save_nifti_3d(D_fit, "d.nii.gz") except Exception as e: print(f"Error: {e}") From 6db42c1dcc41221c293c9f7dd347c5da6fee7f06 Mon Sep 17 00:00:00 2001 From: Unique-Usman Date: Tue, 26 Mar 2024 23:23:32 +0530 Subject: [PATCH 75/87] Make the required change for follow up --- WrapImage/nifti_wrapper.py | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index 4324bfc..65ad3f6 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -5,14 +5,13 @@ from src.wrappers.OsipiBase import OsipiBase from utilities.data_simulation.GenerateData import GenerateData import numpy as np -import random def read_nifti_file(input_file): """ For reading the 4d nifti image """ nifti_img = nib.load(input_file) - return nifti_img.get_fdata() + return nifti_img.get_fdata(), nifti_img.header def read_json_file(json_file): """ @@ -30,17 +29,20 @@ def read_json_file(json_file): return json_data -def save_nifti_3d(data, output_file, **kwargs): +def save_nifti_file(data, output_file, affine=None, **kwargs): """ For saving the 3d nifti images of the output of the algorithm """ - output_img = nib.nifti1.Nifti1Image(data, np.eye(4), **kwargs) + if affine is None: + affine = np.eye(data.ndim + 1) + output_img = nib.nifti1.Nifti1Image(data, affine , **kwargs) nib.save(output_img, output_file) if __name__ == "__main__": parser = argparse.ArgumentParser(description="Read a 4D NIfTI phantom file along with BIDS JSON, b-vector, and b-value files.") parser.add_argument("input_file", type=str, help="Path to the input 4D NIfTI file.") parser.add_argument("bids_dir", type=str, help="Path to the BIDS directory.") + parser.add_argument("--affine", type=float, nargs="+", help="Affine matrix for NIfTI image.") parser.add_argument("--algorithm", type=str, choices=["algorithm1", "algorithm2"], default="algorithm1", help="Select the algorithm to use.") parser.add_argument("algorithm_args", nargs=argparse.REMAINDER, help="Additional arguments for the algorithm.") @@ -48,7 +50,7 @@ def save_nifti_3d(data, output_file, **kwargs): try: # Read the 4D NIfTI file - data = read_nifti_file(args.input_file) + data, _ = read_nifti_file(args.input_file) # Construct the full paths for the JSON, b-vector, and b-value files json_file = os.path.join(args.bids_dir, "dataset_description.json") @@ -61,20 +63,14 @@ def save_nifti_3d(data, output_file, **kwargs): bvals = read_json_file(bval_file) # Pass additional arguments to the algorithm - rng = np.random.RandomState(42) fit = OsipiBase(algorithm=args.algorithm) - S0 = 1 - gd = GenerateData(rng=rng) - D = data["D"] - f = data["f"] - Dp = data["Dp"] # signal = gd.ivim_signal(D, Dp, f, S0, bvals, SNR, rician_noise) # Passing the values to the selectect algorithm and saving it [f_fit, Dp_fit, D_fit] = fit.osipi_fit(signal, bvals) - save_nifti_3d(f_fit, "f.nii.gz") - save_nifti_3d(Dp_fit, "dp.nii.gz") - save_nifti_3d(D_fit, "d.nii.gz") + save_nifti_file(f_fit, "f.nii.gz", args.affine) + save_nifti_file(Dp_fit, "dp.nii.gz", args.affline) + save_nifti_file(D_fit, "d.nii.gz", args.affline) except Exception as e: print(f"Error: {e}") From 5ad4cbca865b26ed740d1ff5fc79b370327aa5e4 Mon Sep 17 00:00:00 2001 From: Unique-Usman Date: Wed, 27 Mar 2024 04:15:30 +0530 Subject: [PATCH 76/87] Update the pull request --- WrapImage/nifti_wrapper.py | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index 65ad3f6..0f2d1fe 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -38,6 +38,23 @@ def save_nifti_file(data, output_file, affine=None, **kwargs): output_img = nib.nifti1.Nifti1Image(data, affine , **kwargs) nib.save(output_img, output_file) +def loop_over_first_n_minus_1_dimensions(arr): + """ + Loops over the first n-1 dimensions of a numpy array. + + Args: + arr: A numpy array. + + Yields: + A tuple containing the indices for the current iteration and a flattened view of the remaining dimensions. + """ + n = arr.ndim + for idx in np.ndindex(*arr.shape[:n-1]): + flat_view = arr[idx].flatten() + yield idx, flat_view + + + if __name__ == "__main__": parser = argparse.ArgumentParser(description="Read a 4D NIfTI phantom file along with BIDS JSON, b-vector, and b-value files.") parser.add_argument("input_file", type=str, help="Path to the input 4D NIfTI file.") @@ -64,13 +81,17 @@ def save_nifti_file(data, output_file, affine=None, **kwargs): # Pass additional arguments to the algorithm fit = OsipiBase(algorithm=args.algorithm) - # signal = gd.ivim_signal(D, Dp, f, S0, bvals, SNR, rician_noise) - - # Passing the values to the selectect algorithm and saving it - [f_fit, Dp_fit, D_fit] = fit.osipi_fit(signal, bvals) - save_nifti_file(f_fit, "f.nii.gz", args.affine) - save_nifti_file(Dp_fit, "dp.nii.gz", args.affline) - save_nifti_file(D_fit, "d.nii.gz", args.affline) + f_image = np.zeros_like(data.shape[:data.ndim-1]) + D_image = np.zeros_like(data.shape[:data.ndim-1]) + Dp_image = np.zeros_like(data.shape[:data.ndim-1]) + for idx, view in loop_over_first_n_minus_1_dimensions(data): + [f_fit, Dp_fit, D_fit] = fit.osipi_fit(view, bvals) + f_image[idx]=f_fit + Dp_image[idx]=Dp_fit + D_image[idx]=D_fit + save_nifti_file(f_image, "f.nii.gz", args.affine) + save_nifti_file(Dp_image, "dp.nii.gz", args.affline) + save_nifti_file(D_image, "d.nii.gz", args.affline) except Exception as e: print(f"Error: {e}") From d22612c0e1261583ea7c3caa8eba2ad6919d4381 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Sun, 7 Apr 2024 00:21:59 +0200 Subject: [PATCH 77/87] separate the deploy job from the build job --- .github/actions/download-artifact/action.yml | 39 ++++++++++++++++++++ .github/workflows/documentation.yml | 34 +++++------------ 2 files changed, 49 insertions(+), 24 deletions(-) create mode 100644 .github/actions/download-artifact/action.yml diff --git a/.github/actions/download-artifact/action.yml b/.github/actions/download-artifact/action.yml new file mode 100644 index 0000000..f97c3c0 --- /dev/null +++ b/.github/actions/download-artifact/action.yml @@ -0,0 +1,39 @@ +--- +name: Download Artifact +description: Download artifact from the same or different workflow + +inputs: + name: + description: Artifact to be downloaded + required: true + type: string + +runs: + using: composite + steps: + - name: Download Artifact + uses: actions/github-script@v6 + with: + script: | + var inputs = ${{ toJSON(inputs) }} + var artifactName = inputs['name'] + let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: context.payload.workflow_run.id, + }); + let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => { + return artifact.name == artifactName + })[0]; + let download = await github.rest.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: 'zip', + }); + let fs = require('fs'); + fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/${artifactName}.zip`, Buffer.from(download.data)); + + - name: 'Unzip artifact' + run: unzip ${{ inputs.name }}.zip + shell: bash diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index f3ecfd3..05ddf53 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -11,9 +11,6 @@ permissions: id-token: write jobs: build: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -39,28 +36,9 @@ jobs: # Action to download artifacts from a different workflow (analysis.yml) - name: 'Download artifact' if: ${{ github.event.workflow_run.conclusion == 'success' }} - uses: actions/github-script@v6 + uses: ./.github/actions/download-artifact with: - script: | - let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: context.payload.workflow_run.id, - }); - let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => { - return artifact.name == "Figures" - })[0]; - let download = await github.rest.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: 'zip', - }); - let fs = require('fs'); - fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/Figures.zip`, Buffer.from(download.data)); - - - name: 'Unzip artifact' - run: unzip Figures.zip + name: 'Figures' - name: Build html run: | @@ -75,6 +53,14 @@ jobs: with: path: 'docs/_build/html' + deploy: + needs: build + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + runs-on: ubuntu-latest + steps: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 From d2fe3ee40f2e3a50869fd87657873ca24bdebbe7 Mon Sep 17 00:00:00 2001 From: AhmedBasem Date: Tue, 9 Apr 2024 06:10:59 +0200 Subject: [PATCH 78/87] Add status badge for the documentation workflow. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fc95001..b11357e 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,5 @@ The **utils** folder contains various helpful tools. ## View Testing Reports [![Unit tests](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/unit_test.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/unit_test.yml) -[![Algorithm Analysis](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml) \ No newline at end of file +[![Algorithm Analysis](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/analysis.yml) +[![Build & Deploy Documentation](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/documentation.yml/badge.svg?branch=main)](https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection/actions/workflows/documentation.yml) From 82642fd26396ac48929212101b93dad697f021af Mon Sep 17 00:00:00 2001 From: Paulien Voorter Date: Tue, 9 Apr 2024 13:27:41 +0200 Subject: [PATCH 79/87] Added the fittings algorithms to fit a tri-exponential model --- .../PV_MUMC/triexp_fitting_algorithms.py | 251 ++++++++++++++++++ 1 file changed, 251 insertions(+) create mode 100644 src/original/PV_MUMC/triexp_fitting_algorithms.py diff --git a/src/original/PV_MUMC/triexp_fitting_algorithms.py b/src/original/PV_MUMC/triexp_fitting_algorithms.py new file mode 100644 index 0000000..196757a --- /dev/null +++ b/src/original/PV_MUMC/triexp_fitting_algorithms.py @@ -0,0 +1,251 @@ +""" +January 2022 by Paulien Voorter +p.voorter@maastrichtuniversity.nl +https://www.github.com/paulienvoorter + +Code is uploaded as part of the publication: Voorter et al. MRM DOI:10.1002/mrm.29753 (2023) + +requirements: +numpy +tqdm +scipy +joblib +""" + +# load relevant libraries +from scipy.optimize import curve_fit, nnls +import numpy as np +from joblib import Parallel, delayed +import tqdm +import warnings + +#constants +#relaxation times and acquisition parameters, which are required when accounting for inversion recovery +bloodT2 = 275 #ms [Wong et al. JMRI (2020)] +tissueT2 = 95 #ms [Wong et al. JMRI (2020)] +isfT2 = 503 # ms [Rydhog et al Magn.Res.Im. (2014)] +bloodT1 = 1624 #ms [Wong et al. JMRI (2020)] +tissueT1 = 1081 #ms [Wong et al. JMRI (2020)] +isfT1 = 1250 # ms [Wong et al. JMRI (2020)] +echotime = 84 # ms +repetitiontime = 6800 # ms +inversiontime = 2230 # ms + + +def tri_expN_noS0_IR(bvalues, Dpar, Fint, Dint, Fmv, Dmv): + """ tri-exponential IVIM function accounted for inversion recovery (IR), and S0 set to 1""" + return (( (1 - Fmv - Fint ) * (1 - 2*np.exp(-inversiontime/tissueT1) + np.exp(-repetitiontime/tissueT1) ) * (np.exp(-echotime/tissueT2-bvalues * Dpar )) + + Fint * (1 - 2*np.exp(-inversiontime/isfT1) + np.exp(-repetitiontime/isfT1) ) * (np.exp(-echotime/isfT2-bvalues * Dint )) + + Fmv * ( (1 - np.exp(-repetitiontime/bloodT1)) * (np.exp(-echotime/bloodT2 -bvalues * (Dmv ) )) )) + / ( (1 - Fmv - Fint ) * (1 - 2*np.exp(-inversiontime/tissueT1) + np.exp(-repetitiontime/tissueT1) ) * np.exp(-echotime/tissueT2) + + Fint * (1 - 2*np.exp(-inversiontime/isfT1) + np.exp(-repetitiontime/isfT1) ) * (np.exp(-echotime/isfT2)) + + Fmv * (1 - np.exp(-repetitiontime/bloodT1)) * np.exp(-echotime/bloodT2 ))) + +def tri_expN_IR(bvalues, S0, Dpar, Fint, Dint, Fmv, Dmv): + """ tri-exponential IVIM function accounted for inversion recovery (IR)""" + return (S0 * (( (1 - Fmv - Fint) * (1 - 2*np.exp(-inversiontime/tissueT1) + np.exp(-repetitiontime/tissueT1) ) * (np.exp(-echotime/tissueT2-bvalues * Dpar)) + + Fint * (1 - 2*np.exp(-inversiontime/isfT1) + np.exp(-repetitiontime/isfT1) ) * (np.exp(-echotime/isfT2-bvalues * Dint)) + + Fmv * ( (1 - np.exp(-repetitiontime/bloodT1)) * (np.exp(-echotime/bloodT2 -bvalues * (Dmv) )) )) + / ( (1 - Fmv - Fint) * (1 - 2*np.exp(-inversiontime/tissueT1) + np.exp(-repetitiontime/tissueT1) ) * np.exp(-echotime/tissueT2) + + Fint * (1 - 2*np.exp(-inversiontime/isfT1) + np.exp(-repetitiontime/isfT1) ) * (np.exp(-echotime/isfT2)) + + Fmv * (1 - np.exp(-repetitiontime/bloodT1)) * np.exp(-echotime/bloodT2 )))) + +def tri_expN_noS0(bvalues, Dpar, Fint, Dint, Fmv, Dmv): + """ tri-exponential IVIM function, and S0 set to 1""" + return Fmv * np.exp(-bvalues * Dmv) + Fint * np.exp(-bvalues * Dint) + (1 - Fmv - Fint) * np.exp(-bvalues * Dpar) + +def tri_expN(bvalues, S0, Dpar, Fint, Dint, Fmv, Dmv): + """ tri-exponential IVIM function""" + return S0 * (Fmv * np.exp(-bvalues * Dmv) + Fint * np.exp(-bvalues * Dint) + (1 - Fmv - Fint) * np.exp(-bvalues * Dpar)) + +def fit_least_squares_tri_exp(bvalues, dw_data, IR=False, S0_output=False, fitS0=False, + bounds=([0.9, 0.0001, 0.0, 0.0015, 0.0, 0.004], [1.1, 0.0015, 0.4, 0.004, 0.2, 0.2]), cutoff=200): + """ + This is the LSQ implementation for a tri-exp model, in which we first estimate Dpar using a curve fit to b-values>=cutoff; + Second, we fit the other parameters using all b-values, while setting Dpar from step 1 as upper bound and starting value. + It fits a single curve + :param bvalues: 1D Array with the b-values + :param dw_data: 1D Array with diffusion-weighted signal in different voxels at different b-values + :param IR: Boolean; True will fit the IVIM accounting for inversion recovery, False will fit IVIM without IR; default = True + :param S0_output: Boolean determining whether to output (often a dummy) variable S0; default = False + :param fix_S0: Boolean determining whether to fix S0 to 1; default = True + :param bounds: Array with fit bounds ([S0min, Dparmin, Fintmin, Dintmin, Fmvmin, Dmvmin],[S0max, Dparmax, Fintmax, Dintmax, Fmvmax, Dmvmax]). Default: ([0, 0, 0, 0.005, 0, 0.06], [2.5, 0.005, 1, 0.06, 1, 0.5]) + :param cutoff: cutoff b-value used in step 1 + :return S0: optional 1D Array with S0 in each voxel + :return Dpar: scalar with Dpar of the specific voxel + :return Fint: scalar with Fint of the specific voxel + :return Dint: scalar with Dint of the specific voxel + :return Fmv: scalar with Fmv of the specific voxel + :return Dmv: scalar with Dmv of the specific voxel + """ + def monofit(bvalues, Dpar, Fp): + return (1-Fp)*np.exp(-bvalues * Dpar) + + high_b = bvalues[bvalues >= cutoff] + high_dw_data = dw_data[bvalues >= cutoff] + boundspar = ([0, 0], [bounds[1][1], bounds[1][5]]) + params, _ = curve_fit(monofit, high_b, high_dw_data, p0=[(bounds[1][1]-bounds[0][1])/2, 0.05], bounds=boundspar) + Dpar1 = params[0] + if IR: + if not fitS0: + bounds = ([bounds[0][1] , bounds[0][2] , bounds[0][3] , bounds[0][4] , bounds[0][5] ], + [Dpar1 , bounds[1][2] , bounds[1][3] , bounds[1][4] , bounds[1][5] ]) + params, _ = curve_fit(tri_expN_noS0_IR, bvalues, dw_data, p0=[Dpar1, 0.0, (bounds[0][3]+bounds[1][3])/2, 0.05, (bounds[0][5]+bounds[1][5])/2], bounds=bounds) + Dpar, Fint, Dint, Fmv, Dmv = params[0], params[1], params[2], params[3], params[4] + #when the fraction of a compartment equals zero (or very very small), the corresponding diffusivity is non-existing (=NaN) + + else: + boundsupdated = ([bounds[0][0] , bounds[0][1] , bounds[0][2] , bounds[0][3] , bounds[0][4] , bounds[0][5] ], + [bounds[1][0] , Dpar1 , bounds[1][2] , bounds[1][3] , bounds[1][4] , bounds[1][5] ]) + params, _ = curve_fit(tri_expN_IR, bvalues, dw_data, p0=[1, Dpar1, 0.0, (bounds[0][3]+bounds[1][3])/2, 0.05, (bounds[0][5]+bounds[1][5])/2], bounds=boundsupdated) + S0 = params[0] + Dpar, Fint, Dint, Fmv, Dmv = params[1] , params[2] , params[3] , params[4] , params[5] + #when the fraction of a compartment equals zero (or very very small), the corresponding diffusivity is non-existing (=NaN) + + else: + if not fitS0: + bounds = ([bounds[0][1] , bounds[0][2] , bounds[0][3] , bounds[0][4] , bounds[0][5] ], + [Dpar1 , bounds[1][2] , bounds[1][3] , bounds[1][4] , bounds[1][5] ]) + params, _ = curve_fit(tri_expN_noS0, bvalues, dw_data, p0=[Dpar1, 0.0, (bounds[0][3]+bounds[1][3])/2, 0.05, (bounds[0][5]+bounds[1][5])/2], bounds=bounds) + Dpar, Fint, Dint, Fmv, Dmv = params[0], params[1], params[2], params[3], params[4] + #when the fraction of a compartment equals zero (or very very small), the corresponding diffusivity is non-existing (=NaN) + + else: + boundsupdated = ([bounds[0][0] , bounds[0][1] , bounds[0][2] , bounds[0][3] , bounds[0][4] , bounds[0][5] ], + [bounds[1][0] , Dpar1 , bounds[1][2] , bounds[1][3] , bounds[1][4] , bounds[1][5] ]) + params, _ = curve_fit(tri_expN, bvalues, dw_data, p0=[1, Dpar1, 0.0, (bounds[0][3]+bounds[1][3])/2, 0.05, (bounds[0][5]+bounds[1][5])/2], bounds=boundsupdated) + S0 = params[0] + Dpar, Fint, Dint, Fmv, Dmv = params[1] , params[2] , params[3] , params[4] , params[5] + #when the fraction of a compartment equals zero (or very very small), the corresponding diffusivity is non-existing (=NaN) + + if S0_output: + return Dpar, Fint, Dint, Fmv, Dmv, S0 + else: + return Dpar, Fint, Dint, Fmv, Dmv + + + +def fit_NNLS(bvalues, dw_data, IR=False, + bounds=([0.9, 0.0001, 0.0, 0.0015, 0.0, 0.004], [1.1, 0.0015, 0.4, 0.004, 0.2, 0.2])): + """ + This is an implementation of the tri-exponential fit. It fits a single curve with the non-negative least squares (NNLS) fitting approach, see 10.1002/jmri.26920. + :param bvalues: 1D Array with the b-values + :param dw_data: 2D Array with diffusion-weighted signal in different voxels at different b-values + :param IR: Boolean; True will fit the IVIM accounting for inversion recovery, False will fit IVIM without IR correction. default = True + :param bounds: Array with fit bounds ([fp0min, Dparmin, Fintmin, Dintmin, Fmvmin, Dmvmin],[fp0max, Dparmax, Fintmax, Dintmax, Fmvmax, Dmvmax]). Default: ([0, 0, 0, 0.005, 0, 0.06], [2.5, 0.005, 1, 0.06, 1, 0.5]) + :return Fp0: optional 1D Array with f0 in each voxel + :return Dpar: 1D Array with Dpar in each voxel + :return Fint: 1D Array with Fint in each voxel + :return Dint: 1D Array with Dint in each voxel + :return Fmv: 1D Array with the fraciton of signal for Dmv in each voxel + :return Dmv: 1D Array with Dmv in each voxel + """ + + + try: + Dspace = np.logspace(np.log10(bounds[0][1]), np.log10(bounds[1][5]), num=200) + Dbasis = np.exp(-np.kron(np.reshape(bvalues,[len(bvalues),1]), np.reshape(Dspace,[1,len(Dspace)]))) + + Dint = np.zeros(len(dw_data)) + Dpar = np.zeros(len(dw_data)) + Fint = np.zeros(len(dw_data)) + Fmv = np.zeros(len(dw_data)) + Dmv = np.zeros(len(dw_data)) + S0 = np.zeros(len(dw_data)) + + def find_idx_nearest(array, value): + array = np.asarray(array) + idx = (np.abs(array - value)).argmin() + return idx + + idx_parint = find_idx_nearest(Dspace,bounds[1][1]) + idx_intmv = find_idx_nearest(Dspace,bounds[1][3]) + + for i in tqdm.tqdm(range(len(dw_data)), position=0, leave=True): + # fill arrays with fit results on a per voxel base: + x,rnorm = nnls(Dbasis,dw_data[i,:]) # x contains the diffusion spectrum + ampl_Dpar = np.sum(x[:idx_parint]) #summing the amplitudes within the Dpar range + ampl_Dint = np.sum(x[idx_parint:idx_intmv]) #summing the amplitudes within the Dint range + ampl_Dmv = np.sum(x[idx_intmv:]) #summing the amplitudes within the Dmv range + if len(np.nonzero(x[:idx_parint])[0])>0: # Dpar exists + avg_Dpar = np.sum(Dspace[np.nonzero(x[:idx_parint])] * x[np.nonzero(x[:idx_parint])])/ampl_Dpar; + else: + avg_Dpar = 0 + if len(np.nonzero(x[idx_parint:idx_intmv])[0])>0: # Dint exists + avg_Dint = np.sum(Dspace[idx_parint:][np.nonzero(x[idx_parint:idx_intmv])] * x[idx_parint:][np.nonzero(x[idx_parint:idx_intmv])])/ampl_Dint; + else: + avg_Dint = 0 + if len(np.nonzero(x[idx_intmv:])[0])>0: # Dmv exists + avg_Dmv = np.sum(Dspace[idx_intmv:][np.nonzero(x[idx_intmv:])] * x[idx_intmv:][np.nonzero(x[idx_intmv:])])/ampl_Dmv; + else: + avg_Dmv = 0 + + if IR: + corr_Fpar, corr_Fint, corr_Fmv = correct_for_IR(ampl_Dpar, ampl_Dint, ampl_Dmv) + Fint[i] = corr_Fint + Fmv[i] = corr_Fmv + else: + Fint[i] = ampl_Dint + Fmv[i] = ampl_Dmv + + Dpar[i] = avg_Dpar + Dint[i] = avg_Dint + Dmv[i] = avg_Dmv + S0[i] = ampl_Dpar+ampl_Dint+ampl_Dmv # This is the sum before correction + #note that after correction for IR, the sum of fractions always equals 1 + + return Dpar, Fmv, Dmv, Dint, Fint, S0 + + except: + return 0, 0, 0, 0, 0, 0 + + +def correct_for_IR(ampl_Dpar, ampl_Dint, ampl_Dmv): + """ + This function corrects for the inversion recovery in the IVIM sequence, as described in Wong et al. (2019) Spectral Diffusion analysis of intravoxel incoherent motion MRI in cerebral small vessel disease + :param ampl_Dpar: Scalar, the sum of amplitudes within the Dpar range + :param ampl_Dint: Scalar, the sum of amplitudes within the Dint range + :param ampl_Dmv: Scalar, the sum of amplitudes within the Dmv range + :return corr_Fpar: Scalar, the fraction of Dpar, corrected for inversion recovery + :return corr_Fint: Scalar, the fraction of Dint, corrected for inversion recovery + :return corr_Fmv: Scalar, the fraction of Dmv, corrected for inversion recovery + + """ + TtLt = np.exp(-echotime/tissueT2)*(1-2*np.exp(-inversiontime/tissueT1) + np.exp(-repetitiontime/tissueT1)); + TbLb = np.exp(-echotime/bloodT2)*(1-np.exp(-repetitiontime/bloodT1)); + TpLp = np.exp(-echotime/isfT2)*(1-2*np.exp(-inversiontime/isfT1) + np.exp(-repetitiontime/isfT1)); + + #if all three components are present: + if ampl_Dpar>0 and ampl_Dint>0 and ampl_Dmv>0: + #Calculate corrected fractions + n1 = ((TbLb*ampl_Dpar)/(ampl_Dmv*TtLt))+1; + n2 = (TtLt*TbLb*ampl_Dpar*ampl_Dint)/(ampl_Dpar*ampl_Dmv*TtLt*TpLp); + denom = n1 + n2; + z = 1/denom; # z is the microvascular fraction + x = ((TbLb*ampl_Dpar)/(ampl_Dmv*TtLt))*z; # x is the parenchymal fraction + y = 1-x-z; # y is the interstitial fluid fraction + corr_Fpar = x; + corr_Fint = y; + corr_Fmv = z; + + #if two components are present: + elif ampl_Dpar>0 and ampl_Dint>0 and ampl_Dmv==0: + corr_Fint = 1/(((ampl_Dpar/ampl_Dint)*(TpLp/TtLt))+1); + corr_Fpar = 1-corr_Fint; + corr_Fmv = ampl_Dmv; + elif ampl_Dpar>0 and ampl_Dint==0 and ampl_Dmv>0: + corr_Fmv = 1/(((ampl_Dpar/ampl_Dmv)*(TbLb/TtLt))+1); + corr_Fpar = 1-corr_Fmv; + corr_Fint = ampl_Dint; + elif ampl_Dpar==0 and ampl_Dint>0 and ampl_Dmv>0: + corr_Fmv = 1/(((ampl_Dint/ampl_Dmv)*(TbLb/TpLp))+1); + corr_Fint = 1-corr_Fmv; + corr_Fpar = ampl_Dpar; + + #if one component is present: + else: + corr_Fmv = ampl_Dmv; + corr_Fint = ampl_Dint; + corr_Fpar = ampl_Dpar; + + return corr_Fpar, corr_Fint, corr_Fmv From ade52fd8e76c0b0ab016062d641f5fdffb3054af Mon Sep 17 00:00:00 2001 From: Usman Akinyemi Date: Wed, 10 Apr 2024 15:10:09 -0400 Subject: [PATCH 80/87] Added read_bval_file and read_bvec_file to read the bvec and the bval data --- WrapImage/nifti_wrapper.py | 50 +++++++++++++++++++++++++++++--------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index 0f2d1fe..84cbd9a 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -29,6 +29,39 @@ def read_json_file(json_file): return json_data +def read_bval_file(bval_file): + """ + For reading the bval file + """ + if not os.path.exists(bval_file): + raise FileNotFoundError(f"File '{bval_file}' not found.") + + with open(bval_file, "r") as f: + try: + bval_data = [int(val) for val in f.read().split()] + except ValueError as e: + raise ValueError(f"Error reading bval file '{bval_file}': {e}") + + return bval_data + +def read_bvec_file(bvec_file): + """ + For reading the bvec file + """ + if not os.path.exists(bvec_file): + raise FileNotFoundError(f"File '{bvec_file}' not found.") + + with open(bvec_file, "r") as f: + try: + lines = f.readlines() + bvec_data = [] + for line in lines: + bvec_data.append([float(val) for val in line.split()]) + except ValueError as e: + raise ValueError(f"Error reading bvec file '{bvec_file}': {e}") + + return bvec_data + def save_nifti_file(data, output_file, affine=None, **kwargs): """ For saving the 3d nifti images of the output of the algorithm @@ -58,9 +91,10 @@ def loop_over_first_n_minus_1_dimensions(arr): if __name__ == "__main__": parser = argparse.ArgumentParser(description="Read a 4D NIfTI phantom file along with BIDS JSON, b-vector, and b-value files.") parser.add_argument("input_file", type=str, help="Path to the input 4D NIfTI file.") - parser.add_argument("bids_dir", type=str, help="Path to the BIDS directory.") + parser.add_argument("bvec_file", type=str, help="Path to the b-vector file.") + parser.add_argument("bval_file", type=str, help="Path to the b-value file.") parser.add_argument("--affine", type=float, nargs="+", help="Affine matrix for NIfTI image.") - parser.add_argument("--algorithm", type=str, choices=["algorithm1", "algorithm2"], default="algorithm1", help="Select the algorithm to use.") + parser.add_argument("--algorithm", type=str, choices=["algorithm1", "algorithm2"], default="OJ_GU_seg", help="Select the algorithm to use.") parser.add_argument("algorithm_args", nargs=argparse.REMAINDER, help="Additional arguments for the algorithm.") args = parser.parse_args() @@ -69,15 +103,9 @@ def loop_over_first_n_minus_1_dimensions(arr): # Read the 4D NIfTI file data, _ = read_nifti_file(args.input_file) - # Construct the full paths for the JSON, b-vector, and b-value files - json_file = os.path.join(args.bids_dir, "dataset_description.json") - bvec_file = os.path.join(args.bids_dir, "bvecs.json") - bval_file = os.path.join(args.bids_dir, "bvals.json") - - # Read the JSON, b-vector, and b-value files - json_data = read_json_file(json_file) - bvecs = read_json_file(bvec_file) - bvals = read_json_file(bval_file) + # Read the b-vector, and b-value files + bvecs = read_bvec_file(args.bvec_file) + bvals = read_bval_file(args.bval_file) # Pass additional arguments to the algorithm fit = OsipiBase(algorithm=args.algorithm) From 992147d90e82f22ab29fc7dc4245e091fb364f61 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Thu, 11 Apr 2024 13:23:45 +0530 Subject: [PATCH 81/87] Refactor column names in repostatus.py and combined_report.html --- doc/code_contributions_record.csv | 14 ++++----- utilities/repostatus.py | 7 +++-- website/combined_report.html | 52 +++++++++++++++---------------- 3 files changed, 37 insertions(+), 36 deletions(-) diff --git a/doc/code_contributions_record.csv b/doc/code_contributions_record.csv index e3c8e10..54a5675 100644 --- a/doc/code_contributions_record.csv +++ b/doc/code_contributions_record.csv @@ -1,7 +1,7 @@ -Technique,Category,Subcategory,notes,subfolder,Link to source code,Authors,Institution,function/module,DOI,Tester,test status,wrapped -IVIM,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares/fit_least_squares_array,,tbd,,no +Technique,Category,Subcategory,notes,subfolder,Link to source code,Authors,Institution,function/module,DOI,Tester,test status,Wrapped +IVIM,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares/fit_least_squares_array,,tbd,, IVIM,Fitting,segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented/fit_segmented_array,,tbd,,OGC_AmsterdamUMC_biexp -Tri-exponential,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares_tri_exp/fit_least_squares_array_tri_exp,,tbd,,no +Tri-exponential,Fitting,LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_least_squares_tri_exp/fit_least_squares_array_tri_exp,,tbd,, Tri-exponential,Fitting,Segmented LSQ fitting,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion,Amsterdam UMC,fit_segmented_tri_exp/fit_segmented_array_tri_exp,https://doi.org/10.3389/fphys.2022.942495,tbd,,OGC_AmsterdamUMC_biexp_segmented IVIM,Fitting,Bayesian,,OGC_AmsterdamUMC,TF2.4_IVIM-MRI_CodeCollection/src/original/OGC_AmsterdamUMC/,Oliver Gurney-Champion/Sebastiano Barbieri,Amsterdam UMC,fit_bayesian_array,https://doi.org/10.1002/mrm.28852,tbd,,OGC_AmsterdamUMC_Bayesian_biexp IVIM,Fitting,two-step segmented fit approach,also includes ADC calculation as a separate function,PvH_KB_NKI,TF2.4_IVIM-MRI_CodeCollection/src/original/PvH_KB_NKI/,Petra van Houdt/Stefan Zijlema/Koen Baas,the Netherlands Cancer Institute,DWI_functions_standalone.py,https://doi.org/10.3389/fonc.2021.705964,tbd,,PvH_KB_NKI_IVIMfit @@ -12,9 +12,9 @@ IVIM,Fitting,3-step segmented NLLS,First estimates and fixes D followed by an es IVIM,Fitting,2-step segmented NLLS,First estimates and fixes D. Subtracts the diffusion signal and estimated D*. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_subtracted.py,Ivan A. Rashid,Lund University,IvimModelSubtracted,tba,tbd,,IAR_LU_subtracted IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_mix.py,Farooq et al. Modified by Ivan A. Rashid,Lund University,IvimModelVP,https://doi.org/10.1038/srep38927,tbd,,IAR_LU_modified_mix IVIM,Fitting,Variable projection,See referenced article. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_topopro.py,Fadnavis et al. Modified by Ivan A. Rashid,Lund University,IvimModelTopoPro,https://doi.org/10.3389/fnins.2021.779025,tbd,,IAR_LU_modified_topopro -IVIM,Fitting,Linear fit,Linear fit for D with extrapolation for f. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_linear.py,Modified by Ivan A. Rashid,Lund University,IvimModelLinear,tba,tbd,,no -IVIM,Fitting,sIVIM fit,NLLS of the simplified IVIM model (sIVIM). Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_sivim.py,Modified by Ivan A. Rashid,Lund University,IvimModelsIVIM,tba,tbd,,no +IVIM,Fitting,Linear fit,Linear fit for D with extrapolation for f. Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_linear.py,Modified by Ivan A. Rashid,Lund University,IvimModelLinear,tba,tbd,, +IVIM,Fitting,sIVIM fit,NLLS of the simplified IVIM model (sIVIM). Supports units in mm2/s and µm2/ms,IAR_LundUniversity,TF2.4_IVIM-MRI_CodeCollection/src/original/IAR_LundUniversity/ivim_fit_method_modified_sivim.py,Modified by Ivan A. Rashid,Lund University,IvimModelsIVIM,tba,tbd,, IVIM,Fitting,Segmented NLLS fitting,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,OJ_GU_seg -IVIM,Fitting,Bayesian,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_bayes,https://doi.org/10.1002/mrm.26783,tbd,,no -IVIM,Fitting,Segmented NLLS fitting,Specifically tailored algorithm for NLLS segmented fitting,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,,no +IVIM,Fitting,Bayesian,MATLAB code,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,IVIM_bayes,https://doi.org/10.1002/mrm.26783,tbd,, +IVIM,Fitting,Segmented NLLS fitting,Specifically tailored algorithm for NLLS segmented fitting,OJ_GU,TF2.4_IVIM-MRI_CodeCollection/src/original/OJ_GU/,Oscar Jalnefjord,University of Gothenburg,seg,https://doi.org/10.1007/s10334-018-0697-5,tbd,, IVIM,Fitting,Linear fit,Linear fit for D and D* and f. Intended to be extremely fast but not always accurate,ETP_SRI,TF2.4_IVIM-MRI_CodeCollection/src/original/ETP_SRI/LinearFitting.py,Eric Peterson,SRI International,,,tbd,,ETP_SRI_LinearFitting \ No newline at end of file diff --git a/utilities/repostatus.py b/utilities/repostatus.py index 659f0d9..2330167 100644 --- a/utilities/repostatus.py +++ b/utilities/repostatus.py @@ -32,11 +32,12 @@ print(f"Warning: Subfolder '{subfolder}' does not exist in the source folder.") # Add column 'Tested' to the DataFrame based on a match with algorithms and wrapped column -df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm in row['wrapped'] for algorithm in all_algorithms) else 'No', axis=1) +df['Wrapped'] = df['Wrapped'].fillna('') +df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm in row['Wrapped'] for algorithm in all_algorithms) else '', axis=1) # Select the desired columns -df_selected = df[['Technique', 'subfolder', 'Authors', 'Tested', 'wrapped']] -df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Tested', 'wrapped'] +df_selected = df[['Technique', 'subfolder', 'Authors', 'Wrapped', 'Tested']] +df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Wrapped', 'Tested'] # Convert the DataFrame to HTML html_string = df_selected.to_html(index=False) diff --git a/website/combined_report.html b/website/combined_report.html index f085bcb..d7e7548 100644 --- a/website/combined_report.html +++ b/website/combined_report.html @@ -4,8 +4,8 @@ Technique Subfolder Contributors + Wrapped Tested - wrapped @@ -13,134 +13,134 @@ IVIM OGC_AmsterdamUMC Oliver Gurney-Champion - No - no + + IVIM OGC_AmsterdamUMC Oliver Gurney-Champion - Yes OGC_AmsterdamUMC_biexp + Yes Tri-exponential OGC_AmsterdamUMC Oliver Gurney-Champion - No - no + + Tri-exponential OGC_AmsterdamUMC Oliver Gurney-Champion - Yes OGC_AmsterdamUMC_biexp_segmented + Yes IVIM OGC_AmsterdamUMC Oliver Gurney-Champion/Sebastiano Barbieri - Yes OGC_AmsterdamUMC_Bayesian_biexp + Yes IVIM PvH_KB_NKI Petra van Houdt/Stefan Zijlema/Koen Baas - Yes PvH_KB_NKI_IVIMfit + Yes IVIM PV_MUMC Paulien Voorter - Yes PV_MUMC_biexp + Yes IVIM IAR_LundUniversity Ivan A. Rashid - Yes IAR_LU_biexp + Yes IVIM IAR_LundUniversity Ivan A. Rashid - Yes IAR_LU_segmented_2step + Yes IVIM IAR_LundUniversity Ivan A. Rashid - Yes IAR_LU_segmented_3step + Yes IVIM IAR_LundUniversity Ivan A. Rashid - Yes IAR_LU_subtracted + Yes IVIM IAR_LundUniversity Farooq et al. Modified by Ivan A. Rashid - Yes IAR_LU_modified_mix + Yes IVIM IAR_LundUniversity Fadnavis et al. Modified by Ivan A. Rashid - Yes IAR_LU_modified_topopro + Yes IVIM IAR_LundUniversity Modified by Ivan A. Rashid - No - no + + IVIM IAR_LundUniversity Modified by Ivan A. Rashid - No - no + + IVIM OJ_GU Oscar Jalnefjord - No OJ_GU_seg + IVIM OJ_GU Oscar Jalnefjord - No - no + + IVIM OJ_GU Oscar Jalnefjord - No - no + + IVIM ETP_SRI Eric Peterson - Yes ETP_SRI_LinearFitting + Yes \ No newline at end of file From 6ab39b5b94cb55b9325462f0cb3fcd1c2372e9d7 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Tue, 16 Apr 2024 10:53:30 +0530 Subject: [PATCH 82/87] Add zenodo-get, sphinx, and sphinx_rtd_theme to requirements.txt --- requirements.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/requirements.txt b/requirements.txt index 9a76d4f..4da7b9e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,6 +8,9 @@ dipy matplotlib scienceplots cvxpy +zenodo-get pytest tqdm +sphinx +sphinx_rtd_theme pandas \ No newline at end of file From 4a148b844a75337fdf98fc255ebbc69cb0473549 Mon Sep 17 00:00:00 2001 From: abhicodes369 <119055274+abhicodes369@users.noreply.github.com> Date: Tue, 16 Apr 2024 23:45:06 +0530 Subject: [PATCH 83/87] wrap the html into a function --- utilities/repostatus.py | 68 +++++++++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 26 deletions(-) diff --git a/utilities/repostatus.py b/utilities/repostatus.py index 2330167..9ced72f 100644 --- a/utilities/repostatus.py +++ b/utilities/repostatus.py @@ -13,38 +13,54 @@ SOURCE_FOLDER = os.path.join(REPO_DIR, "src", "original") WRAPPED_FOLDER = os.path.join(REPO_DIR, "src", "standardized") -# Read the CSV file -df = pd.read_csv(CODE_CONTRIBUTIONS_FILE) +def generate_html(): + """ + Generates an HTML report based on the code contributions and algorithm information. -unique_subfolders = df['subfolder'].unique().tolist() + The report includes the following columns: + - Technique + - Subfolder + - Contributors + - Wrapped + - Tested -# Read the JSON file -with open(ALGORITHMS_FILE, 'r') as f: - algorithms_data = json.load(f) + The report is saved as 'combined_report.html' in the 'website' directory of the repository. + """ + # Read the CSV file + df = pd.read_csv(CODE_CONTRIBUTIONS_FILE) -# list of all algorithms from the JSON file -all_algorithms = algorithms_data['algorithms'] + unique_subfolders = df['subfolder'].unique().tolist() -# Check if both code_contributions_file matches with source folder -for subfolder in unique_subfolders: - subfolder_path = os.path.join(SOURCE_FOLDER, subfolder) - if not os.path.exists(subfolder_path): - print(f"Warning: Subfolder '{subfolder}' does not exist in the source folder.") + # Read the JSON file + with open(ALGORITHMS_FILE, 'r') as f: + algorithms_data = json.load(f) -# Add column 'Tested' to the DataFrame based on a match with algorithms and wrapped column -df['Wrapped'] = df['Wrapped'].fillna('') -df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm in row['Wrapped'] for algorithm in all_algorithms) else '', axis=1) + # list of all algorithms from the JSON file + all_algorithms = algorithms_data['algorithms'] -# Select the desired columns -df_selected = df[['Technique', 'subfolder', 'Authors', 'Wrapped', 'Tested']] -df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Wrapped', 'Tested'] + # Check if both code_contributions_file matches with source folder + for subfolder in unique_subfolders: + subfolder_path = os.path.join(SOURCE_FOLDER, subfolder) + if not os.path.exists(subfolder_path): + print(f"Warning: Subfolder '{subfolder}' does not exist in the source folder.") -# Convert the DataFrame to HTML -html_string = df_selected.to_html(index=False) + # Add column 'Tested' to the DataFrame based on a match with algorithms and wrapped column + df['Wrapped'] = df['Wrapped'].fillna('') + df['Tested'] = df.apply(lambda row: 'Yes' if any(algorithm in row['Wrapped'] for algorithm in all_algorithms) else '', axis=1) -# Save the HTML to a file -with open(os.path.join(REPO_DIR, 'website','combined_report.html'), 'w') as f: - f.write(html_string) + # Select the desired columns + df_selected = df[['Technique', 'subfolder', 'Authors', 'Wrapped', 'Tested']] + df_selected.columns = ['Technique', 'Subfolder', 'Contributors', 'Wrapped', 'Tested'] -# Printing message that report has been successfully generated -print("Combined HTML report generated successfully.") \ No newline at end of file + # Convert the DataFrame to HTML + html_string = df_selected.to_html(index=False) + + # Save the HTML to a file + with open(os.path.join(REPO_DIR, 'website', 'combined_report.html'), 'w') as f: + f.write(html_string) + + # Printing message that report has been successfully generated + print("Combined HTML report generated successfully.") + +if __name__ == "__main__": + generate_html() \ No newline at end of file From 5b6f6ae4a78c91f178e54d209c8f9768050bdd99 Mon Sep 17 00:00:00 2001 From: Usman Akinyemi Date: Tue, 23 Apr 2024 13:41:23 -0400 Subject: [PATCH 84/87] Fixed the error in the script wrapper --- WrapImage/nifti_wrapper.py | 48 ++++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index 84cbd9a..c4cc590 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -36,12 +36,7 @@ def read_bval_file(bval_file): if not os.path.exists(bval_file): raise FileNotFoundError(f"File '{bval_file}' not found.") - with open(bval_file, "r") as f: - try: - bval_data = [int(val) for val in f.read().split()] - except ValueError as e: - raise ValueError(f"Error reading bval file '{bval_file}': {e}") - + bval_data = np.genfromtxt(bval_file, dtype=float) return bval_data def read_bvec_file(bvec_file): @@ -51,15 +46,8 @@ def read_bvec_file(bvec_file): if not os.path.exists(bvec_file): raise FileNotFoundError(f"File '{bvec_file}' not found.") - with open(bvec_file, "r") as f: - try: - lines = f.readlines() - bvec_data = [] - for line in lines: - bvec_data.append([float(val) for val in line.split()]) - except ValueError as e: - raise ValueError(f"Error reading bvec file '{bvec_file}': {e}") - + bvec_data = np.genfromtxt(bvec_file) + bvec_data = np.transpose(bvec_data) # Transpose the array return bvec_data def save_nifti_file(data, output_file, affine=None, **kwargs): @@ -108,18 +96,32 @@ def loop_over_first_n_minus_1_dimensions(arr): bvals = read_bval_file(args.bval_file) # Pass additional arguments to the algorithm + fit = OsipiBase(algorithm=args.algorithm) - f_image = np.zeros_like(data.shape[:data.ndim-1]) - D_image = np.zeros_like(data.shape[:data.ndim-1]) - Dp_image = np.zeros_like(data.shape[:data.ndim-1]) + f_image = [] + Dp_image = [] + D_image = [] + for idx, view in loop_over_first_n_minus_1_dimensions(data): [f_fit, Dp_fit, D_fit] = fit.osipi_fit(view, bvals) - f_image[idx]=f_fit - Dp_image[idx]=Dp_fit - D_image[idx]=D_fit + f_image.append(f_fit) + Dp_image.append(Dp_fit) + D_image.append(D_fit) + + # Convert lists to NumPy arrays + f_image = np.array(f_image) + Dp_image = np.array(Dp_image) + D_image = np.array(D_image) + + # Reshape arrays if needed + f_image = f_image.reshape(data.shape[:data.ndim-1]) + Dp_image = Dp_image.reshape(data.shape[:data.ndim-1]) + D_image = D_image.reshape(data.shape[:data.ndim-1]) + save_nifti_file(f_image, "f.nii.gz", args.affine) - save_nifti_file(Dp_image, "dp.nii.gz", args.affline) - save_nifti_file(D_image, "d.nii.gz", args.affline) + save_nifti_file(Dp_image, "dp.nii.gz", args.affine) + save_nifti_file(D_image, "d.nii.gz", args.affine) except Exception as e: print(f"Error: {e}") + From f75534d867e43be292fad24cb1856d967153e47e Mon Sep 17 00:00:00 2001 From: Usman Akinyemi Date: Wed, 24 Apr 2024 08:05:05 -0400 Subject: [PATCH 85/87] Use tqdm python3 library to show the progress of the wrapper when running --- WrapImage/nifti_wrapper.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index c4cc590..90e311b 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -3,8 +3,9 @@ import os import nibabel as nib from src.wrappers.OsipiBase import OsipiBase -from utilities.data_simulation.GenerateData import GenerateData import numpy as np +from tqdm import tqdm + def read_nifti_file(input_file): """ @@ -102,7 +103,7 @@ def loop_over_first_n_minus_1_dimensions(arr): Dp_image = [] D_image = [] - for idx, view in loop_over_first_n_minus_1_dimensions(data): + for idx, view in tqdm(loop_over_first_n_minus_1_dimensions(data), desc=f"{args.algorithm} is fitting", dynamic_ncols=True, total=702464): [f_fit, Dp_fit, D_fit] = fit.osipi_fit(view, bvals) f_image.append(f_fit) Dp_image.append(Dp_fit) From 94ee6d4391eb8389edc8dca4fb39f026a233a3c7 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 26 Apr 2024 06:25:16 -0700 Subject: [PATCH 86/87] Update README.md Added link to documentation web page --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b11357e..bf18eb6 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ The ISMRM Open Science Initiative for Perfusion Imaging (OSIPI) is an initiative >“promote the sharing of perfusion imaging software in order to eliminate the practice of duplicate development, improve the reproducibility of perfusion imaging research, and speed up the translation into tools for discovery science, drug development, and clinical practice” -This **IVIM code collection** code library is maintained by OSIPI [Taskforce 2.4](https://www.osipi.org/task-force-2-4/) (*currently not available*) and aims to collect, test and share open-source code related to intravoxel incoherent motion (IVIM) analysis of diffusion encoded MRI data to be used in research and software development. Code contributions can include any code related IVIM analysis (denoising, motion correction, model fitting, etc.), but at an initial phase, development of tests and other features of the repository will predominantly focus on fitting algorithms. A future goal of the IVIM OSIPI task force is to develop a fully tested and harmonized code library, building upon the contributions obtained through this initiative. +This **IVIM code collection** code library is maintained by OSIPI [Taskforce 2.4](https://www.osipi.org/task-force-2-4/) (*currently not available*) and aims to collect, test and share open-source code related to intravoxel incoherent motion (IVIM) analysis of diffusion encoded MRI data to be used in research and software development. Code contributions can include any code related IVIM analysis (denoising, motion correction, model fitting, etc.), but at an initial phase, development of tests and other features of the repository will predominantly focus on fitting algorithms. A goal of the IVIM OSIPI task force is to develop a fully tested and harmonized code library, building upon the contributions obtained through this initiative. Documentation and analysis are available on the [OSIPI TF2.4](https://osipi.github.io/TF2.4_IVIM-MRI_CodeCollection/). -## How to contibute +## How to contribute If you would like to get involve in OSIPI and work within the task force, please email the contacts listed on our website. From 14d1793e815dc0e336db04aeacaa0f4faca81bed Mon Sep 17 00:00:00 2001 From: Usman Akinyemi Date: Mon, 29 Apr 2024 16:29:16 -0400 Subject: [PATCH 87/87] Changed the total argument from hard coded value to dynamic value which is gotten from the image itself --- WrapImage/nifti_wrapper.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/WrapImage/nifti_wrapper.py b/WrapImage/nifti_wrapper.py index 90e311b..a0d65af 100644 --- a/WrapImage/nifti_wrapper.py +++ b/WrapImage/nifti_wrapper.py @@ -83,7 +83,7 @@ def loop_over_first_n_minus_1_dimensions(arr): parser.add_argument("bvec_file", type=str, help="Path to the b-vector file.") parser.add_argument("bval_file", type=str, help="Path to the b-value file.") parser.add_argument("--affine", type=float, nargs="+", help="Affine matrix for NIfTI image.") - parser.add_argument("--algorithm", type=str, choices=["algorithm1", "algorithm2"], default="OJ_GU_seg", help="Select the algorithm to use.") + parser.add_argument("--algorithm", type=str, default="OJ_GU_seg", help="Select the algorithm to use.") parser.add_argument("algorithm_args", nargs=argparse.REMAINDER, help="Additional arguments for the algorithm.") args = parser.parse_args() @@ -103,7 +103,10 @@ def loop_over_first_n_minus_1_dimensions(arr): Dp_image = [] D_image = [] - for idx, view in tqdm(loop_over_first_n_minus_1_dimensions(data), desc=f"{args.algorithm} is fitting", dynamic_ncols=True, total=702464): + # This is necessary for the tqdm to display progress bar. + n = data.ndim + total_iteration = np.prod(data.shape[:n-1]) + for idx, view in tqdm(loop_over_first_n_minus_1_dimensions(data), desc=f"{args.algorithm} is fitting", dynamic_ncols=True, total=total_iteration): [f_fit, Dp_fit, D_fit] = fit.osipi_fit(view, bvals) f_image.append(f_fit) Dp_image.append(Dp_fit)